Class FailedExecutionResult

java.lang.Object
oracle.as.scheduler.FailedExecutionResult
All Implemented Interfaces:
Serializable

public class FailedExecutionResult extends Object implements Serializable
Encapsulates the result of a failed execution attempt for a request.
See Also:
  • 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

      public State getState()
      The state for this failed execution attempt.
      Returns:
      request state
    • getErrorType

      public ErrorType getErrorType()
      The error type for this failed execution attempt. Note that the error type is only valid if the state is ERROR.
      Returns:
      error type
    • getCause

      public Cause getCause()
      The cause for this failed execution attempt.
      Returns:
      the cause associated with the terminal state
    • getErrorWarningMessage

      public String getErrorWarningMessage()
      The message associated with an error/warning that occurred during this execution attempt.
      Returns:
      value of the error/warning message
    • getErrorWarningTime

      public Calendar getErrorWarningTime()
      The time of error/warning occured during this execution attempt.
      Returns:
      time of occurrence of error/warning
    • getErrorWarningDetail

      public String getErrorWarningDetail()
      The stack trace of the error/warning that happened during this execution attempt.
      Returns:
      error/warning detail
    • getScheduledTime

      public Calendar getScheduledTime()
      The scheduled time of this execution attempt.
      Returns:
      scheduled time
    • getProcessStart

      public Calendar getProcessStart()
      The time processing started for this execution attempt.
      Returns:
      process start time
    • getProcessEnd

      public Calendar getProcessEnd()
      The time processing ended for this execution attempt.
      Returns:
      process end time
    • getDispatcher

      public String getDispatcher()
      The name of the server that dispatched this execution attempt.
      Returns:
      dispatching server name
    • getProcessor

      public String getProcessor()
      The name of the server that did the last processing for this execution attempt.
      Returns:
      processing server name
    • getWorkAssignmentId

      public MetadataObjectId getWorkAssignmentId()
      The metadata id of the work assignment that handled this execution attempt.
      Returns:
      metadata id of processing work assignment
    • getWorkshiftId

      public MetadataObjectId 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

      public String getPreProcessStatus()
      The status returned by the pre-processor for this request.
      Returns:
      the pre-processor status
    • getPreProcessMessage

      public String getPreProcessMessage()
      The action message returned by the pre-processor for this request.
      Returns:
      the pre-processor action message
    • getPostProcessStatus

      public String getPostProcessStatus()
      The status returned by the post-processor for this request.
      Returns:
      the post-processor status
    • getPostProcessMessage

      public String getPostProcessMessage()
      The action message returned by the post-processor for this request.
      Returns:
      the post-processor action message
    • getExecutableStatus

      public String getExecutableStatus()
      The status of the request when the executable stage completed.
      Returns:
      the executable stage state
    • toCompositeType

      public static CompositeType toCompositeType()
      Returns the CompositeType that describes this model specific class. exclude from javadoc
    • toCompositeData

      public CompositeData toCompositeData(CompositeType ct)
      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

      public String toDebugString()
      Gets a debug string representation for this object.
      Returns:
      String debug representation. exclude from javadoc
    • toString

      public String toString()
      Overrides:
      toString in class Object