Examples of WSDLDocumentation


Examples of xsul5.wsdl.WsdlDocumentation

        if (wsdlName == null) {
            wsdlName = "NoName"; // TODO
        }
        this.wsdlQName = new QName(this.targetNamespace, wsdlName);

        WsdlDocumentation documentation = this.wsdl.getDocumentation();
        if (documentation != null) {
            StringBuffer buf = new StringBuffer();
            for (Object child : documentation.xml().children()) {
                if (child instanceof String) {
                    buf.append(child.toString());
                } else if (child instanceof XmlCharacters) {
                    buf.append(((XmlCharacters) child).getText());
                }
View Full Code Here

Examples of xsul5.wsdl.WsdlDocumentation

     * Sets the documentation element.
     */
    private void addDocumentation() {
        String description = this.workflow.getDescription();
        if (description != null) {
            WsdlDocumentation documentation = new WsdlDocumentation(description);
            this.definitions.setDocumentation(documentation);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.