- java.lang.Object
- 
- javax.management.relation.RoleResult
 
- 
- All Implemented Interfaces:
- Serializable
 
 
 public class RoleResult extends Object implements Serializable Represents the result of a multiple access to several roles of a relation (either for reading or writing).The serialVersionUID of this class is -6304063118040985512L.- Since:
- 1.5
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description RoleResult(RoleList list, RoleUnresolvedList unresolvedList)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description RoleListgetRoles()Retrieves list of roles successfully accessed.RoleUnresolvedListgetRolesUnresolved()Retrieves list of roles unsuccessfully accessed.voidsetRoles(RoleList list)Sets list of roles successfully accessed.voidsetRolesUnresolved(RoleUnresolvedList unresolvedList)Sets list of roles unsuccessfully accessed.
 
- 
- 
- 
Constructor Detail- 
RoleResultpublic RoleResult(RoleList list, RoleUnresolvedList unresolvedList) Constructor.- Parameters:
- list- list of roles successfully accessed.
- unresolvedList- list of roles not accessed (with problem descriptions).
 
 
- 
 - 
Method Detail- 
getRolespublic RoleList getRoles() Retrieves list of roles successfully accessed.- Returns:
- a RoleList
- See Also:
- setRoles(javax.management.relation.RoleList)
 
 - 
getRolesUnresolvedpublic RoleUnresolvedList getRolesUnresolved() Retrieves list of roles unsuccessfully accessed.- Returns:
- a RoleUnresolvedList.
- See Also:
- setRolesUnresolved(javax.management.relation.RoleUnresolvedList)
 
 - 
setRolespublic void setRoles(RoleList list) Sets list of roles successfully accessed.- Parameters:
- list- list of roles successfully accessed
- See Also:
- getRoles()
 
 - 
setRolesUnresolvedpublic void setRolesUnresolved(RoleUnresolvedList unresolvedList) Sets list of roles unsuccessfully accessed.- Parameters:
- unresolvedList- list of roles unsuccessfully accessed
- See Also:
- getRolesUnresolved()
 
 
- 
 
-