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

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


   private ProfileMetaData createProfileMetaData(boolean hotDeployment, URI deployURI, String[] subProfiles)
   {
      PropertyProfileMetaData metaData = null;
      if(hotDeployment)
      {
         metaData = ProfileMetaDataFactory.createHotDeploymentScanningProfile(getProfileName(), deployURI, new ScanPeriod());        
      }
      else
      {
         metaData = ProfileMetaDataFactory.createImmutableScanningProfile(getProfileName(), deployURI);
      }
View Full Code Here


    *
    * @return the scanner configuration
    */
   protected ScanPeriod createScannerConfiguration()
   {
      final ScanPeriod configuration = new ScanPeriod();
      configuration.setScanPeriod(getScanPeriod());
      configuration.setStartAutomatically(true);
      configuration.setTimeUnit(getTimeUnit());
      configuration.setDisabled(false);
      return configuration;
   }
View Full Code Here

TOP

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

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.