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;
}