| java.lang.Object com.sun.jbi.wsdl2.impl.WsdlWriter
WsdlWriter | final class WsdlWriter implements com.sun.jbi.wsdl2.WsdlWriter(Code) | | This class supplies a WSDL serializer, where the serialization is
WSDL 2.0 compliant XML.
author: Sun Microsystems, Inc. |
getDocument | public Document getDocument(Description model) throws WsdlException(Code) | | Return a document generated from the specified WSDL model.
Parameters: model - The WSDL definitions component to be written A DOM document that reflects the contents of the given model exception: WsdlException - When a problem reading the model occurs. |
writeDescription | public void writeDescription(Description model, Writer sink) throws WsdlException, IOException(Code) | | Write the specified WSDL definition to the specified Writer.
Parameters: model - The WSDL definitions component to be written Parameters: sink - The Writer to write the xml to exception: WsdlException - When a problem reading the model occurs. exception: IOException - When a problem writing to sink occurs. |
writeDescription | public void writeDescription(Description model, OutputStream sink) throws WsdlException, IOException(Code) | | Write the specified WSDL definition to the specified OutputStream.
Parameters: model - The WSDL definitions component to be written Parameters: sink - The OutputStream to write the XML to exception: WsdlException - When a problem reading the model occurs. exception: IOException - When a problem writing to sink occurs. |
|
|