Package org.apache.woden.xml

Examples of org.apache.woden.xml.URIAttr


    /* (non-Javadoc)
     * @see org.apache.woden.wsdl20.extensions.soap.SOAPBindingExtensions#getSoapUnderlyingProtocol()
     */
    public URI getSoapUnderlyingProtocol()
    {
        URIAttr protocol = (URIAttr) ((WSDLElement)getParent())
            .getExtensionAttribute(SOAPConstants.Q_ATTR_SOAP_PROTOCOL);
        return protocol != null ? protocol.getURI() : null;
    }
View Full Code Here


    /* (non-Javadoc)
     * @see org.apache.woden.wsdl20.extensions.soap.SOAPBindingExtensions#getSoapMepDefault()
     */
    public URI getSoapMepDefault()
    {
        URIAttr mepDefault = (URIAttr) ((WSDLElement)getParent())
            .getExtensionAttribute(SOAPConstants.Q_ATTR_SOAP_MEPDEFAULT);
        return mepDefault != null ? mepDefault.getURI() : null;
    }
View Full Code Here

    /* (non-Javadoc)
     * @see org.apache.woden.wsdl20.extensions.soap.SOAPBindingOperationExtensions#getSoapMep()
     */
    public URI getSoapMep()
    {
        URIAttr mep = (URIAttr) ((WSDLElement)getParent())
            .getExtensionAttribute(SOAPConstants.Q_ATTR_SOAP_MEP);
        return mep != null ? mep.getURI() : null;
    }
View Full Code Here

    /* (non-Javadoc)
     * @see org.apache.woden.wsdl20.extensions.soap.SOAPBindingOperationExtensions#getSoapAction()
     */
    public URI getSoapAction()
    {
        URIAttr action = (URIAttr) ((WSDLElement)getParent())
            .getExtensionAttribute(SOAPConstants.Q_ATTR_SOAP_ACTION);
        return action != null ? action.getURI() : null;
    }
View Full Code Here

TOP

Related Classes of org.apache.woden.xml.URIAttr

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.