Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


oracle.as.scheduler
Enum RuntimeService.QueryField

java.lang.Object
  extended by java.lang.Enum<RuntimeService.QueryField>
      extended by oracle.as.scheduler.RuntimeService.QueryField

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RuntimeService.QueryField>
Enclosing interface:
RuntimeService

public static enum RuntimeService.QueryField
extends java.lang.Enum<RuntimeService.QueryField>

Field names to be used when querying the Runtime Store. ============================================================ PLEASE NOTE, each QueryField has a corresponding column in the REQEST_HISTORY_VIEW. This view is public to fusion schema. If you add or remove a QueryField, you must also modify the REQUEST_HISTORY_VIEW. And it will cause ESS schema version change. ============================================================


Enum Constant Summary
ABSPARENTID
          The absolute parent request id of a request.
APPLICATION
          The application name.
ASYNCHRONOUS
          Indicates if the job is asynchronous, synchronous or unknown.
CLASSNAME
          The name of the executable class that processes the request.
COMPLETED_TIME
          The date and time that ESS finished processing the request.
DEFINITION
          The job definition ID (Metadata Object ID).
ELAPSEDTIME
          The amount of time, in milliseconds, that elapsed while the request was running.
ENTERPRISE_ID
          The enterprise id.
ERROR_TYPE
          The request error type.
EXTERNAL_ID
          The identifier for an external portion of an Enterprise Scheduler asynchronous Java job.
INSTANCEPARENTID
          The request id of the instance parent request.
JOB_TYPE
          The Job type ID (Metadata Object ID).
NAME
          The request description.
PARENTREQUESTID
          The parent request ID.
PRIORITY
          The priority of the request.
PROCESS_PHASE
          The process phase of the request
PROCESSEND
          The date and time that the process ended.
PROCESSOR
          The name of the instance that processed a request.
PROCESSSTART
          The date and time that the process started.
PRODUCT
          The product name.
READYWAIT_TIME
          The amount of time, in milliseconds, a request has been waiting to run since it became READY.
REQUEST_CATEGORY
          The request category specified for the request.
REQUESTEDEND
          The requested end time.
REQUESTEDSTART
          The requested start time.
REQUESTID
          The request id of a submitted request.
REQUESTTRIGGER
          The Trigger ID (Metadata Object ID).
