Examples of FarmingProfileMetaData


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

      }
   }

   private ProfileMetaData createFarmingProfileMetaData(String name, boolean hotDeployment, URI[] uris, Collection<String> subProfiles)
   {
      FarmingProfileMetaData farming = new FarmingProfileMetaData();
      farming.setName(name);
      // create source
      farming.setSource(createClusteredSource(uris, hotDeployment));
      if(hotDeployment)
      {
         // Configure a HDSCanner
         farming.setScanPeriod(getScanPeriod());
      }
      processDependencies(farming, subProfiles);
      return farming;
   }
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.