On this page
Class Role
- All Implemented Interfaces:
-
Serializable
public class Role extends Object implements Serializable
The serialVersionUID of this class is -279985518429862552L
.
- Since:
- 1.5
- See Also:
Constructor Summary
Constructor | Description |
---|---|
Role |
Make a new Role object.
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
Object |
clone() |
Clone the role object.
|
String |
getRoleName() |
Retrieves role name.
|
List |
getRoleValue() |
Retrieves role value.
|
static String |
roleValueToString |
Returns a string for the given role value.
|
void |
setRoleName |
Sets role name.
|
void |
setRoleValue |
Sets role value.
|
String |
toString() |
Returns a string describing the role.
|
Constructor Details
Role
public Role(String roleName, List<ObjectName> roleValue) throws IllegalArgumentException
Make a new Role object. No check is made that the ObjectNames in the role value exist in an MBean server. That check will be made when the role is set in a relation.
- Parameters:
roleName
- role nameroleValue
- role value (List of ObjectName objects)- Throws:
IllegalArgumentException
- if null parameter
Method Details
getRoleName
public String getRoleName()
- Returns:
- the role name.
- See Also:
getRoleValue
public List<ObjectName> getRoleValue()
- Returns:
- ArrayList of ObjectName objects for referenced MBeans.
- See Also:
setRoleName
public void setRoleName(String roleName) throws IllegalArgumentException
- Parameters:
roleName
- role name- Throws:
IllegalArgumentException
- if null parameter- See Also:
setRoleValue
public void setRoleValue(List<ObjectName> roleValue) throws IllegalArgumentException
- Parameters:
roleValue
- List of ObjectName objects for referenced MBeans.- Throws:
IllegalArgumentException
- if null parameter- See Also:
toString
public String toString()
clone
public Object clone()
roleValueToString
public static String roleValueToString(List<ObjectName> roleValue) throws IllegalArgumentException
- Parameters:
roleValue
- List of ObjectName objects- Returns:
- A String consisting of the ObjectNames separated by newlines (\n).
- Throws:
IllegalArgumentException
- if null parameter
© 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/relation/Role.html