Package com.nuix.superutilities.cases
Class CaseLockedEventInfo
- java.lang.Object
-
- com.nuix.superutilities.cases.CaseLockedEventInfo
-
public class CaseLockedEventInfo extends java.lang.Object
This class is used to provide a callback information regarding a case encountered byBulkCaseProcessor
which was locked. This class also provides a way for that callback to instructBulkCaseProcessor
how to react to this.
-
-
Constructor Summary
Constructors Constructor Description CaseLockedEventInfo(CaseInfo lockedCaseInfo)
Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
abort()
NotifiesBulkCaseProcessor
that all further processing should be abortedCaseInfo
getCaseInfo()
Gets information related to case which was lockedCaseIssueReaction
getReaction()
Gets the reaction that should be taken to this case being lockedvoid
retry()
NotifiesBulkCaseProcessor
that it should try to open this case againvoid
setReaction(CaseIssueReaction reaction)
Sets the reaction that should be taken to this case being lockedvoid
skipCase()
NotifiesBulkCaseProcessor
that this case should be skipped in response
-
-
-
Constructor Detail
-
CaseLockedEventInfo
public CaseLockedEventInfo(CaseInfo lockedCaseInfo)
Creates a new instance- Parameters:
lockedCaseInfo
- Information about the case which was locked
-
-
Method Detail
-
getCaseInfo
public CaseInfo getCaseInfo()
Gets information related to case which was locked- Returns:
- Information related to case which was locked
-
getReaction
public CaseIssueReaction getReaction()
Gets the reaction that should be taken to this case being locked- Returns:
- The reaction to take
-
setReaction
public void setReaction(CaseIssueReaction reaction)
Sets the reaction that should be taken to this case being locked- Parameters:
reaction
- The reaction to take
-
skipCase
public void skipCase()
NotifiesBulkCaseProcessor
that this case should be skipped in response
-
retry
public void retry()
NotifiesBulkCaseProcessor
that it should try to open this case again
-
abort
public void abort()
NotifiesBulkCaseProcessor
that all further processing should be aborted
-
-