Examples of DeploymentStructureMetaData


Examples of org.jboss.profileservice.persistence.repository.metadata.DeploymentStructureMetaData

      if(metaData == null)
         throw new IllegalArgumentException("meta data may not be null.");
      if(info == null)
         throw new IllegalArgumentException("context info may not be null.");
     
      DeploymentStructureMetaData structure = new DeploymentStructureMetaData();
     
      // meta data paths
      structure.setMetaDataPaths(getDeploymentMetaDataEntryMetaData(info));
      // classpath
      structure.setClassPaths(getDeploymentClassPathMetaData(info));
      // comparator
      structure.setComparatorClass(info.getComparatorClassName());
      // relativeOrder
      structure.setRelatativeOrder(info.getRelativeOrder());
     
      metaData.setDeploymentStructure(structure);
   }
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.