Package oracle.as.scheduler
Class FailedExecutionResult
java.lang.Object
oracle.as.scheduler.FailedExecutionResult
- All Implemented Interfaces:
Serializable
Encapsulates the result of a failed execution attempt for a request.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic FailedExecutionResult
from
(CompositeData cd) Create an instance of the model specific class out of an associated CompositeData instance exclude from javadocgetCause()
The cause for this failed execution attempt.The name of the server that dispatched this execution attempt.The error type for this failed execution attempt.The stack trace of the error/warning that happened during this execution attempt.The message associated with an error/warning that occurred during this execution attempt.The time of error/warning occured during this execution attempt.The status of the request when the executable stage completed.int
The current execution attempt for this request.int
The set number assigned to the last subrequest submitted by this request during this execution attempt.int
The number of times this request was paused during this execution attempt.The action message returned by the post-processor for this request.The status returned by the post-processor for this request.The action message returned by the pre-processor for this request.The status returned by the pre-processor for this request.The time processing ended for this execution attempt.The name of the server that did the last processing for this execution attempt.The time processing started for this execution attempt.long
The request identifier associated with this execution attempt.The scheduled time of this execution attempt.getState()
The state for this failed execution attempt.The metadata id of the work assignment that handled this execution attempt.The metadata id of the workshift that handled this execution attempt.Convert an instance of this model specific type to a CompositeData.static CompositeType
Returns the CompositeType that describes this model specific class.Gets a debug string representation for this object.toString()
-
Method Details
-
getRequestId
public long getRequestId()The request identifier associated with this execution attempt.- Returns:
- request identifier.
-
getExecutionAttempt
public int getExecutionAttempt()The current execution attempt for this request. Execution attempts are numbered starting at 1.- Returns:
- number of this execution attempt
-
getState
The state for this failed execution attempt.- Returns:
- request state
-
getErrorType
The error type for this failed execution attempt. Note that the error type is only valid if the state isERROR
.- Returns:
- error type
-
getCause
The cause for this failed execution attempt.- Returns:
- the cause associated with the terminal state
-
getErrorWarningMessage
The message associated with an error/warning that occurred during this execution attempt.- Returns:
- value of the error/warning message
-
getErrorWarningTime
The time of error/warning occured during this execution attempt.- Returns:
- time of occurrence of error/warning
-
getErrorWarningDetail
The stack trace of the error/warning that happened during this execution attempt.- Returns:
- error/warning detail
-
getScheduledTime
The scheduled time of this execution attempt.- Returns:
- scheduled time
-
getProcessStart
The time processing started for this execution attempt.- Returns:
- process start time
-
getProcessEnd
The time processing ended for this execution attempt.- Returns:
- process end time
-
getDispatcher
The name of the server that dispatched this execution attempt.- Returns:
- dispatching server name
-
getProcessor
The name of the server that did the last processing for this execution attempt.- Returns:
- processing server name
-
getWorkAssignmentId
The metadata id of the work assignment that handled this execution attempt.- Returns:
- metadata id of processing work assignment
-
getWorkshiftId
The metadata id of the workshift that handled this execution attempt.- Returns:
- metadata id of processing workshift
-
getPausedCount
public int getPausedCount()The number of times this request was paused during this execution attempt.- Returns:
- the paused count for this request
-
getLastSubrequestSet
public int getLastSubrequestSet()The set number assigned to the last subrequest submitted by this request during this execution attempt.- Returns:
- the set number assigned to the last submitted subrequest
-
getPreProcessStatus
The status returned by the pre-processor for this request.- Returns:
- the pre-processor status
-
getPreProcessMessage
The action message returned by the pre-processor for this request.- Returns:
- the pre-processor action message
-
getPostProcessStatus
The status returned by the post-processor for this request.- Returns:
- the post-processor status
-
getPostProcessMessage
The action message returned by the post-processor for this request.- Returns:
- the post-processor action message
-
getExecutableStatus
The status of the request when the executable stage completed.- Returns:
- the executable stage state
-
toCompositeType
Returns the CompositeType that describes this model specific class. exclude from javadoc -
toCompositeData
Convert an instance of this model specific type to a CompositeData. This ensure that clients that do not have access to the model specific class can still use the MBean. The MXBean framework can perform this conversion automatically. However MXBeans are part of JDK 6.0 and AS11g is required to support JDK 5.0- Parameters:
ct
- This parameter is there only for future compatibility reasons with JDK 6.0. It can be ignored at this point. exclude from javadoc
-
from
Create an instance of the model specific class out of an associated CompositeData instance exclude from javadoc- Throws:
IllegalArgumentException
-
toDebugString
Gets a debug string representation for this object.- Returns:
- String debug representation. exclude from javadoc
-
toString
-