ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
com.adobe.livecycle.rca.service.core 

IReviewCommentingAndApprovalService  - AS3 Review, Commenting, and Approval

Packagecom.adobe.livecycle.rca.service.core
Interfacepublic interface IReviewCommentingAndApprovalService
Implementors ReviewCommentingAndApprovalService
Deprecated since Review, Commenting, and Approval 10: Please Use com.adobe.solutions.rca.service.IReviewCommentingAndApproval

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Defines core functionality for the Review Commenting and Approval building block.



Public Methods
 MethodDefined By
  
Adds an approver to an approval stage of an ongoing review.
IReviewCommentingAndApprovalService
  
addReviewer(reviewId:String, stageNo:int, domain:String, canonicalName:String, isOptional:Boolean = false):com.adobe.livecycle.rca.token:IAsyncToken
Adds a reviewer to a stage of an ongoing review.
IReviewCommentingAndApprovalService
  
This operation permanently deletes a review template.
IReviewCommentingAndApprovalService
  
Retrieves a document from the review zone.
IReviewCommentingAndApprovalService
  
Gets the context of a review for a specified revision.
IReviewCommentingAndApprovalService
  
Returns the original document, which is the document that was submitted for review when the review was initiated.
IReviewCommentingAndApprovalService
  
Returns the review document for a particular stage in a review.
IReviewCommentingAndApprovalService
  
Retrieves a review template.
IReviewCommentingAndApprovalService
  
This operation is the second level of the search API.
IReviewCommentingAndApprovalService
  
Retrieves the preferences of a user.
IReviewCommentingAndApprovalService
  
Initiates a review based on a specified review context.
IReviewCommentingAndApprovalService
  
Initiates a review based on a review context.
IReviewCommentingAndApprovalService
  
purgeReviews(listOfReviewIDs:Array, clearReviewZone:Boolean = false):com.adobe.livecycle.rca.token:IAsyncToken
Purges the review data using a specified list of review IDs.
IReviewCommentingAndApprovalService
  
Removes an approver from an approval stage of an ongoing review.
IReviewCommentingAndApprovalService
  
Removes a reviewer from a stage of an ongoing review.
IReviewCommentingAndApprovalService
  
This operation retrieves the audit configuration for the Review Commenting and Approval building block.
IReviewCommentingAndApprovalService
  
reviseReview(reviewId:String, stageNo:int, reviewDocument:DocumentReference, changeDescription:String):com.adobe.livecycle.rca.token:IAsyncToken
Revises either all or part of a review.
IReviewCommentingAndApprovalService
  
Revokes an ongoing review.
IReviewCommentingAndApprovalService
  
This operation searches the Review Commenting and Approval building block for reviews using a search filter.
IReviewCommentingAndApprovalService
  
This operation searches for review templates in the system.
IReviewCommentingAndApprovalService
  
Saves the user preferences.
IReviewCommentingAndApprovalService
  
storeReviewTemplate(reviewTemplate:ReviewContext, supportingDocList:Array = null, overWrite:Boolean = true):com.adobe.livecycle.rca.token:IAsyncToken
Stores a review template in the storage space provided by the Review Zone Provider service.
IReviewCommentingAndApprovalService
  
updateCustomAttributes(reviewId:String, revision:int, customAttributes:ArrayCollection, discardOld:Boolean = false):com.adobe.livecycle.rca.token:IAsyncToken
Updates the custom attributes of a review that can be searched.
IReviewCommentingAndApprovalService
  
updateReviewStageDuration(reviewId:String, stageNo:int, duration:int, durationUnit:String = "DAYS"):com.adobe.livecycle.rca.token:IAsyncToken
Updates the duration of an ongoing or future review stage.
IReviewCommentingAndApprovalService
Method Detail

addApprover

