Package com.sun.identity.idm
Class IdSearchOpModifier
- java.lang.Object
-
- com.sun.identity.idm.IdSearchOpModifier
-
@SupportedAll public final class IdSearchOpModifier extends Object
This is a helper class which can be in conjunction with theIdSearchControl
class to make simple modifications to the basic search performed by each plugin. The two basic modifications allowed are OR and AND which are defined statically in this class.
-
-
Field Summary
Fields Modifier and Type Field Description static IdSearchOpModifier
AND
The search modifier which willAND
all the search attribute-value pairs passed toIdSearchControl
static int
AND_MOD
static int
NO_MOD
static IdSearchOpModifier
OR
The search modifier which willOR
all the search attribute-value pairs passed toIdSearchControl
static int
OR_MOD
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Returns true if the object being checked is the same as this current one.int
hashCode()
String
toString()
-
-
-
Field Detail
-
NO_MOD
public static final int NO_MOD
- See Also:
- Constant Field Values
-
OR_MOD
public static final int OR_MOD
- See Also:
- Constant Field Values
-
AND_MOD
public static final int AND_MOD
- See Also:
- Constant Field Values
-
OR
public static final IdSearchOpModifier OR
The search modifier which willOR
all the search attribute-value pairs passed toIdSearchControl
-
AND
public static final IdSearchOpModifier AND
The search modifier which willAND
all the search attribute-value pairs passed toIdSearchControl
-
-