182183184185186187188189190
if (myLabel > 0) { myLogger.log(Logger.INFO, "Main container ring re-arranged: label = "+myLabel+" monitored label = "+localSlice.monitoredLabel); } } catch (IMTPException imtpe) { throw new ServiceException("An error occurred during service startup.", imtpe); } }
414415416417418419420421
public Node getNode() throws ServiceException { try { return MainReplicationService.this.getLocalNode(); } catch (IMTPException imtpe) { throw new ServiceException("Problem in contacting the IMTP Manager", imtpe); } }
112113114115116117118119
} } } } catch(Exception e) { throw new ServiceException("Boot failure", e); } }
5152535455565758
agentName = an; sliceName = sn; finder = sf; classServer = (AgentMobilitySlice)finder.findSlice(AgentMobilitySlice.NAME, sliceName); if (classServer == null) { throw new ServiceException("Code source container "+sliceName+" does not exist or does not support mobility"); } }
170171172173174175176177
public Node getNode() throws ServiceException { try { return AddressNotificationService.this.getLocalNode(); } catch(IMTPException imtpe) { throw new ServiceException("Problem in contacting the IMTP Manager", imtpe); } }
796797798799800801802803
public Node getNode() throws ServiceException { try { return AgentManagementService.this.getLocalNode(); } catch(IMTPException imtpe) { throw new ServiceException("Problem in contacting the IMTP Manager", imtpe); } }
576577578579580581582583
public Node getNode() throws ServiceException { try { return BEAgentManagementService.this.getLocalNode(); } catch(IMTPException imtpe) { throw new ServiceException("Problem in contacting the IMTP Manager", imtpe); } }