Examples of EmptyProfileMetaData


Examples of org.jboss.profileservice.profile.metadata.plugin.EmptyProfileMetaData

   }

   protected void createWorkaroundProfile()
   {
      // FIXME
      EmptyProfileMetaData metaData = new EmptyProfileMetaData("workaround");
      List<ProfileMetaDataVisitorNode> nodes = new ArrayList<ProfileMetaDataVisitorNode>();
      nodes.add(new FeatureCapability(CommonProfileNameSpaces.PROFILE_NAMESPACE));
      nodes.add(new FeatureCapability(CommonProfileNameSpaces.IMMUTABLE_PROFILE_NAMESPACE));
      nodes.add(new FeatureCapability(CommonProfileNameSpaces.FARMING_PROFILE_NAMESPACE));
      nodes.add(new FeatureCapability(CommonProfileNameSpaces.HOTDEPLOY_PROFILE_NAMESPACE));
      metaData.setFeatures(nodes);
      profileRepository.getDomainRepository().registerMetaData(metaData);
   }
View Full Code Here

Examples of org.jboss.system.server.profile.repository.metadata.EmptyProfileMetaData

      // Create applications profile meta data
      String[] rootSubProfiles = createApplicationProfiles(subprofileNames);
     
      // Create empty root profile;
      ProfileMetaData root = new EmptyProfileMetaData(
            null, null, rootKey.getName(), createSubProfileMetaData(rootSubProfiles));

      // Add to profile map
      addProfile(rootKey, root);
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.