Package oracle.iam.request.vo
Class RequestSearchCriteria
java.lang.Object
oracle.iam.request.vo.RequestSearchCriteria
- All Implemented Interfaces:
Serializable
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionCreate RequestSearchCriteria -
Method Summary
Modifier and TypeMethodDescriptionvoid
addExpression
(String paramName, Object paramVal, RequestSearchCriteria.Operator comparatorOp) Add an expression to the existing search criteriavoid
addExpression
(SearchCriteria newCrit, SearchCriteria.Operator op) Return the conjunction operatorvoid
Specify the conjunction operator to be used on search parameters.
-
Constructor Details
-
RequestSearchCriteria
- Throws:
RuntimeException
-
RequestSearchCriteria
Create RequestSearchCriteria- Parameters:
op
- Conjunction operator- Throws:
RequestServiceException
-
-
Method Details
-
getConjunctionOp
Return the conjunction operator- Returns:
-
setConjunctionOp
Specify the conjunction operator to be used on search parameters.- Parameters:
op
- , Allowed conjunction values are AND and OR- Throws:
RequestServiceException
-
addExpression
public void addExpression(String paramName, Object paramVal, RequestSearchCriteria.Operator comparatorOp) throws RequestServiceException Add an expression to the existing search criteria- Parameters:
paramName
- , Name of the parameter. Below is the list of allowed parameters-
REQUEST_KEY
, Request key (internal unique id) -
REQUEST_ID
, Request id (customized unique id) -
REQUEST_MODEL_NAME
, Request Model Name -
REQUEST_STATUS
, Request current status -
REQUEST_ENTITY_TYPE
, Entity type requested -
REQUEST_JUSTIFICATION
, Justification to raise the request -
REQUEST_EFFECTIVE_DATE
, Request effective date -
REQUEST_CREATION_DATE
, Returns all the requests that are created on or after this date -
REQUEST_END_DATE
, Returns all the requests that are created on or before this date -
REQUESTER_FIRST_NAME
, Requester first name -
REQUESTER_LAST_NAME
, Requester last name -
REQUESTER_USERID
, Requester login id -
REQUEST_BENEFICIARY_USERID
, Beneficiary login id -
REQUEST_BENEFICIARY_FIRST_NAME
, Beneficiary first name -
REQUEST_BENEFICIARY_LAST_NAME
, Beneficiary last name -
REQUEST_BENEFICIARY_LAST_NAME
, Beneficiary last name
-
paramVal
- - value of the parametercomparatorOp
- - allowed operators: Operator {AND, OR, NOT_CONTAIN, CONTAIN, NOT_END_WITH, END_WITH, NOT_PRESENT, PRESENT, BEGIN_WITH, NOT_BEGIN_WITH, EQUAL, NOT_EQUAL, AFTER, BEFORE, NOT_AFTER, NOT_BEFORE}- Throws:
RequestServiceException
-
addExpression
public void addExpression(SearchCriteria newCrit, SearchCriteria.Operator op) throws RequestServiceException - Throws:
RequestServiceException
-