601602603604605606607608609610611
} } }catch (PathNotFoundException e){ return result; } catch (Exception e) { throw new DeploymentDescriptionRetrieveException(e); } finally { closeSession(session); } return result; }
626627628629630631632633634635636
result.add(ApplicationDeploymentDescription.fromXML(prop.getString())); } } catch (PathNotFoundException e) { return result; } catch (Exception e) { throw new DeploymentDescriptionRetrieveException(e); } finally { closeSession(session); } return result; }
178179180181182183184185186187188
} } catch (PathNotFoundException e) { return null; } catch (Exception e) { log.error("Cannot get Deployment Description", e); throw new DeploymentDescriptionRetrieveException(e); } finally { closeSession(session); } return result; }
418419420421422423424425426427428
+ "$" + hostNode.getName()); } } } } catch (Exception e) { throw new DeploymentDescriptionRetrieveException(e); } finally { closeSession(session); } return result; }
436437438439440441442443444445
Node serviceNode = deploymentNode.getNode(serviceName); Node hostNode = serviceNode.getNode(hostName); hostNode.remove(); session.save(); } catch (Exception e) { throw new DeploymentDescriptionRetrieveException(e); } finally { closeSession(session); } }
462463464465466467468469470471472
} } } catch (PathNotFoundException e) { return result; } catch (Exception e) { throw new DeploymentDescriptionRetrieveException(e); } finally { closeSession(session); } return result; }
490491492493494495496497498499500
514515516517518519520521522523524