Package org.apache.cxf.databinding
Class AbstractInterceptorProvidingDataBinding
- java.lang.Object
- 
- org.apache.cxf.databinding.AbstractDataBinding
- 
- org.apache.cxf.databinding.AbstractInterceptorProvidingDataBinding
 
 
- 
- All Implemented Interfaces:
- DataBinding,- InterceptorProvider
 - Direct Known Subclasses:
- StaxDataBinding
 
 public abstract class AbstractInterceptorProvidingDataBinding extends AbstractDataBinding implements InterceptorProvider 
- 
- 
Field SummaryFields Modifier and Type Field Description protected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>>inFaultInterceptorsprotected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>>inInterceptorsprotected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>>outFaultInterceptorsprotected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>>outInterceptors- 
Fields inherited from class org.apache.cxf.databinding.AbstractDataBindingmtomEnabled, mtomThreshold
 
- 
 - 
Constructor SummaryConstructors Constructor Description AbstractInterceptorProvidingDataBinding()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Interceptor<? extends Message>>getInFaultInterceptors()Returns the list of interceptors attached to the incoming fault interceptor chain of the object.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.List<Interceptor<? extends Message>>getOutInterceptors()Returns the list of interceptors attached to the outgoing interceptor chain of the object.- 
Methods inherited from class org.apache.cxf.databinding.AbstractDataBindingaddSchemaDocument, addSchemaDocument, checkNamespaceMap, getBus, getContextualNamespaceMap, getDeclaredNamespaceMappings, getMtomThreshold, getNamespaceMap, getSchemas, isMtomEnabled, setBus, setContextualNamespaceMap, setMtomEnabled, setMtomThreshold, setNamespaceMap, setSchemas, updateSchemaLocation
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.cxf.databinding.DataBindingcreateReader, createWriter, getSupportedReaderFormats, getSupportedWriterFormats, initialize
 
- 
 
- 
- 
- 
Field Detail- 
inInterceptorsprotected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>> inInterceptors 
 - 
outInterceptorsprotected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>> outInterceptors 
 - 
outFaultInterceptorsprotected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>> outFaultInterceptors 
 - 
inFaultInterceptorsprotected ModCountCopyOnWriteArrayList<Interceptor<? extends Message>> inFaultInterceptors 
 
- 
 - 
Method Detail- 
getInInterceptorspublic 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 interface- InterceptorProvider
- Returns:
- Listincoming interceptor chain
 
 - 
getOutInterceptorspublic 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 interface- InterceptorProvider
- Returns:
- Listoutgoing interceptor chain
 
 - 
getInFaultInterceptorspublic 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 interface- InterceptorProvider
- Returns:
- Listincoming fault interceptor chain
 
 - 
getOutFaultInterceptorspublic 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 interface- InterceptorProvider
- Returns:
- Listoutgoing fault interceptor chain
 
 
- 
 
-