REQUESTTYPE
          The type of request (i.e.
RESULTINDEX
          Controls the starting and ending index of the returned results.
RETRIED_COUNT
          The retried count associated with a job.
SCHEDULE
          The Schedule ID (Metadata Object ID).
SCHEDULED
          The time when the request is scheduled to be executed.
STATE
          The job request state.
SUBMISSION
          The submission time of the request.
SUBMITTER
          The submitter of the request.
SUBMITTERGUID
          The submitterguid of the request.
TIMED_OUT
          Indicates whether the job has timed out.
TYPE
          The execution type of the request.
USERNAME
          The name of the user who submitted the request.
WAITTIME
          The amount of time, in milliseconds, a request has been waiting to run.
WORKASSIGNMENT
          The name of the work assignment that was active when the request was processed.

 

Method Summary
 java.lang.String fieldName()
          Returns the query field name.
 java.lang.String fieldType()
          Returns the query field datatype.
static RuntimeService.QueryField from(javax.management.openmbean.CompositeData cd)
           
 javax.management.openmbean.CompositeData toCompositeData(javax.management.openmbean.CompositeType ct)
           
static javax.management.openmbean.CompositeType toCompositeType()
          Returns the CompositeType that describes this model specific class
static RuntimeService.QueryField valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RuntimeService.QueryField[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

REQUESTID

public static final RuntimeService.QueryField REQUESTID
The request id of a submitted request.

The field datatype is java.lang.Long


ABSPARENTID

public static final RuntimeService.QueryField ABSPARENTID
The absolute parent request id of a request.

The field datatype is java.lang.Long


NAME

public static final RuntimeService.QueryField NAME
The request description.

The field datatype is java.lang.String


APPLICATION

public static final RuntimeService.QueryField APPLICATION
The application name.

The field datatype is java.lang.String


PRODUCT

public static final RuntimeService.QueryField PRODUCT
The product name.

The field datatype is java.lang.String


REQUEST_CATEGORY

public static final RuntimeService.QueryField REQUEST_CATEGORY
The request category specified for the request.

The field datatype is java.lang.String


USERNAME

public static final RuntimeService.QueryField USERNAME
The name of the user who submitted the request.

The field datatype is java.lang.String


TYPE

public static final RuntimeService.QueryField TYPE
The execution type of the request.

The field datatype is java.lang.String


DEFINITION

public static final RuntimeService.QueryField DEFINITION
The job definition ID (Metadata Object ID).

The field datatype is java.lang.String


STATE

public static final RuntimeService.QueryField STATE
The job request state.

The field datatype is java.lang.Integer


SCHEDULE

public static final RuntimeService.QueryField SCHEDULE
The Schedule ID (Metadata Object ID).

The field datatype is java.lang.String


REQUESTTRIGGER

public static final RuntimeService.QueryField REQUESTTRIGGER
The Trigger ID (Metadata Object ID).

The field datatype is java.lang.String


PRIORITY

public static final RuntimeService.QueryField PRIORITY
The priority of the request.

The field datatype is java.lang.Integer


PROCESSSTART

public static final RuntimeService.QueryField PROCESSSTART
The date and time that the process started.

The field datatype is java.util.Calendar


PROCESSEND

public static final RuntimeService.QueryField PROCESSEND
The date and time that the process ended.

The field datatype is java.util.Calendar


REQUESTEDSTART

public static final RuntimeService.QueryField REQUESTEDSTART
The requested start time.

The field datatype is java.util.Calendar


REQUESTEDEND

public static final RuntimeService.QueryField REQUESTEDEND
The requested end time.

The field datatype is java.util.Calendar


SUBMISSION

public static final RuntimeService.QueryField SUBMISSION
The submission time of the request.

The field datatype is java.util.Calendar


PARENTREQUESTID

public static final RuntimeService.QueryField PARENTREQUESTID
The parent request ID.

The field datatype is java.lang.Long


WORKASSIGNMENT

public static final RuntimeService.QueryField WORKASSIGNMENT
The name of the work assignment that was active when the request was processed.

The field datatype is java.lang.String


ELAPSEDTIME

public static final RuntimeService.QueryField ELAPSEDTIME
The amount of time, in milliseconds, that elapsed while the request was running. This will be (processend - processstart), if the request has completed, or (current time - processstart) if the request is still running.

The field datatype is java.lang.Long


WAITTIME

public static final RuntimeService.QueryField WAITTIME
The amount of time, in milliseconds, a request has been waiting to run. This will be (current time - scheduled time).

The field datatype is java.lang.Long


SCHEDULED

public static final RuntimeService.QueryField SCHEDULED
The time when the request is scheduled to be executed.

The field datatype is java.lang.Calendar


PROCESSOR

public static final RuntimeService.QueryField PROCESSOR
The name of the instance that processed a request.

The field datatype is java.lang.String


CLASSNAME

public static final RuntimeService.QueryField CLASSNAME
The name of the executable class that processes the request.

The field datatype is java.lang.String


SUBMITTER

public static final RuntimeService.QueryField SUBMITTER
The submitter of the request.

The field datatype is java.lang.String


SUBMITTERGUID

public static final RuntimeService.QueryField SUBMITTERGUID
The submitterguid of the request.

The field datatype is java.lang.String


INSTANCEPARENTID

public static final RuntimeService.QueryField INSTANCEPARENTID
The request id of the instance parent request.

The field datatype is java.lang.Long


REQUESTTYPE

public static final RuntimeService.QueryField REQUESTTYPE
The type of request (i.e. an element of RequestType)

The field datatype is java.lang.Integer


RESULTINDEX

public static final RuntimeService.QueryField RESULTINDEX
Controls the starting and ending index of the returned results. This allows users to express things such as "return only results 10 through 20".

The field datatype is java.lang.Integer


ERROR_TYPE

public static final RuntimeService.QueryField ERROR_TYPE
The request error type.

The field datatype is java.lang.Integer


PROCESS_PHASE

public static final RuntimeService.QueryField PROCESS_PHASE
The process phase of the request

The field datatype is java.lang.Integer


COMPLETED_TIME

public static final RuntimeService.QueryField COMPLETED_TIME
The date and time that ESS finished processing the request. This represents the time the process phase was set to Complete.

The field datatype is java.util.Calendar


RETRIED_COUNT

public static final RuntimeService.QueryField RETRIED_COUNT
The retried count associated with a job. This represents the number of times the job was retried.

The field datatype is java.lang.Integer


READYWAIT_TIME

public static final RuntimeService.QueryField READYWAIT_TIME
The amount of time, in milliseconds, a request has been waiting to run since it became READY. This will be (current time - ready time).

The field datatype is java.lang.Long


JOB_TYPE

public static final RuntimeService.QueryField JOB_TYPE
The Job type ID (Metadata Object ID).

The field datatype is java.lang.String


ENTERPRISE_ID

public static final RuntimeService.QueryField ENTERPRISE_ID
The enterprise id.

The field datatype is java.lang.Long


EXTERNAL_ID

public static final RuntimeService.QueryField EXTERNAL_ID
The identifier for an external portion of an Enterprise Scheduler asynchronous Java job. See SystemProperty.EXTERNAL_ID.

The field datatype is java.lang.String


TIMED_OUT

public static final RuntimeService.QueryField TIMED_OUT
Indicates whether the job has timed out. See SystemProperty.ASYNC_REQUEST_TIMEOUT.

The field datatype is java.lang.Boolean


ASYNCHRONOUS

public static final RuntimeService.QueryField ASYNCHRONOUS
Indicates if the job is asynchronous, synchronous or unknown.

The value of the field is not set until the request is processed.

The field datatype is java.lang.Boolean. The value may be NULL if the nature of the job has not yet been determined.

Method Detail

values

public static RuntimeService.QueryField[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RuntimeService.QueryField c : RuntimeService.QueryField.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RuntimeService.QueryField valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

fieldName

public java.lang.String fieldName()
Returns the query field name.

fieldType

public java.lang.String fieldType()
Returns the query field datatype.

toCompositeType

public static javax.management.openmbean.CompositeType toCompositeType()
Returns the CompositeType that describes this model specific class

toCompositeData

public javax.management.openmbean.CompositeData toCompositeData(javax.management.openmbean.CompositeType ct)

from

public static RuntimeService.QueryField from(javax.management.openmbean.CompositeData cd)
                                      throws java.lang.IllegalArgumentException
Throws:
java.lang.IllegalArgumentException

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


Copyright © 2008, 2012 Oracle. All rights reserved.