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 theIdSearchControlclass 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 IdSearchOpModifierANDThe search modifier which willANDall the search attribute-value pairs passed toIdSearchControlstatic intAND_MODstatic intNO_MODstatic IdSearchOpModifierORThe search modifier which willORall the search attribute-value pairs passed toIdSearchControlstatic intOR_MOD
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Returns true if the object being checked is the same as this current one.inthashCode()StringtoString()
-
-
-
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 willORall the search attribute-value pairs passed toIdSearchControl
-
AND
public static final IdSearchOpModifier AND
The search modifier which willANDall the search attribute-value pairs passed toIdSearchControl
-
-