Package com.sun.identity.policy
Class ValidValues
- java.lang.Object
-
- com.sun.identity.policy.ValidValues
-
@SupportedAll @Deprecated public class ValidValues extends Object
Deprecated.As of OpenSSO Express 8.0, usecom.sun.identity.entitlement
instead asEntitlement
has replacedPolicy
.This classValidValues
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 int
SIZE_LIMIT_EXCEEDED
Deprecated.Code used to indicate that the search was unsuccessful as the size limit exceeded during the search process.static int
SUCCESS
Deprecated.Code used to indicate a successful searchstatic int
TIME_LIMIT_EXCEEDED
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 aValidValues
givenerrorCode
and a set of values
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
getErrorCode()
Deprecated.Returns the error code of search.Set
getSearchResults()
Deprecated.Returns the search results as a set.
-
-
-
Field Detail
-
SUCCESS
public static final int SUCCESS
Deprecated.Code used to indicate a successful search- See Also:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
-
Constructor Detail
-
ValidValues
public ValidValues(int errorCode, Set results)
Deprecated.Constructs aValidValues
givenerrorCode
and a set of values- Parameters:
errorCode
- error coderesults
- set of values to be included- See Also:
SUCCESS
,SIZE_LIMIT_EXCEEDED
,TIME_LIMIT_EXCEEDED
-
-
Method Detail
-
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
andTIME_LIMIT_EXCEEDED
- See Also:
SUCCESS
,SIZE_LIMIT_EXCEEDED
,TIME_LIMIT_EXCEEDED
-
-