/* */ 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;
/* */ }