is new.
java.lang.Objectjava.util.Dictionary<K,V>
java.util.Hashtable<Object,Object>
java.util.Properties
java.security.Provider
java.security.AuthProvider
public abstract class AuthProvider
This class defines login and logout methods for a provider.
While callers may invoke login directly, the provider may also invoke login on behalf of callers if it determines that a login must be performed prior to certain operations.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class java.security. Provider |
|---|
| Provider.Service |
| Field Summary |
|---|
| Fields inherited from class java.util. Properties |
|---|
| defaults |
| Constructor Summary | |
|---|---|
| protected |
AuthProvider
(
String
name, double version,
String
info) Constructs a provider with the specified name, version number, and information. |
| Method Summary | |
|---|---|
| abstract void |
login
(
Subject
subject,
CallbackHandler
handler) Log in to this provider. |
| abstract void |
logout
() Log out from this provider. |
| abstract void |
setCallbackHandler
(
CallbackHandler
handler) Set a CallbackHandler. |
| Methods inherited from class java.security. Provider |
|---|
clear
,
elements
,
entrySet
,
get
,
getInfo
,
getName
,
getProperty
,
getService
,
getServices
,
getVersion
,
keys
,
keySet
,
load
,
put
,
putAll
,
putService
,
remove
,
removeService
,
toString
,
values
|
| Methods inherited from class java.util. Properties |
|---|
load
,
loadFromXML
,
propertyNames
,
save
,
setProperty
,
store
,
store
,
storeToXML
,
storeToXML
,
stringPropertyNames
|
| Methods inherited from class java.util. Hashtable |
|---|
clone
,
contains
,
containsKey
,
containsValue
,
|
| Methods inherited from class java.lang. Object |
|---|
| finalize , getClass , notify , notifyAll , wait , wait , wait |
| Constructor Detail |
|---|
protected AuthProvider(String name,
double version,
String info)
| Method Detail |
|---|
public abstract void login(Subject subject,
CallbackHandler handler)
throws LoginException
The provider relies on a CallbackHandler to obtain authentication information from the caller (a PIN, for example). If the caller passes a null handler to this method, the provider uses the handler set in the setCallbackHandler method. If no handler was set in that method, the provider queries the auth.login.defaultCallbackHandler security property for the fully qualified class name of a default handler implementation. If the security property is not set, the provider is assumed to have alternative means for obtaining authentication information.
public abstract void logout()
throws LoginException
public abstract void setCallbackHandler(CallbackHandler handler)
The provider uses this handler if one is not passed to the login method. The provider also uses this handler if it invokes login on behalf of callers. In either case if a handler is not set via this method, the provider queries the auth.login.defaultCallbackHandler security property for the fully qualified class name of a default handler implementation. If the security property is not set, the provider is assumed to have alternative means for obtaining authentication information.