this.componentName = componentName;
}
public ComponentNameConstructor(WebServiceEndpoint wse) {
BundleDescriptor bundleDesc = wse.getBundleDescriptor();
ModuleDescriptor moduleDesc = bundleDesc.getModuleDescriptor();
if(!moduleDesc.isStandalone()){ // print app name only for embedded ones
this.appName = bundleDesc.getApplication().getRegistrationName();
}
this.jarName = moduleDesc.getArchiveUri();
// WebServiceEndpoint path is WebServices->WebService->WebServiceEndpoint
this.componentName = wse.getWebService().getName()+"#"+wse.getEndpointName(); // NOI18N
}