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 IdSearchOpModifier
OR
The search modifier which willOR
all the search attribute-value pairs passed toIdSearchControl
-
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
-
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
-
-