Package org.jboss.system.server.profile.repository

Examples of org.jboss.system.server.profile.repository.ProfileImpl


/* 114 */     if (this.deploymentRepository == null)
/*     */     {
/* 116 */       this.deploymentRepository = this.profileRepository.getProfileDeploymentRepository(key);
/*     */     }
/* 118 */     log.info("Loading profile: " + this.name + " from: " + this.deploymentRepository);
/* 119 */     this.profile = new ProfileImpl(this.deploymentRepository, key);
/*     */   }
View Full Code Here


/*     */
/*     */   public Profile newProfile(ProfileKey key)
/*     */     throws Exception
/*     */   {
/* 175 */     DeploymentRepository repo = this.profileRepository.createProfileDeploymentRepository(key);
/* 176 */     return new ProfileImpl(repo, key);
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.system.server.profile.repository.ProfileImpl

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.