}
}
private void setContextApplicationName() {
SipApplication sipApplication = convergedContext.getSipApplication();
String appName = sipApplication.getAppName();
String sipModuleName = null;
//Mostly an 1.0 application.
String tmp = sipApplication.getModuleID().toLowerCase();
if (tmp.endsWith("war") || tmp.endsWith(".sar")) {
sipModuleName = sipApplication.getModuleID().substring(0, tmp.length() - 4);
} else {
sipModuleName = sipApplication.getModuleID();
}
SipBundleDescriptor sbd = (SipBundleDescriptor) getDescriptor();
/**