()method
public function addApprover(reviewId:String, stageNo:int, domain:String, canonicalName:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Adds an approver to an approval stage of an ongoing review. The approver is identified by domain name and canonical name.

Parameters

reviewId:String — The unique identifier of the review to add a new approver to. This operation works on the current revision of a review only.
 
stageNo:int — Stage number to add the approver to. Initial value is 1.
 
domain:String — Adobe User Management domain of the approver to add.
 
canonicalName:String — Adobe User Management canonical name of the approver to add.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

addReviewer

()method 
public function addReviewer(reviewId:String, stageNo:int, domain:String, canonicalName:String, isOptional:Boolean = false):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Adds a reviewer to a stage of an ongoing review. The reviewer is identified by domain name and canonical name.

Parameters

reviewId:String — The unique identifier of the review process to add a new reviewer to. This operation works on the current revision of the review only.
 
stageNo:int — The number of the review stage to add the reviewer to. Initial value is 1.
 
domain:String — Adobe User Management domain of the reviewer to add.
 
canonicalName:String — Adobe User Management canonical name of the reviewer to add.
 
isOptional:Boolean (default = false) — If the value is true, the added reviewer is an optional reviewer.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

deleteReviewTemplate

()method 
public function deleteReviewTemplate(templateName:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

This operation permanently deletes a review template. That is, the template cannot be used to initiate reviews in the system. Also, any ongoing review that was initiated using this template may fail and is not supported. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.success. The response is true if the operation is successful. If it not successful, it is false.

Parameters

templateName:String — Name of the review template to delete.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the success flag from the ResultEvent object. For example, use event.result.success.

getDocument

()method 
public function getDocument(reviewId:String, revision:int, documentPath:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Retrieves a document from the review zone. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.document. The response is a DocumentReference object.

Parameters

reviewId:String — The unique identifier of the review.
 
revision:int — The revision number of the review.
 
documentPath:String — The path of the document to retrieve. It begins with a forward slash, that is, "/", and uses UNIX format.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the success flag from the ResultEvent object. For example, use event.result.success.

Related API Elements

getReviewContext

()method 
public function getReviewContext(reviewId:String, revision:int):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Gets the context of a review for a specified revision. The context specifies the basic structure of the review. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.reviewContext. The response is a ReviewContext object.

Parameters

reviewId:String — The unique identifier of the review.
 
revision:int — The revision number of the review.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the ReviewContext object from ResultEvent. For example, use event.result.reviewContext.

Related API Elements

getReviewDocument

()method 
public function getReviewDocument(reviewId:String, revision:int):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Returns the original document, which is the document that was submitted for review when the review was initiated. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.reviewDocument. The response is a DocumentReference object.

Parameters

reviewId:String — The unique identifier of the review.
 
revision:int — The revision number of the review.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. You can extract the DocumentReference object from ResultEvent. For example, use event.result.reviewDocument.

Related API Elements

getReviewStageDocument

()method 
public function getReviewStageDocument(reviewId:String, revision:int, stageNo:int):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Returns the review document for a particular stage in a review. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.reviewStageDocument. The response is a DocumentReference object.

Parameters

reviewId:String — The unique identifier of the review to which the review document and stage belong.
 
revision:int — The revision number of the review to which the review document and stage belong.
 
stageNo:int — The number of the stage of the review to which the review document belongs.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the DocumentReference object from ResultEvent. For example, use event.result.reviewStageDocument.

Related API Elements

getReviewTemplate

()method 
public function getReviewTemplate(templateName:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Retrieves a review template. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.reviewTemplate. The response is a ReviewContext object.

Parameters

templateName:String — Name of the review template to retrieve.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. You can extract the ReviewContext object from ResultEvent. For example, use event.result.reviewTemplate.

Related API Elements

getRevisions

()method 
public function getRevisions(reviewId:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

This operation is the second level of the search API. It returns the details of a single review. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.reviewList. The response is a Review object that contains all the revisions for a specified review ID.

Parameters

reviewId:String — The unique identifier of the review process.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the Review object from ResultEvent. For example, use event.result.review.

Related API Elements

getUserPreference

()method 
public function getUserPreference(domain:String, canonicalName:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Retrieves the preferences of a user. The user is identified by its domain name and canonical name. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.userPreference. The response is a UserPreference object.

Parameters

domain:String — Adobe User Management domain of the user.
 
canonicalName:String — Adobe User Management canonical name of the user.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the UserPreference object from ResultEvent. For example, use event.result.userPreference.

Related API Elements

initiateReview

()method 
public function initiateReview(reviewContext:ReviewContext, reviewDocument:DocumentReference, supportingDocs:ArrayCollection = null):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Initiates a review based on a specified review context. The review ID of the review that is initiated can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.reviewId.

Parameters

reviewContext:ReviewContext — The review context object.
 
reviewDocument:DocumentReference — The document to review.
 
supportingDocs:ArrayCollection (default = null) — A list of supporting documents.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result.reviewId holds the identifier for the review.

Related API Elements

initiateReviewLongLived

()method 
public function initiateReviewLongLived(reviewContext:ReviewContext, reviewDocument:DocumentReference, supportingDocs:ArrayCollection = null):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Initiates a review based on a review context. To initiate the review, call a long-lived operation and include the context as a parameter. This is an asynchronous invocation. The response is the invocation ID only. The invocation ID of the process can be extracted from ResultEvent using a result handler or responder.

Parameters

reviewContext:ReviewContext — Review context object.
 
reviewDocument:DocumentReference — Document for review.
 
supportingDocs:ArrayCollection (default = null) — List of supporting documents.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result holds the identifer for the invocation.

Related API Elements

purgeReviews

()method 
public function purgeReviews(listOfReviewIDs:Array, clearReviewZone:Boolean = false):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Purges the review data using a specified list of review IDs. Only a user who is assigned the Review Commenting and Approval administrator role can call this API. If this API fails to purge any review with a particular review ID, a warning is printed in server logs and the API returns a list of the review IDs that were not purged. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.listOfFailedReviewIDs. The response is a collection of strings.

Parameters

listOfReviewIDs:Array — List of review IDs.
 
clearReviewZone:Boolean (default = false) — Specifies whether the corresponding review zone folder is also purged.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the list of review identifiers that could not be purged from ResultEvent. For example, use event.result.listOfFailedReviewIDs.

removeApprover

()method 
public function removeApprover(reviewId:String, stageNo:int, domain:String, canonicalName:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Removes an approver from an approval stage of an ongoing review. The approver is identified by domain name and canonical name.

Parameters

reviewId:String — The unique identifier of the review to add a new approver to. This operation works on the current revision of a review only.
 
stageNo:int — Number of the review stage to add the new approver to. Initial value is 1.
 
domain:String — Adobe User Management domain of the approver to add.
 
canonicalName:String — Adobe User Management canonical name of the approver to add.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

removeReviewer

()method 
public function removeReviewer(reviewId:String, stageNo:int, domain:String, canonicalName:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Removes a reviewer from a stage of an ongoing review. The reviewer is identified by domain name and canonical name.

Parameters

reviewId:String — The unique identifier of the review to remove the reviewer from.This operation works on the current revision of the review only.
 
stageNo:int — The number of the review stage to remove the reviewer from. Initial value is 1.
 
domain:String — Adobe User Management domain of the reviewer to remove.
 
canonicalName:String — Adobe User Management canonical name of the reviewer to remove.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

retrieveAuditConfig

()method 
public function retrieveAuditConfig():com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

This operation retrieves the audit configuration for the Review Commenting and Approval building block. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.auditLevelList. The response is a collection of AuditLevel objects.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract the collection of audit levels from ResultEvent. For example, use event.result.auditLevelList.

Related API Elements

reviseReview

()method 
public function reviseReview(reviewId:String, stageNo:int, reviewDocument:DocumentReference, changeDescription:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Revises either all or part of a review.

Parameters

reviewId:String — The unique identifier of the review.
 
stageNo:int — The number of the review stage where the revision starts. The initial value is 1. If blank, the entire review is revised.
 
reviewDocument:DocumentReference — The document to use as the review document for the revised review.
 
changeDescription:String — Text that describes how the review has changed or the reason for the revision.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

revokeReview

()method 
public function revokeReview(reviewId:String):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Revokes an ongoing review. It also recalls all the Workspace tasks for this review. For example, it recalls all review and approval tasks.

Parameters

reviewId:String — The unique identifier of the review.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

searchReviews

()method 
public function searchReviews(reviewSearchFilter:ReviewSearchFilter):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

This operation searches the Review Commenting and Approval building block for reviews using a search filter. The filter is an object of type com.adobe.livecycle.rca.model.ReviewSearchFilter. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.reviewList. The response is a collection of review objects that meet the criteria that are specified in the search filter.

Parameters

reviewSearchFilter:ReviewSearchFilter — An object of type com.adobe.livecycle.rca.model.ReviewSearchFilter. It filters the results of a search based on the attributes that are set in the object.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. You can extract a collection of Review objects from ResultEvent. For example, use event.result.reviewList.

Related API Elements

searchReviewTemplates

()method 
public function searchReviewTemplates(templateSearchFilter:com.adobe.livecycle.rca.model:TemplateSearchFilter):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

This operation searches for review templates in the system. It returns a list of template objects. The response of the call can be extracted from ResultEvent using a result handler or responder. The format of ResultEvent is event.result.templates. The response is a collection of ReviewTemplateReference objects.

Parameters

templateSearchFilter:com.adobe.livecycle.rca.model:TemplateSearchFilter — An object of type com.adobe.livecycle.rca.model.TemplateSearchFilter. It filters the result of the search based on the attributes that are set in the object.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you to register for the event. You can extract a collection of ReviewTemplateReference objects from ResultEvent. For example, use event.result.templates.

Related API Elements

setUserPreference

()method 
public function setUserPreference(domain:String, canonicalName:String, userPreference:UserPreference):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Saves the user preferences.

Parameters

domain:String — Adobe User Management domain of the user.
 
canonicalName:String — Adobe User Management canonical name of the user.
 
userPreference:UserPreference — User preference to save.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

Related API Elements

storeReviewTemplate

()method 
public function storeReviewTemplate(reviewTemplate:ReviewContext, supportingDocList:Array = null, overWrite:Boolean = true):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Stores a review template in the storage space provided by the Review Zone Provider service.

Parameters

reviewTemplate:ReviewContext — Specifies the review template to store.
 
supportingDocList:Array (default = null) — A list of documents that are used as supporting documents for a review. The documents can be PDF or a different format.
 
overWrite:Boolean (default = true) — A Boolean flag that indicates whether to overwrite any existing documents.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

updateCustomAttributes

()method 
public function updateCustomAttributes(reviewId:String, revision:int, customAttributes:ArrayCollection, discardOld:Boolean = false):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Updates the custom attributes of a review that can be searched.

Parameters

reviewId:String — The unique identifier of the review to update.
 
revision:int — The revision number of the review to update.
 
customAttributes:ArrayCollection — List of CustomAttribute objects.
 
discardOld:Boolean (default = false) — If the value is true, old custom attributes are discarded.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

Related API Elements

updateReviewStageDuration

()method 
public function updateReviewStageDuration(reviewId:String, stageNo:int, duration:int, durationUnit:String = "DAYS"):com.adobe.livecycle.rca.token:IAsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 9.5
Runtime Versions: Flash Player 9, Flash Player 10, AIR (unsupported)

Updates the duration of an ongoing or future review stage.

Parameters

reviewId:String — The unique identifier of the review that the stage duration to update belongs to. This operation works on the current revision of the review only.
 
stageNo:int — The number of the stage for which the duration is updated. The initial value is 1.
 
duration:int — New duration of the stage. For example, in days. The initial value is 1.
 
durationUnit:String (default = "DAYS") — The units for the duration.

Returns
com.adobe.livecycle.rca.token:IAsyncToken — A token that allows you register for the event. Add a listener for ResultEvent to detect if the call to the server is successful. The value of event.result is null, that is, it does not hold any information.

Related API Elements