public class Role extends Object implements Serializable
Represents a role: includes a role name and referenced MBeans (via their ObjectNames). The role value is always represented as an ArrayList collection (of ObjectNames) to homogenize the access.
The serialVersionUID of this class is -279985518429862552L
.
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.
roleName
- role nameroleValue
- role value (List of ObjectName objects)IllegalArgumentException
- if null parameterpublic String getRoleName()
Retrieves role name.
setRoleName(java.lang.String)
public List<ObjectName> getRoleValue()
Retrieves role value.
setRoleValue(java.util.List<javax.management.ObjectName>)
public void setRoleName(String roleName) throws IllegalArgumentException
Sets role name.
roleName
- role nameIllegalArgumentException
- if null parametergetRoleName()
public void setRoleValue(List<ObjectName> roleValue) throws IllegalArgumentException
Sets role value.
roleValue
- List of ObjectName objects for referenced MBeans.IllegalArgumentException
- if null parametergetRoleValue()
public String toString()
Returns a string describing the role.
public Object clone()
Clone the role object.
clone
in class Object
Cloneable
public static String roleValueToString(List<ObjectName> roleValue) throws IllegalArgumentException
Returns a string for the given role value.
roleValue
- List of ObjectName objectsIllegalArgumentException
- if null parameter
© 1993–2017, 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.