Package org.switchyard.component.soap

Examples of org.switchyard.component.soap.PortName


    @Override
    public PortName getPort() {
        if (_port == null) {
            SOAPNameValueModel wsdlPortModel = getNameValue(SOAPName.wsdlPort);
            if (wsdlPortModel != null) {
                _port = new PortName(wsdlPortModel.getValue());
            } else {
                _port = new PortName();
            }
        }
        return _port;
    }
View Full Code Here

TOP

Related Classes of org.switchyard.component.soap.PortName

Copyright © 2018 www.massapicom. 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.