- java.lang.Object
-
- javax.management.remote.JMXPrincipal
-
- All Implemented Interfaces:
- Serializable, Principal
public class JMXPrincipal extends Object implements Principal, Serializable
The identity of a remote client of the JMX Remote API.
Principals such as this
JMXPrincipal
may be associated with a particularSubject
to augment thatSubject
with an additional identity. Refer to theSubject
class for more information on how to achieve this. Authorization decisions can then be based upon the Principals associated with aSubject
.- Since:
- 1.5
- See Also:
Principal
,Subject
, Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description JMXPrincipal(String name)
Creates a JMXPrincipal for a given identity.
-
Method Summary
Methods Modifier and Type Method and Description boolean
equals(Object o)
Compares the specified Object with thisJMXPrincipal
for equality.String
getName()
Returns the name of this principal.int
hashCode()
Returns a hash code for thisJMXPrincipal
.String
toString()
Returns a string representation of thisJMXPrincipal
.
-
-
-
Constructor Detail
-
JMXPrincipal
public JMXPrincipal(String name)
Creates a JMXPrincipal for a given identity.
- Parameters:
name
- the JMX Remote API name for this identity.- Throws:
NullPointerException
- if thename
isnull
.
-
-
Method Detail
-
getName
public String getName()
Returns the name of this principal.
-
toString
public String toString()
Returns a string representation of thisJMXPrincipal
.
-
equals
public boolean equals(Object o)
Compares the specified Object with thisJMXPrincipal
for equality. Returns true if the given object is also aJMXPrincipal
and the two JMXPrincipals have the same name.
-
hashCode
public int hashCode()
Returns a hash code for thisJMXPrincipal
.- Specified by:
hashCode
in interfacePrincipal
- Overrides:
hashCode
in classObject
- Returns:
- a hash code for this
JMXPrincipal
. - See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-
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
25/11/2024 04:15:09 Cette version de la page est en cache (à la date du 25/11/2024 04:15:09) 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/JMXPrincipal.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.