Methods Summary |
---|
public void | addAdapter(java.lang.String contextRoot, java.lang.String urlPattern, com.sun.xml.ws.api.server.Adapter info)
if (contextRoot == null)
contextRoot = "";
ContextAdapter contextRtInfo =
(ContextAdapter)store.get(contextRoot);
if(contextRtInfo == null) {
contextRtInfo = new ContextAdapter(contextRoot);
}
contextRtInfo.addAdapter(urlPattern, info);
store.put(contextRoot, contextRtInfo);
|
public com.sun.xml.ws.api.server.Adapter | getAdapter(java.lang.String contextRoot, java.lang.String path, java.lang.String urlPattern)
ContextAdapter serviceInfo =
(ContextAdapter)store.get(contextRoot);
if(serviceInfo == null)
return null;
return serviceInfo.getAdapter(path, urlPattern);
|
public static synchronized com.sun.enterprise.webservice.JAXWSAdapterRegistry | getInstance()
if(registry == null)
registry = new JAXWSAdapterRegistry();
return registry;
|
public void | removeAdapter(java.lang.String contextRoot)
if(contextRoot == null)
contextRoot = "";
ContextAdapter serviceInfo =
(ContextAdapter)store.get(contextRoot);
if(serviceInfo == null)
return ;
store.remove(contextRoot);
|