Home » openjdk-7 » javax » management » relation » [javadoc | source]
javax.management.relation
public class: RoleUnresolved [javadoc | source]
java.lang.Object
   javax.management.relation.RoleUnresolved

All Implemented Interfaces:
    java$io$Serializable

Represents an unresolved role: a role not retrieved from a relation due to a problem. It provides the role name, value (if problem when trying to set the role) and an integer defining the problem (constants defined in RoleStatus).

The serialVersionUID of this class is -48350262537070138L.

Constructor:
 public RoleUnresolved(String name,
    List<ObjectName> value,
    int pbType) throws IllegalArgumentException 
    Constructor.
    Parameters:
    name - name of the role
    value - value of the role (if problem when setting the role)
    pbType - type of problem (according to known problem types, listed as static final members).
    Throws:
    IllegalArgumentException - if null parameter or incorrect problem type
    exception: IllegalArgumentException - if null parameter or incorrect problem type
Method from javax.management.relation.RoleUnresolved Summary:
clone,   getProblemType,   getRoleName,   getRoleValue,   setProblemType,   setRoleName,   setRoleValue,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.management.relation.RoleUnresolved Detail:
 public Object clone() 
    Clone this object.
 public int getProblemType() 
    Retrieves problem type.
 public String getRoleName() 
    Retrieves role name.
 public List<ObjectName> getRoleValue() 
    Retrieves role value.
 public  void setProblemType(int pbType) throws IllegalArgumentException 
    Sets problem type.
 public  void setRoleName(String name) throws IllegalArgumentException 
    Sets role name.
 public  void setRoleValue(List<ObjectName> value) 
    Sets role value.
 public String toString() 
    Return a string describing this object.