Search Reviews operation

Searches for reviews based on criteria provided.

For information about the General and Route Evaluation property groups, see Common operation properties .

Input properties

The input properties for the operation.

ReviewSearchFilterTO Instance

A ReviewSearchFilterTO value that contains the search criteria for retrieving a review. You cannot specify search criteria as a literal value.

Output properties

The output properties for the operation.

Search Result Document (XML)

A document value that specifies the search result as an XML file. The XML file contents conform to the building block Search Result schema. (See Search result schema in Review, Commenting, and Approval Building Block Technical Guide, or the ReviewCommentingAndApproval application in the resources/schemas folder.) The following XML code provides an example of the search results.

<?xml version="1.0" encoding="UTF-8"?> 
<SearchResult pageNumber="1" xmlns="http://adobe.com/solutions/rca/reviewcontext"> 
  <Review> 
    <ReviewTitle>Design for fast cars</ReviewTitle> 
    <ReviewId>R-20100917-072814-632-1072</ReviewId> 
    <CurrentRevision>2</CurrentRevision> 
    <StartDate>2010-09-17 07:28:23.023 -0700</StartDate> 
    <EndDate>2010-09-17 07:35:11.011 -0700</EndDate> 
    <InitiatorName>Akira Tanaka</InitiatorName> 
    <CurrentStatus>COMPLETED</CurrentStatus> 
    <CurrentStageName>Stage-3</CurrentStageName> 
    <CurrentStageNumber>3</CurrentStageNumber> 
    <TotalStages>3</TotalStages> 
  </Review> 
  <Review> 
    <ReviewTitle>Designs for environmentally friendly cars</ReviewTitle> 
    <ReviewId>R-20100919-033327-322-8730</ReviewId> 
    <CurrentRevision>1</CurrentRevision> 
    <StartDate>2010-09-19 03:33:28.028 -0700</StartDate> 
    <EndDate>2010-09-20 03:33:28.028 -0700</EndDate> 
    <InitiatorName>Tony Blue</InitiatorName> 
    <CurrentStatus>ONGOING</CurrentStatus> 
    <CurrentStageName>SerialReview</CurrentStageName> 
    <CurrentStageNumber>1</CurrentStageNumber> 
    <TotalStages>2</TotalStages> 
  </Review> 
</SearchResult>

Exceptions

This operation can throw a com.adobe.livecycle.rca.common.exception.RCAException exception.

// Ethnio survey code removed