Package org.jboss.profileservice.spi.repository

Examples of org.jboss.profileservice.spi.repository.Repository


/*     */   {
/* 222 */     HashSet names = new HashSet();
/* 223 */     URI uri = getDeploymentURI(phase);
/*     */     try
/*     */     {
/* 226 */       Repository repo = this.delegate.getRepository(uri);
/* 227 */       Resource[] resources = repo.getResources();
/* 228 */       for (Resource res : resources)
/*     */       {
/* 230 */         if (!(res instanceof VFSDeploymentResource))
/*     */           continue;
/* 232 */         VFSDeploymentResource vfsres = (VFSDeploymentResource)res;
View Full Code Here


/*     */
/*     */   public Collection<VFSDeployment> getDeployments(ManagedDeployment.DeploymentPhase phase)
/*     */     throws Exception
/*     */   {
/* 285 */     URI uri = getDeploymentURI(phase);
/* 286 */     Repository repo = this.delegate.getRepository(uri);
/* 287 */     Resource[] resources = repo.getResources();
/* 288 */     HashSet deployments = new HashSet();
/* 289 */     for (Resource res : resources)
/*     */     {
/* 291 */       if (!(res instanceof VFSDeploymentResource))
/*     */         continue;
View Full Code Here

/*     */   }
/*     */
/*     */   protected MutableRepository getRepository(URI uri)
/*     */     throws Exception
/*     */   {
/* 429 */     Repository repo = this.delegate.getRepository(uri);
/* 430 */     if (!(repo instanceof MutableRepository))
/* 431 */       throw new IllegalStateException("Repository does not support MutableRepository");
/* 432 */     MutableRepository mrepo = (MutableRepository)repo;
/* 433 */     return mrepo;
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.profileservice.spi.repository.Repository

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.