Class Result

java.lang.Object
com.ibm.websphere.security.Result
All Implemented Interfaces:
Serializable

public class Result extends Object implements Serializable
This module is used by User Registries in WebSphere when calling the getUsers and getGroups method. The user registries should use this to set the list of users/groups and to indicate if there are more users/groups in the registry than requested.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the list of users/groups
    boolean
    indicates if there are more users/groups in the registry
    void
    Set the flag to indicate that there are more users/groups in the registry to true
    void
    setList(List list)
     

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Result

      public Result()
      Default constructor
  • Method Details

    • getList

      public List getList()
      Returns the list of users/groups
      Returns:
      the list of users/groups
    • hasMore

      public boolean hasMore()
      indicates if there are more users/groups in the registry
    • setHasMore

      public void setHasMore()
      Set the flag to indicate that there are more users/groups in the registry to true
    • setList

      public void setList(List list)