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
- Author:
- Apache MINA Project
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getId()
static AbstractAuthLogicHandler
getNewHandler(int method, ProxyIoSession proxyIoSession)
Creates anAbstractAuthLogicHandler
to handle the authentication mechanism.AbstractAuthLogicHandler
getNewHandler(ProxyIoSession proxyIoSession)
Creates anAbstractAuthLogicHandler
to handle the authentication mechanism.static HttpAuthenticationMethods
valueOf(String name)
Returns the enum constant of this type with the specified name.static HttpAuthenticationMethods[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_AUTH
public static final HttpAuthenticationMethods NO_AUTH
No authentication
-
BASIC
public static final HttpAuthenticationMethods BASIC
Basic authentication
-
NTLM
public static final HttpAuthenticationMethods NTLM
NTLM (Microsoft) authentication
-
DIGEST
public static final HttpAuthenticationMethods DIGEST
Digest authentication
-
-
Method Detail
-
values
public static HttpAuthenticationMethods[] values()
Returns an array containing the constants of this enum type, in the order they are 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 are 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 nameNullPointerException
- if the argument is null
-
getId
public int getId()
- Returns:
- the authentication mechanism id.
-
getNewHandler
public AbstractAuthLogicHandler getNewHandler(ProxyIoSession proxyIoSession) throws ProxyAuthException
Creates anAbstractAuthLogicHandler
to handle the authentication mechanism.- Parameters:
proxyIoSession
- the proxy session object- Returns:
- a new logic handler
- Throws:
ProxyAuthException
- If we get an error during the proxy authentication
-
getNewHandler
public static AbstractAuthLogicHandler getNewHandler(int method, ProxyIoSession proxyIoSession) throws ProxyAuthException
Creates anAbstractAuthLogicHandler
to handle the authentication mechanism.- Parameters:
method
- the authentication mechanism to useproxyIoSession
- the proxy session object- Returns:
- a new logic handler
- Throws:
ProxyAuthException
- If we get an error during the proxy authentication
-
-