- java.lang.Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable<Object,Object>
-
- java.util.Properties
-
- java.security.Provider
-
- java.security.AuthProvider
-
- All Implemented Interfaces:
- Serializable, Cloneable, Map<Object,Object>
public abstract class AuthProvider extends Provider
This class defines login and logout methods for a provider.While callers may invoke
login
directly, the provider may also invokelogin
on behalf of callers if it determines that a login must be performed prior to certain operations.- Since:
- 1.5
- See Also:
- Serialized Form
-
-
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
Constructors Modifier Constructor and Description protected
AuthProvider(String name, double version, String info)
Constructs a provider with the specified name, version number, and information.
-
Method Summary
Methods Modifier and Type Method and Description 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 aCallbackHandler
.-
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
getProperty, list, list, load, loadFromXML, propertyNames, save, setProperty, store, store, storeToXML, storeToXML, stringPropertyNames
-
Methods inherited from class java.util.Hashtable
clone, contains, containsKey, containsValue, equals, hashCode, isEmpty, rehash, size
-
-
-
-
Method Detail
-
login
public abstract void login(Subject subject, CallbackHandler handler) throws LoginException
Log in to this provider.The provider relies on a
CallbackHandler
to obtain authentication information from the caller (a PIN, for example). If the caller passes anull
handler to this method, the provider uses the handler set in thesetCallbackHandler
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.- Parameters:
subject
- theSubject
which may contain principals/credentials used for authentication, or may be populated with additional principals/credentials after successful authentication has completed. This parameter may benull
.handler
- theCallbackHandler
used by this provider to obtain authentication information from the caller, which may benull
- Throws:
LoginException
- if the login operation failsSecurityException
- if the caller does not pass a security check forSecurityPermission("authProvider.name")
, where name is the value returned by this provider'sgetName
method
-
logout
public abstract void logout() throws LoginException
Log out from this provider.- Throws:
LoginException
- if the logout operation failsSecurityException
- if the caller does not pass a security check forSecurityPermission("authProvider.name")
, where name is the value returned by this provider'sgetName
method
-
setCallbackHandler
public abstract void setCallbackHandler(CallbackHandler handler)
Set aCallbackHandler
.The provider uses this handler if one is not passed to the
login
method. The provider also uses this handler if it invokeslogin
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.- Parameters:
handler
- aCallbackHandler
for obtaining authentication information, which may benull
- Throws:
SecurityException
- if the caller does not pass a security check forSecurityPermission("authProvider.name")
, where name is the value returned by this provider'sgetName
method
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/security/authprovider.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.