ServiceEngineWSDelegate retrieves the copy of ServiceReferenceDescriptor in its constructor //It's assumed that Service is JBI Enabled and thread local is set // if this method is invoked return (ServiceReferenceDescriptor) localDesc.get();
//It's assumed that Service is JBI Enabled and thread local is set // if this method is invoked return (ServiceReferenceDescriptor) localDesc.get();
After service creation the threadlocal object is destroyed localDesc.set(null);
localDesc.set(null);
Just before creating the Service Object, it's ServiceReferenceDescriptor object is stored in the thread local localDesc.set(descObj);
localDesc.set(descObj);