Package com.ibm.wsdl.extensions.soap12
Class SOAP12OperationSerializer
- java.lang.Object
-
- com.ibm.wsdl.extensions.soap12.SOAP12OperationSerializer
-
- All Implemented Interfaces:
java.io.Serializable
,ExtensionDeserializer
,ExtensionSerializer
public class SOAP12OperationSerializer extends java.lang.Object implements ExtensionSerializer, ExtensionDeserializer, java.io.Serializable
Based on com.ibm.wsdl.extensions.soap.SOAPOperationSerializer- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SOAP12OperationSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
marshall(java.lang.Class parentType, javax.xml.namespace.QName elementType, ExtensibilityElement extension, java.io.PrintWriter pw, Definition def, ExtensionRegistry extReg)
This method serializes extension-specific instances of ExtensibilityElement into the PrintWriter.ExtensibilityElement
unmarshall(java.lang.Class parentType, javax.xml.namespace.QName elementType, org.w3c.dom.Element el, Definition def, ExtensionRegistry extReg)
This method deserializes elements into instances of classes which implement the ExtensibilityElement interface.
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
marshall
public void marshall(java.lang.Class parentType, javax.xml.namespace.QName elementType, ExtensibilityElement extension, java.io.PrintWriter pw, Definition def, ExtensionRegistry extReg) throws WSDLException
Description copied from interface:ExtensionSerializer
This method serializes extension-specific instances of ExtensibilityElement into the PrintWriter.- Specified by:
marshall
in interfaceExtensionSerializer
- Parameters:
parentType
- a class object indicating where in the WSDL definition this extension was encountered. For example, javax.wsdl.Binding.class would be used to indicate this extensibility element was found in the list of extensibility elements belonging to a javax.wsdl.Binding.elementType
- the qname of the extensibility elementextension
- the extensibility element to serializedef
- the definition this extensibility element was encountered inextReg
- the ExtensionRegistry to use (if needed again)- Throws:
WSDLException
-
unmarshall
public ExtensibilityElement unmarshall(java.lang.Class parentType, javax.xml.namespace.QName elementType, org.w3c.dom.Element el, Definition def, ExtensionRegistry extReg) throws WSDLException
Description copied from interface:ExtensionDeserializer
This method deserializes elements into instances of classes which implement the ExtensibilityElement interface. The return value should be explicitly cast to the more-specific implementing type.- Specified by:
unmarshall
in interfaceExtensionDeserializer
- Parameters:
parentType
- a class object indicating where in the WSDL document this extensibility element was encountered. For example, javax.wsdl.Binding.class would be used to indicate this element was encountered as an immediate child of a <wsdl:binding> element.elementType
- the qname of the extensibility elementel
- the extensibility element to deserializedef
- the definition this extensibility element was encountered inextReg
- the ExtensionRegistry to use (if needed again)- Throws:
WSDLException
-
-