| java.lang.Object de.danet.an.workflow.tools.soapclient.SAXEventBufferAxisSerializer
SAXEventBufferAxisSerializer | public class SAXEventBufferAxisSerializer implements Serializer,Serializable(Code) | | General purpose serializer/deserializerFactory for SAXEventBuffer in
the AXIS mplementation of the JAX-RPC interface.
Creates a xml output for a given SAXEventBuffer,
preserving the stucture and text content.
|
Method Summary | |
public String | getMechanismType() From the Serializer and Deserializerinterface. | public void | serialize(QName name, Attributes attributes, Object value, SerializationContext context) From the Serializer interface. | public boolean | writeSchema(Types types) From the Serializer interface (Axis pre 1.1 version). | public Element | writeSchema(Class javaType, Types types) Return XML schema for the specified type, suitable for insertion into
the <types> element of a WSDL document, or underneath an
<element> or <attribute> declaration. |
SAXEventBufferAxisSerializer | public SAXEventBufferAxisSerializer()(Code) | | Default constructor.
|
getMechanismType | public String getMechanismType()(Code) | | From the Serializer and Deserializerinterface.
Constants.AXIS_SAX |
serialize | public void serialize(QName name, Attributes attributes, Object value, SerializationContext context) throws IOException(Code) | | From the Serializer interface.
Parameters: name - name Parameters: attributes - attributes Parameters: value - value Parameters: context - context throws: IOException - IOException |
writeSchema | public boolean writeSchema(Types types)(Code) | | From the Serializer interface (Axis pre 1.1 version).
Currently we do not support serialization.
Parameters: types - types false |
writeSchema | public Element writeSchema(Class javaType, Types types) throws Exception(Code) | | Return XML schema for the specified type, suitable for insertion into
the <types> element of a WSDL document, or underneath an
<element> or <attribute> declaration.
Parameters: javaType - the Java Class we're writing out schema for Parameters: types - the Java2WSDL Types object which holds the contextfor the WSDL being generated a type element containing a schema simpleType/complexType throws: Exception - if an error occurs See Also: org.apache.axis.wsdl.fromJava.Types |
|
|