Package org.jboss.profileservice.spi

Examples of org.jboss.profileservice.spi.DeploymentRepositoryFactory


      return repository;
   }
  
   protected DeploymentRepository createProfileDeploymentRepository(ProfileKey key, String repositoryType, ProfileSourceMetaData metaData) throws Exception
   {
      DeploymentRepositoryFactory factory = this.repositoryFactories.get(repositoryType);
      if(factory ==  null)
         throw new IllegalStateException("No registered factory for repository type: "+ repositoryType);
     
      // Let the factory create the repository
      return factory.createDeploymentRepository(key, metaData);
   }
View Full Code Here


      return repository;
   }
  
   protected DeploymentRepository createProfileDeploymentRepository(ProfileKey key, String repositoryType, ProfileSourceMetaData metaData) throws Exception
   {
      DeploymentRepositoryFactory factory = this.repositoryFactories.get(repositoryType);
      if(factory ==  null)
         throw new IllegalStateException("No registered factory for repository type: "+ repositoryType);
     
      // Let the factory create the repository
      return factory.createDeploymentRepository(key, metaData);
   }
View Full Code Here

TOP

Related Classes of org.jboss.profileservice.spi.DeploymentRepositoryFactory

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.