org.apache.cxf.databinding
Class AbstractDataBinding
java.lang.Object
   org.apache.cxf.databinding.AbstractDataBinding
org.apache.cxf.databinding.AbstractDataBinding
- All Implemented Interfaces: 
- DataBinding
- public abstract class AbstractDataBinding 
- extends Object- implements DataBinding
Supply default implementations, as appropriate, for DataBinding.
 
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
mtomEnabled
protected boolean mtomEnabled
mtomThreshold
protected int mtomThreshold
AbstractDataBinding
public AbstractDataBinding()
getBus
protected Bus getBus()
- 
 
- 
 
setBus
public void setBus(Bus bus)
- This call is used to set the bus. It should only be called once.
 
- 
 
- 
- Parameters:
- bus-
 
getSchemas
public Collection<DOMSource> getSchemas()
- 
 
- 
 
setSchemas
public void setSchemas(Collection<DOMSource> schemas)
- 
 
- 
 
addSchemaDocument
public org.apache.ws.commons.schema.XmlSchema addSchemaDocument(ServiceInfo serviceInfo,
                                                                org.apache.cxf.common.xmlschema.SchemaCollection col,
                                                                Document d,
                                                                String systemId)
- 
 
- 
 
updateSchemaLocation
protected void updateSchemaLocation(Element e)
- 
 
- 
 
getNamespaceMap
public Map<String,String> getNamespaceMap()
- 
 
- 
- Returns:
- the namespaceMap (URI to prefix). This will be null
 if no particular namespace map has been set.
 
setNamespaceMap
public void setNamespaceMap(Map<String,String> namespaceMap)
- Set a map of from URI to prefix. If possible, the data binding will use these
 prefixes on the wire.
 
- 
 
- 
- Parameters:
- namespaceMap- The namespaceMap to set.
 
getDeclaredNamespaceMappings
public Map<String,String> getDeclaredNamespaceMappings()
- Provide explicit mappings to ReflectionServiceFactory. Return a set of mappings from namespace to prefix to allow bindings to control
 the prefixes.
 
- 
- Specified by:
- getDeclaredNamespaceMappingsin interface- DataBinding
 
- 
- Returns:
- the map, or null if there are none.
 
checkNamespaceMap
protected static void checkNamespaceMap(Map<String,String> namespaceMap)
- 
 
- 
 
setMtomEnabled
public void setMtomEnabled(boolean enabled)
- 
- Specified by:
- setMtomEnabledin interface- DataBinding
 
- 
 
isMtomEnabled
public boolean isMtomEnabled()
- 
- Specified by:
- isMtomEnabledin interface- DataBinding
 
- 
 
getMtomThreshold
public int getMtomThreshold()
- 
- Specified by:
- getMtomThresholdin interface- DataBinding
 
- 
 
setMtomThreshold
public void setMtomThreshold(int threshold)
- Description copied from interface: DataBinding
- If the binding supports MTOM, set the size threshold for its use.
 may be overridden by (e.g.) JAXWS configuration.
 
- 
- Specified by:
- setMtomThresholdin interface- DataBinding
 
- 
 
Apache CXF