-
public interface JMXAuthenticator
Interface to define how remote credentials are converted into a JAAS Subject. This interface is used by the RMI Connector Server, and can be used by other connector servers.
The user-defined authenticator instance is passed to the connector server in the environment map as the value of the attribute
JMXConnectorServer.AUTHENTICATOR
. For connector servers that use only this authentication system, if this attribute is not present or its value isnull
then no user authentication will be performed and full access to the methods exported by theMBeanServerConnection
object will be allowed.If authentication is successful then an authenticated
subject
filled in with its associatedprincipals
is returned. Authorization checks will be then performed based on the given set of principals.- Since:
- 1.5
-
-
Method Summary
Methods Modifier and Type Method and Description Subject
authenticate(Object credentials)
Authenticates theMBeanServerConnection
client with the given client credentials.
-
-
-
Method Detail
-
authenticate
Subject authenticate(Object credentials)
Authenticates the
MBeanServerConnection
client with the given client credentials.- Parameters:
credentials
- the user-defined credentials to be passed into the server in order to authenticate the user before creating theMBeanServerConnection
. The actual type of this parameter, and whether it can be null, depends on the connector.- Returns:
- the authenticated subject containing its associated principals.
- Throws:
SecurityException
- if the server cannot authenticate the user with the provided credentials.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/11/2024 21:41:17 Cette version de la page est en cache (à la date du 21/11/2024 21:41:17) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/management/remote/jmxauthenticator.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.