Package org.jboss.profileservice.spi

Examples of org.jboss.profileservice.spi.NoSuchDeploymentException


/*     */   protected VFSDeployment getDeployer(String vfsPath)
/*     */     throws Exception
/*     */   {
/* 450 */     Resource res = this.delegate.getResource(vfsPath);
/* 451 */     if ((res == null) || (!(res instanceof VFSDeploymentResource)))
/* 452 */       throw new NoSuchDeploymentException(vfsPath);
/* 453 */     VFSDeploymentResource vfsres = (VFSDeploymentResource)res;
/* 454 */     VFSDeployment deployment = (VFSDeployment)vfsres.getProperties().get("deployment");
/* 455 */     return deployment;
/*     */   }
View Full Code Here


/*     */   protected VFSDeployment getApplication(String vfsPath)
/*     */     throws Exception
/*     */   {
/* 461 */     Resource res = this.delegate.getResource(vfsPath);
/* 462 */     if ((res == null) || (!(res instanceof VFSDeploymentResource)))
/* 463 */       throw new NoSuchDeploymentException(vfsPath);
/* 464 */     VFSDeploymentResource vfsres = (VFSDeploymentResource)res;
/* 465 */     VFSDeployment deployment = (VFSDeployment)vfsres.getProperties().get("deployment");
/* 466 */     return deployment;
/*     */   }
View Full Code Here

/*     */   protected VFSDeployment getBootstrap(String vfsPath)
/*     */     throws Exception
/*     */   {
/* 558 */     VFSDeployment ctx = (VFSDeployment)this.bootstrapCtxs.get(vfsPath);
/* 559 */     if (ctx == null)
/* 560 */       throw new NoSuchDeploymentException(vfsPath);
/* 561 */     return ctx;
/*     */   }
View Full Code Here

/*     */
/*     */   protected VFSDeployment getDeployer(String vfsPath) throws Exception
/*     */   {
/* 587 */     VFSDeployment ctx = (VFSDeployment)this.deployerCtxs.get(vfsPath);
/* 588 */     if (ctx == null)
/* 589 */       throw new NoSuchDeploymentException(vfsPath);
/* 590 */     return ctx;
/*     */   }
View Full Code Here

/*     */   protected VFSDeployment getApplication(String vfsPath)
/*     */     throws Exception
/*     */   {
/* 603 */     VFSDeployment ctx = (VFSDeployment)this.applicationCtxs.get(vfsPath);
/* 604 */     if (ctx == null)
/* 605 */       throw new NoSuchDeploymentException(vfsPath);
/* 606 */     return ctx;
/*     */   }
View Full Code Here

TOP

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

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.