Package org.apache.cxf.ws.rm
Class WrappedEndpoint
- java.lang.Object
-
- org.apache.cxf.ws.rm.WrappedEndpoint
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddCleanupHook(Closeable c)Add a hook that will be called when this end point being terminated.voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String,Object>>entrySet()Objectget(Object key)List<Feature>getActiveFeatures()BindinggetBinding()List<Closeable>getCleanupHooks()EndpointInfogetEndpointInfo()ExecutorgetExecutor()List<Interceptor<? extends Message>>getInFaultInterceptors()Returns the list of interceptors attached to the incoming fault interceptor chain of the object.MessageObservergetInFaultObserver()List<Interceptor<? extends Message>>getInInterceptors()Returns the list of interceptors attached to the incoming interceptor chain of the object.List<Interceptor<? extends Message>>getOutFaultInterceptors()Returns the list of interceptors attached to the outgoing fault interceptor chain of the object.MessageObservergetOutFaultObserver()List<Interceptor<? extends Message>>getOutInterceptors()Returns the list of interceptors attached to the outgoing interceptor chain of the object.ServicegetService()EndpointgetWrappedEndpoint()booleanisEmpty()Set<String>keySet()Objectput(String key, Object value)voidputAll(Map<? extends String,? extends Object> t)Objectremove(Object key)voidsetExecutor(Executor arg0)voidsetInFaultObserver(MessageObserver arg0)voidsetOutFaultObserver(MessageObserver arg0)intsize()Collection<Object>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
getWrappedEndpoint
public Endpoint getWrappedEndpoint()
-
getEndpointInfo
public EndpointInfo getEndpointInfo()
- Specified by:
getEndpointInfoin interfaceEndpoint
-
getService
public Service getService()
- Specified by:
getServicein interfaceEndpoint
-
getBinding
public Binding getBinding()
- Specified by:
getBindingin interfaceEndpoint
-
getExecutor
public Executor getExecutor()
- Specified by:
getExecutorin interfaceEndpoint
-
getInFaultObserver
public MessageObserver getInFaultObserver()
- Specified by:
getInFaultObserverin interfaceEndpoint
-
getOutFaultObserver
public MessageObserver getOutFaultObserver()
- Specified by:
getOutFaultObserverin interfaceEndpoint
-
setExecutor
public void setExecutor(Executor arg0)
- Specified by:
setExecutorin interfaceEndpoint
-
setInFaultObserver
public void setInFaultObserver(MessageObserver arg0)
- Specified by:
setInFaultObserverin interfaceEndpoint
-
setOutFaultObserver
public void setOutFaultObserver(MessageObserver arg0)
- Specified by:
setOutFaultObserverin interfaceEndpoint
-
getInFaultInterceptors
public List<Interceptor<? extends Message>> getInFaultInterceptors()
Description copied from interface:InterceptorProviderReturns the list of interceptors attached to the incoming fault interceptor chain of the object.- Specified by:
getInFaultInterceptorsin interfaceInterceptorProvider- Returns:
Listincoming fault interceptor chain
-
getInInterceptors
public List<Interceptor<? extends Message>> getInInterceptors()
Description copied from interface:InterceptorProviderReturns the list of interceptors attached to the incoming interceptor chain of the object.- Specified by:
getInInterceptorsin interfaceInterceptorProvider- Returns:
Listincoming interceptor chain
-
getOutFaultInterceptors
public List<Interceptor<? extends Message>> getOutFaultInterceptors()
Description copied from interface:InterceptorProviderReturns the list of interceptors attached to the outgoing fault interceptor chain of the object.- Specified by:
getOutFaultInterceptorsin interfaceInterceptorProvider- Returns:
Listoutgoing fault interceptor chain
-
getOutInterceptors
public List<Interceptor<? extends Message>> getOutInterceptors()
Description copied from interface:InterceptorProviderReturns the list of interceptors attached to the outgoing interceptor chain of the object.- Specified by:
getOutInterceptorsin interfaceInterceptorProvider- Returns:
Listoutgoing interceptor chain
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<String,Object>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<String,Object>
-
getActiveFeatures
public List<Feature> getActiveFeatures()
- Specified by:
getActiveFeaturesin interfaceEndpoint- Returns:
- the list of fearures already activated for this endpoint.
-
addCleanupHook
public void addCleanupHook(Closeable c)
Description copied from interface:EndpointAdd a hook that will be called when this end point being terminated. This will be called prior to the Server/ClientLifecycleListener.*Destroyed() method is called. This provides an opportunity to cleanup any resources that are specific to this Endpoint.- Specified by:
addCleanupHookin interfaceEndpoint
-
getCleanupHooks
public List<Closeable> getCleanupHooks()
- Specified by:
getCleanupHooksin interfaceEndpoint
-
-