org.apache.mina.proxy.handlers.http
Enum HttpAuthenticationMethods
java.lang.Object
java.lang.Enum<HttpAuthenticationMethods>
org.apache.mina.proxy.handlers.http.HttpAuthenticationMethods
- All Implemented Interfaces:
- Serializable, Comparable<HttpAuthenticationMethods>
public enum HttpAuthenticationMethods
- extends Enum<HttpAuthenticationMethods>
HttpAuthenticationMethods.java - Enumerates all known http authentication methods.
- Since:
- MINA 2.0.0-M3
- Version:
- $Rev: 685703 $, $Date: 2008-08-14 00:14:47 +0200 (Do, 14 Aug 2008) $
- Author:
- The Apache MINA Project (dev@mina.apache.org)
NO_AUTH
public static final HttpAuthenticationMethods NO_AUTH
BASIC
public static final HttpAuthenticationMethods BASIC
NTLM
public static final HttpAuthenticationMethods NTLM
DIGEST
public static final HttpAuthenticationMethods DIGEST
values
public static final HttpAuthenticationMethods[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(HttpAuthenticationMethods c : HttpAuthenticationMethods.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static HttpAuthenticationMethods valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
getId
public int getId()
getNewHandler
public AbstractAuthLogicHandler getNewHandler(ProxyIoSession proxyIoSession)
throws ProxyAuthException
- Creates an
AbstractAuthLogicHandler
to handle this authentication mechanism.
- Throws:
ProxyAuthException
Copyright © 2004-2009 Apache MINA Project. All Rights Reserved.