Package org.jboss.profileservice.profile.metadata.plugin

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


    * @param uri the deployment uri
    * @return the profile meta data
    */
   protected ProfileMetaData createProfileMetaData(final URI uri)
   {
      final HotDeploymentProfileMetaData profile = new HotDeploymentProfileMetaData();
      profile.setName(createProfileName(uri));
      profile.setSource(createSource(uri));
      profile.setScanPeriod(createScannerConfiguration());
      return profile;
   }
View Full Code Here

TOP

Related Classes of org.jboss.profileservice.profile.metadata.plugin.HotDeploymentProfileMetaData

Copyright © 2018 www.massapicom. 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.