This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.management.relation
class RoleResult

java.lang.Object extended by javax.management.relation.RoleResult
All Implemented Interfaces:
Serializable

Most common way to construct:

RoleList resolved = …;
RoleUnresolvedList roleUnresList = …;

RoleResult result = new RoleResult(resolved, roleUnresList);

Based on 10 examples


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.


Constructor Summary
RoleResult(RoleList list, RoleUnresolvedList unresolvedList)

          Constructor.
 
Method Summary
 RoleList

          Retrieves list of roles successfully accessed.
 RoleUnresolvedList

          Retrieves list of roles unsuccessfully accessed.
 void

          Sets list of roles successfully accessed.
 void

          Sets list of roles unsuccessfully accessed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RoleResult

public RoleResult(RoleList list,
                  RoleUnresolvedList unresolvedList)
Constructor.

Parameters:
list - list of roles successfully accessed.
unresolvedList - list of roles not accessed (with problem descriptions).
Method Detail

getRoles

public RoleList getRoles()
Retrieves list of roles successfully accessed.

Returns:
a RoleList

getRolesUnresolved

public RoleUnresolvedList getRolesUnresolved()
Retrieves list of roles unsuccessfully accessed.

Returns:
a RoleUnresolvedList.

setRoles

public void setRoles(RoleList list)
Sets list of roles successfully accessed.

Parameters:
list - list of roles successfully accessed

setRolesUnresolved

public void setRolesUnresolved(RoleUnresolvedList unresolvedList)
Sets list of roles unsuccessfully accessed.

Parameters:
unresolvedList - list of roles unsuccessfully accessed


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.