171172173174175176177178
return ModulesXMLHelper.getModulesFromApplicationLocation(location, moduleTypes); } catch (Exception e) { sLogger.throwing(getClass().getName(), "getModulesByType", e); throw new J2EEApplicationException(e.getMessage()); } }
202203204205206207208209210
} } catch (Exception e) { sLogger.throwing(getClass().getName(), "getStatus", e); throw new J2EEApplicationException(e.getMessage()); } return status; }
243244245246247248249250
try { String appName = (String)this.getAttribute(kName); multicastAdminEvent(appName, BaseDeployEvent.DISABLE); } catch (Exception e) { sLogger.throwing(getClass().getName(), "stop", e); throw new J2EEApplicationException(e.getMessage()); } }
265266267268269270271272
Integer intObj = (Integer) Switch.getSwitch().getManagementObjectManager().getState(namePattern); return intObj; } catch (Exception e) { sLogger.throwing(getClass().getName(), "getState", e); throw new J2EEApplicationException(e.getMessage()); } }
327328329330331332333334
try { String appName = (String)this.getAttribute(kName); multicastAdminEvent(appName, BaseDeployEvent.ENABLE); } catch (Exception e) { sLogger.throwing(getClass().getName(), "start", e); throw new J2EEApplicationException(e.getMessage()); } }