org.deegree.services.authentication
Class HttpBasicAuthentication

java.lang.Object
  extended by org.deegree.services.authentication.HttpBasicAuthentication
All Implemented Interfaces:
CredentialsProvider

public class HttpBasicAuthentication
extends Object
implements CredentialsProvider

HTTP Basic Authentication.

It is a basic authentication protocol. The browser generates a dialog with the authentication credentials username and password. After typing in the needed information there is a second request needed to send the credentials back to the server. The basic authentication just encodes the username and password with a simple algorithm that is not intended to secure the credentials. In fact this encryption exists to provide multilanguage capability.

Version:
$Revision: $, $Date: $
Author:
Steffen Thomas, last edited by: $Author: thomas $

Constructor Summary
HttpBasicAuthentication()
           
 
Method Summary
 Credentials doKVP(Map<String,String> normalizedKVPParams, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse response)
          Extracts the Credentials from a KVP-request.
 Credentials doSOAP(org.apache.axiom.soap.SOAPEnvelope soapDoc, javax.servlet.http.HttpServletRequest req)
          Extracts the Credentials from a SOAP-request.
 Credentials doXML(XMLStreamReader reader, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse response)
          Extracts the Credentials from an XML-request.
 void handleException(javax.servlet.http.HttpServletResponse response, SecurityException e)
          Handles a SecurityException and generates a suitable HTTP response.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HttpBasicAuthentication

public HttpBasicAuthentication()
Method Detail

doKVP

public Credentials doKVP(Map<String,String> normalizedKVPParams,
                         javax.servlet.http.HttpServletRequest req,
                         javax.servlet.http.HttpServletResponse response)
                  throws SecurityException
Description copied from interface: CredentialsProvider
Extracts the Credentials from a KVP-request.

Specified by:
doKVP in interface CredentialsProvider
Returns:
the credentials or null if not credentials are given
Throws:
SecurityException

doXML

public Credentials doXML(XMLStreamReader reader,
                         javax.servlet.http.HttpServletRequest req,
                         javax.servlet.http.HttpServletResponse response)
                  throws SecurityException
Description copied from interface: CredentialsProvider
Extracts the Credentials from an XML-request.

Specified by:
doXML in interface CredentialsProvider
Returns:
the credentials or null if not credentials are given
Throws:
SecurityException

doSOAP

public Credentials doSOAP(org.apache.axiom.soap.SOAPEnvelope soapDoc,
                          javax.servlet.http.HttpServletRequest req)
                   throws SecurityException
Description copied from interface: CredentialsProvider
Extracts the Credentials from a SOAP-request.

Specified by:
doSOAP in interface CredentialsProvider
Returns:
the credentials or null if not credentials are given
Throws:
SecurityException

handleException

public void handleException(javax.servlet.http.HttpServletResponse response,
                            SecurityException e)
                     throws IOException
Description copied from interface: CredentialsProvider
Handles a SecurityException and generates a suitable HTTP response.

Specified by:
handleException in interface CredentialsProvider
Throws:
IOException


Copyright © 2011. All Rights Reserved.