Package org.apache.woden.xml

Examples of org.apache.woden.xml.HTTPAuthenticationSchemeAttr


   *
   * @see org.apache.woden.wsdl20.extensions.http.HTTPEndpointExtensions#getHttpAuthenticationScheme()
   */
  public HTTPAuthenticationScheme getHttpAuthenticationScheme() {

    HTTPAuthenticationSchemeAttr scheme = (HTTPAuthenticationSchemeAttr) ((WSDLElement) getParent())
        .getExtensionAttribute(HTTPConstants.Q_ATTR_AUTHENTICATION_SCHEME);

    return scheme != null ? scheme.getScheme() : null;
  }
View Full Code Here


        }
       
        if( ("1.2".equals(version) && protocol.toString().equals(SOAPConstants.PROTOCOL_STRING_SOAP12_HTTP)) ||
            ("1.1".equals(version) && protocol.toString().equals(SOAPConstants.PROTOCOL_STRING_SOAP11_HTTP)) )
        {
        HTTPAuthenticationSchemeAttr scheme = (HTTPAuthenticationSchemeAttr) ((WSDLElement) getParent())
        .getExtensionAttribute(HTTPConstants.Q_ATTR_AUTHENTICATION_SCHEME);
        return scheme != null ? scheme.getScheme() : null;
        }
        else
        {
            return null;
        }
View Full Code Here

TOP

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

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.