public interface SOAPElementSerializer
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
deserialize(javax.xml.soap.SOAPElement element)
The deserialize method is implemented to unmarshall a XML fragment of SAAJ SOAPElement instance to JAVA Object.
|
void |
init(java.util.Map initParams)
The init method allows the SOAPElementSerializer instance to initialize itself.
|
javax.xml.soap.SOAPElement |
serialize(javax.xml.namespace.QName tagName, java.lang.Object object)
The serialize method is implemented to marshall a JAVA Object to a XML fragment of SAAJ SOAPElement instance.
|
void init(java.util.Map initParams)
initParams
- the map of init-param elements.javax.xml.soap.SOAPElement serialize(javax.xml.namespace.QName tagName, java.lang.Object object)
tagName
- The top level element tag QName of the serialized XML fragment.object
- The JAVA Object to be serializedjava.lang.Object deserialize(javax.xml.soap.SOAPElement element)
element
- The instance of SOAPElement to be deserialzied