Class ValidValues

java.lang.Object
com.sun.identity.policy.ValidValues

@SupportedAll @Deprecated public class ValidValues extends Object
Deprecated.
As of OpenSSO Express 8.0, use com.sun.identity.entitlement instead as Entitlement has replaced Policy.
This class ValidValues provides search results and a error code indicating if the search was successfully or time limit exceeded or search limit exceeded.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Deprecated.
    Code used to indicate that the search was unsuccessful as the size limit exceeded during the search process.
    static final int
    Deprecated.
    Code used to indicate a successful search
    static final int
    Deprecated.
    Code used to indicate that the search was unsuccessful as the time limit exceeded during the search process.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ValidValues(int errorCode, Set results)
    Deprecated.
    Constructs a ValidValues given errorCode and a set of values
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Deprecated.
    Returns the error code of search.
    Deprecated.
    Returns the search results as a set.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • SUCCESS

      public static final int SUCCESS
      Deprecated.
      Code used to indicate a successful search
      See Also:
    • SIZE_LIMIT_EXCEEDED

      public static final int SIZE_LIMIT_EXCEEDED
      Deprecated.
      Code used to indicate that the search was unsuccessful as the size limit exceeded during the search process.
      See Also:
    • TIME_LIMIT_EXCEEDED

      public static final int TIME_LIMIT_EXCEEDED
      Deprecated.
      Code used to indicate that the search was unsuccessful as the time limit exceeded during the search process.
      See Also:
  • Constructor Details

    • ValidValues

      public ValidValues(int errorCode, Set results)
      Deprecated.
      Constructs a ValidValues given errorCode and a set of values
      Parameters:
      errorCode - error code
      results - set of values to be included
      See Also:
  • Method Details

    • getSearchResults

      public Set getSearchResults()
      Deprecated.
      Returns the search results as a set.
      Returns:
      set of entries matching the search criteria. Each element in the Set is a String.
    • getErrorCode

      public int getErrorCode()
      Deprecated.
      Returns the error code of search.
      Returns:
      Error code of search. The possible values are SUCCESS, SIZE_LIMIT_EXCEEDED and TIME_LIMIT_EXCEEDED
      See Also: