java.lang.Object
com.sun.net.httpserver.Authenticator
com.sun.net.httpserver.BasicAuthenticator
public abstract class BasicAuthenticator extends Authenticator
BasicAuthenticator provides an implementation of HTTP Basic
 authentication. It is an abstract class and must be extended
 to provide an implementation of 
checkCredentials(String,String)
 which is called to verify each incoming request.- 
Nested Class SummaryNested classes/interfaces declared in class com.sun.net.httpserver.AuthenticatorAuthenticator.Failure, Authenticator.Result, Authenticator.Retry, Authenticator.Success
- 
Field Summary
- 
Constructor SummaryConstructors Constructor Description BasicAuthenticator(String realm)Creates a BasicAuthenticator for the given HTTP realm.BasicAuthenticator(String realm, Charset charset)Creates a BasicAuthenticator for the given HTTP realm and using the givenCharsetto decode the Basic authentication credentials (username and password).
- 
Method SummaryModifier and Type Method Description abstract booleancheckCredentials(String username, String password)called for each incoming request to verify the given name and password in the context of this Authenticator's realm.StringgetRealm()returns the realm this BasicAuthenticator was created with
- 
Field Details
- 
Constructor Details- 
BasicAuthenticatorCreates a BasicAuthenticator for the given HTTP realm. The Basic authentication credentials (username and password) are decoded using the platform'sdefault character set.- Parameters:
- realm- The HTTP Basic authentication realm
- Throws:
- NullPointerException- if realm is- null
- IllegalArgumentException- if realm is an empty string
 
- 
BasicAuthenticatorCreates a BasicAuthenticator for the given HTTP realm and using the givenCharsetto decode the Basic authentication credentials (username and password).- API Note:
- UTF-8is the recommended charset because its usage is communicated to the client, and therefore more likely to be used also by the client.
- Parameters:
- realm- The HTTP Basic authentication realm
- charset- The Charset to decode incoming credentials from the client
- Throws:
- NullPointerException- if realm or charset are- null
- IllegalArgumentException- if realm is an empty string
 
 
- 
- 
Method Details- 
getRealmreturns the realm this BasicAuthenticator was created with- Returns:
- the authenticator's realm string.
 
- 
checkCredentialscalled for each incoming request to verify the given name and password in the context of this Authenticator's realm. Any caching of credentials must be done by the implementation of this method- Parameters:
- username- the username from the request
- password- the password from the request
- Returns:
- trueif the credentials are valid,- falseotherwise.
 
 
-