|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.management.relation
类 Role
java.lang.Object javax.management.relation.Role
- 所有已实现的接口:
- Serializable
-
public class Role
- extends Object
- implements Serializable
表示角色:包括角色名称和引用的 MBean(通过其 ObjectName)。角色值总是表示为 ObjectName 的 ArrayList 集合,以均衡访问。
- 从以下版本开始:
- 1.5
- 另请参见:
- 序列化表格
构造方法摘要 | |
---|---|
Role(String theRoleName, List theRoleValue) 创建一个新的 Role 对象。 |
方法摘要 | |
---|---|
Object |
clone() 克隆角色对象。 |
String |
getRoleName() 检索角色名称。 |
List |
getRoleValue() 检索角色值。 |
static String |
roleValueToString(List theRoleValue) 返回给定角色值的字符串。 |
void |
setRoleName(String theRoleName) 设置角色名称。 |
void |
setRoleValue(List theRoleValue) 设置角色值。 |
String |
toString() 返回描述角色的字符串。 |
从类 java.lang.Object 继承的方法 |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
Role
public Role(String theRoleName, List theRoleValue) throws IllegalArgumentException
-
创建一个新的 Role 对象。不用检查角色值中的 ObjectName 是否在 MBean 服务器中存在。在关系中设置角色时将进行该项检查。
- 参数:
-
theRoleName
- 角色名称 -
theRoleValue
- 角色值(ObjectName 对象的列表) - 抛出:
-
IllegalArgumentException
- 如果是 null 参数
方法详细信息 |
---|
getRoleName
public String getRoleName()
- 检索角色名称。
-
-
- 返回:
- 角色名称。
- 另请参见:
-
setRoleName(java.lang.String)
getRoleValue
public List getRoleValue()
- 检索角色值。
-
-
- 返回:
- 引用的 MBean 的 ObjectName 对象的 ArrayList。
- 另请参见:
-
setRoleValue(java.util.List)
setRoleName
public void setRoleName(String theRoleName) throws IllegalArgumentException
- 设置角色名称。
-
-
- 参数:
-
theRoleName
- 角色名称 - 抛出:
-
IllegalArgumentException
- 如果是 null 参数 - 另请参见:
-
getRoleName()
setRoleValue
public void setRoleValue(List theRoleValue) throws IllegalArgumentException
- 设置角色值。
-
-
- 参数:
-
theRoleValue
- 引用的 MBean 的 ObjectName 对象的列表。 - 抛出:
-
IllegalArgumentException
- 如果是 null 参数 - 另请参见:
-
getRoleValue()
toString
public String toString()
clone
public Object clone()
roleValueToString
public static String roleValueToString(List theRoleValue) throws IllegalArgumentException
- 返回给定角色值的字符串。
-
-
- 参数:
-
theRoleValue
- ObjectName 对象的列表 - 返回:
- 由新行 (\n) 分隔的 ObjectName 组成的字符串。
- 抛出:
-
IllegalArgumentException
- 如果是 null 参数