Package oracle.as.scheduler
Interface AsyncRequestBeanRemote
- All Superinterfaces:
AsyncRequestBeanInterface
The remote interface for AsyncRequestBean.
Used to convey the final execution status of a remote asynchronous job.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setRequestStatus
(String context, String status, String statusMessage) Set the status of an ESS asynchronous java job.Methods inherited from interface oracle.as.scheduler.AsyncRequestBeanInterface
checkInCancelling, getContextFromString, setRequestStatus
-
Method Details
-
setRequestStatus
void setRequestStatus(String context, String status, String statusMessage) throws RuntimeServiceException, RequestNotFoundException Set the status of an ESS asynchronous java job.- Parameters:
context
- TheRequestExecutionContext
with which the request was started.status
- The status of the request.statusMessage
- An error message if the status is ERROR, a warning message if the status is WARNING, the paused state if the status is PAUSED. The value will be ignored if the status is SUCCESS or CANCEL.- Throws:
RequestNotFoundException
- If a request is not found for thecontext
.RuntimeServiceException
- if an error occurred.
-