Package org.apache.tomcat.websocket
Class BasicAuthenticator
- java.lang.Object
-
- org.apache.tomcat.websocket.Authenticator
-
- org.apache.tomcat.websocket.BasicAuthenticator
-
public class BasicAuthenticator extends Authenticator
Authenticator supporting the BASIC auth method.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
charsetparam
static java.lang.String
schemeName
-
Constructor Summary
Constructors Constructor Description BasicAuthenticator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAuthorization(java.lang.String requestUri, java.lang.String WWWAuthenticate, java.util.Map<java.lang.String,java.lang.Object> userProperties)
Generate the authentication header that will be sent to the server.java.lang.String
getSchemeName()
Get the authentication method.-
Methods inherited from class org.apache.tomcat.websocket.Authenticator
parseWWWAuthenticateHeader
-
-
-
-
Field Detail
-
schemeName
public static final java.lang.String schemeName
- See Also:
- Constant Field Values
-
charsetparam
public static final java.lang.String charsetparam
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAuthorization
public java.lang.String getAuthorization(java.lang.String requestUri, java.lang.String WWWAuthenticate, java.util.Map<java.lang.String,java.lang.Object> userProperties) throws AuthenticationException
Description copied from class:Authenticator
Generate the authentication header that will be sent to the server.- Specified by:
getAuthorization
in classAuthenticator
- Parameters:
requestUri
- The request URIWWWAuthenticate
- The server auth challengeuserProperties
- The user information- Returns:
- The auth header
- Throws:
AuthenticationException
- When an error occurs
-
getSchemeName
public java.lang.String getSchemeName()
Description copied from class:Authenticator
Get the authentication method.- Specified by:
getSchemeName
in classAuthenticator
- Returns:
- the auth scheme
-
-