Package com.ibm.wsdl

Examples of com.ibm.wsdl.BindingPolicyReferenceImpl


     protected BindingPolicyReference parseBindingPolicyReference(Element bindingInputEl,
                                           Definition def)
                                             throws WSDLException
  {
    BindingPolicyReference bindingPolicyReference = new BindingPolicyReferenceImpl();

    List remainingAttrs = DOMUtils.getAttributes(bindingInputEl);
    String uri = DOMUtils.getAttribute(bindingInputEl,
                                        Constants.ATTR_URI,
                                        remainingAttrs);

    if (uri != null)
    {
      bindingPolicyReference.setURI(uri);
    }

    return bindingPolicyReference;
  }
View Full Code Here

TOP

Related Classes of com.ibm.wsdl.BindingPolicyReferenceImpl

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.