- java.lang.Object
-
- javax.management.relation.Role
-
- All Implemented Interfaces:
- Serializable
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
.- Since:
- 1.5
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description Role(String roleName, List<ObjectName> roleValue)
Make a new Role object.
-
Method Summary
Methods Modifier and Type Method and Description Object
clone()
Clone the role object.String
getRoleName()
Retrieves role name.List<ObjectName>
getRoleValue()
Retrieves role value.static String
roleValueToString(List<ObjectName> roleValue)
Returns a string for the given role value.void
setRoleName(String roleName)
Sets role name.void
setRoleValue(List<ObjectName> roleValue)
Sets role value.String
toString()
Returns a string describing the role.
-
-
-
Constructor Detail
-
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 Detail
-
getRoleName
public String getRoleName()
Retrieves role name.- Returns:
- the role name.
- See Also:
setRoleName(java.lang.String)
-
getRoleValue
public List<ObjectName> getRoleValue()
Retrieves role value.- Returns:
- ArrayList of ObjectName objects for referenced MBeans.
- See Also:
setRoleValue(java.util.List<javax.management.ObjectName>)
-
setRoleName
public void setRoleName(String roleName) throws IllegalArgumentException
Sets role name.- Parameters:
roleName
- role name- Throws:
IllegalArgumentException
- if null parameter- See Also:
getRoleName()
-
setRoleValue
public void setRoleValue(List<ObjectName> roleValue) throws IllegalArgumentException
Sets role value.- Parameters:
roleValue
- List of ObjectName objects for referenced MBeans.- Throws:
IllegalArgumentException
- if null parameter- See Also:
getRoleValue()
-
toString
public String toString()
Returns a string describing the role.
-
clone
public Object clone()
Clone the role object.
-
roleValueToString
public static String roleValueToString(List<ObjectName> roleValue) throws IllegalArgumentException
Returns a string for the given role value.- Parameters:
roleValue
- List of ObjectName objects- Returns:
- A String consisting of the ObjectNames separated by newlines (\n).
- Throws:
IllegalArgumentException
- if null parameter
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/management/relation/Role.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.