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 particular Subject
to augment that Subject
with an additional identity. Refer to the Subject
class for more information on how to achieve this. Authorization decisions can then be based upon the Principals associated with a Subject
.
Constructor | Description |
---|---|
JMXPrincipal |
Creates a JMXPrincipal for a given identity. |
Modifier and Type | Method | Description |
---|---|---|
boolean |
equals |
Compares the specified Object with this JMXPrincipal for equality. |
String |
getName() |
Returns the name of this principal. |
int |
hashCode() |
Returns a hash code for this JMXPrincipal . |
String |
toString() |
Returns a string representation of this JMXPrincipal . |
public JMXPrincipal(String name)
name
- the JMX Remote API name for this identity.NullPointerException
- if the name
is null
.public String getName()
public String toString()
JMXPrincipal
.public boolean equals(Object o)
JMXPrincipal
for equality. Returns true if the given object is also a JMXPrincipal
and the two JMXPrincipals have the same name.public int hashCode()
JMXPrincipal
.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.management/javax/management/remote/JMXPrincipal.html