Skip navigation links

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


Uses of Class
oracle.as.scheduler.MetadataObjectId

Packages that use MetadataObjectId
oracle.as.scheduler Enterprise Scheduler API interfaces and classes. 
oracle.as.scheduler.management   

 

Uses of MetadataObjectId in oracle.as.scheduler

 

Fields in oracle.as.scheduler declared as MetadataObjectId
protected  MetadataObjectId Diagnosis.m_workAssignment
           
protected  MetadataObjectId Diagnosis.m_workshift
           

 

Methods in oracle.as.scheduler that return MetadataObjectId
 MetadataObjectId MetadataService.addExclusionDefinition(MetadataServiceHandle handle, ExclusionsDefinition exclusion, java.lang.String packageName)
          Method to persist a Exclusion in to the scheduler metadata repository.
 MetadataObjectId MetadataService.addIncompatibility(MetadataServiceHandle handle, Incompatibility incompatibility, java.lang.String packageName)
          Method to persist an Incompatibility in the metadata repository.
 MetadataObjectId MetadataService.addJobDefinition(MetadataServiceHandle handle, JobDefinition jobDefn, java.lang.String packageName)
          Method to persist a JobDefinition in to the scheduler metadata repository.
 MetadataObjectId MetadataService.addJobSet(MetadataServiceHandle handle, JobSet jobset, java.lang.String packageName)
          Method to persist a JobSet in to the scheduler metadata repository.
 MetadataObjectId MetadataService.addJobType(MetadataServiceHandle handle, JobType jobType, java.lang.String packageName)
          Method to persist a JobType in the metadata repository.
 MetadataObjectId MetadataService.addScheduleDefinition(MetadataServiceHandle handle, Schedule schedule, java.lang.String packageName)
          Method to persist a Schedule in to the scheduler metadata repository.
 MetadataObjectId MetadataService.addTrigger(MetadataServiceHandle handle, Trigger trigger, java.lang.String packageName)
          Method to persist a Trigger in to the scheduler metadata repository.
 MetadataObjectId MetadataService.copyExclusionDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a Exclusion to another with the given name.
 MetadataObjectId MetadataService.copyIncompatibility(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone an Incompatibility to another with the given name.
 MetadataObjectId MetadataService.copyJobDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a JobDefinition to another with the given name.
 MetadataObjectId MetadataService.copyJobSet(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a JobSet to another with the given name.
 MetadataObjectId MetadataService.copyJobType(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a JobType to another with the given name.
 MetadataObjectId MetadataService.copyScheduleDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a Schedule to another with the given name.
 MetadataObjectId MetadataService.copyTrigger(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a Trigger to another with the given name.
static MetadataObjectId MetadataObjectId.createMetadataObjectId(MetadataObjectId.MetadataObjectType type, java.lang.String packageName, java.lang.String name)
          Creates an instance of a MetadataObjectId from the given individual parts.
static MetadataObjectId MetadataObjectId.from(javax.management.openmbean.CompositeData cd)
          Create an instance of the model specific class out of an associated CompositeData instance
 MetadataObjectId RequestSummary.getDefinition()
          Gets the associated job / job set definition.
 MetadataObjectId IncompatibleEntity.getEntity()
          Returns the unique identifier for the JobDefinition or JobSet for this incompatible entity.
 MetadataObjectId RequestDetail.getJobDefn()
          Returns the job or job set definition identifier associated with this request.
 MetadataObjectId JobSetStep.getJobId()
          Gets the job id for this step.
 MetadataObjectId JobDefinition.getJobType()
          Method to retrieve the name of the JobType definition for this JobDefinition instance.
 MetadataObjectId RequestDetail.getJobType()
          Returns the job type identifier associated with this request.
 MetadataObjectId BaseMetadata.getMetadataObjectId()
          Retrieves the unique identifier of this object within the metadata repository.
 MetadataObjectId MetadataNotFoundException.getObjectId()
          Retrieve the MetadataObjectId that could not be found.
 MetadataObjectId RequestDetail.getProcessingWorkAssignment()
          Returns the work assignment that was active on the request processor when the request was processed.
 MetadataObjectId RequestDetail.getProcessingWorkshift()
          Returns the work shift that was active on the request processor when the request was processed.
 MetadataObjectId Workshift.getSchedule()
          Returns the MetadataObjectId for the Schedule associated with this workshift.
 MetadataObjectId RequestDetail.getScheduleDefn()
          Returns the schedule definition identifier associated with this request.
 MetadataObjectId RequestDetail.getTriggerDefn()
          Returns the trigger definition identifier associated with this request.
 MetadataObjectId Diagnosis.getWorkAssignment()
          Gets the metadata id of a work assignment that could process the request.
 MetadataObjectId FailedExecutionResult.getWorkAssignmentId()
          Returns the id of the work assignment that handled this execution attempt.
 MetadataObjectId Diagnosis.getWorkshift()
          Gets the metadata id of a workshift for the diagnosis.
 MetadataObjectId FailedExecutionResult.getWorkshiftId()
          Returns the id of the workshift that handled this execution attempt.

 

Methods in oracle.as.scheduler that return types with arguments of type MetadataObjectId
 java.util.Collection<MetadataObjectId> Schedule.getExclusions()
          Returns the list of ExclusionsDefinition instance this object refers.
 java.util.Collection<MetadataObjectId> WorkAssignment.getWorkshifts()
          Returns the workshifts that are associated with this WorkAssignment.
 java.util.Enumeration<MetadataObjectId> MetadataService.queryExclusionDefinitions(MetadataServiceHandle handle, Filter filter, MetadataService.QueryField orderBy, boolean ascending)
          Method to query Exclusions that exist in the scheduler metadata repository.
 java.util.Enumeration<MetadataObjectId> MetadataService.queryIncompatibilities(MetadataServiceHandle handle, Filter filter, MetadataService.QueryField orderBy, boolean ascending)
          Method to query Incompatibilities that exist in the metadata repository.
 java.util.Enumeration<MetadataObjectId> MetadataService.queryJobDefinitions(MetadataServiceHandle handle, Filter filter, MetadataService.QueryField orderBy, boolean ascending)
          Method to query JobDefinition objects that exist in the scheduler metadata repository.
 java.util.Enumeration<MetadataObjectId> MetadataService.queryJobSets(MetadataServiceHandle handle, Filter filter, MetadataService.QueryField orderBy, boolean ascending)
          Method to query JobSets that exist in the scheduler metadata repository.
 java.util.Enumeration<MetadataObjectId> MetadataService.queryJobTypes(MetadataServiceHandle handle, Filter filter, MetadataService.QueryField orderBy, boolean ascending)
          Method to query JobTypes.
<METADATA_TYPE extends BaseMetadata<METADATA_TYPE>>
java.util.List<MetadataObjectId>
MetadataService.queryMetadata(MetadataServiceHandle handle, BaseMetadataType<METADATA_TYPE> metadataType, MetadataQueryFilter<METADATA_TYPE> queryFilter, MetadataQueryField orderBy, boolean ascending)
          A generic query mechanism for any type of metadata.
 java.util.Enumeration<MetadataObjectId> MetadataService.querySchedules(MetadataServiceHandle handle, Filter filter, MetadataService.QueryField orderBy, boolean ascending)
          Method to query Schedules that exist in the scheduler metadata repository.
 java.util.Enumeration<MetadataObjectId> MetadataService.queryTriggers(MetadataServiceHandle handle, Filter filter, MetadataService.QueryField orderBy, boolean ascending)
          Method to query Triggers that exist in the scheduler metadata repository.

 

Methods in oracle.as.scheduler with parameters of type MetadataObjectId
 void Incompatibility.addEntity(MetadataObjectId entity, boolean selfIncompatible)
          Adds an incompatibility entity to this object.
 void Incompatibility.addEntity(MetadataObjectId entity, java.lang.String property, boolean selfIncompatible)
          Adds an incompatibility entity to this object.
 void Schedule.addExclusion(MetadataObjectId objectId)
          Adds a reference of an instance of ExclusionsDefinition in this Schedule object.
 void WorkAssignment.addWorkshift(MetadataObjectId objectId)
          Adds a workshift to this WorkAssignment.
 MetadataObjectId MetadataService.copyExclusionDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a Exclusion to another with the given name.
 MetadataObjectId MetadataService.copyIncompatibility(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone an Incompatibility to another with the given name.
 MetadataObjectId MetadataService.copyJobDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a JobDefinition to another with the given name.
 MetadataObjectId MetadataService.copyJobSet(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a JobSet to another with the given name.
 MetadataObjectId MetadataService.copyJobType(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a JobType to another with the given name.
 MetadataObjectId MetadataService.copyScheduleDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a Schedule to another with the given name.
 MetadataObjectId MetadataService.copyTrigger(MetadataServiceHandle handle, MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Method to clone a Trigger to another with the given name.
 void MetadataService.deleteExclusionDefinition(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method delete a Exclusion from the scheduler metadata repository.
 void MetadataService.deleteIncompatibility(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method delete an Incompatibility from the metadata repository.
 void MetadataService.deleteJobDefinition(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method delete a JobDefinition from the scheduler metadata repository.
 void MetadataService.deleteJobSet(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method delete a JobSet from the scheduler metadata repository.
 void MetadataService.deleteJobType(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method delete a JobType from the scheduler metadata repository.
 void MetadataService.deleteScheduleDefinition(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method delete a Schedule from the scheduler metadata repository.
 void MetadataService.deleteTrigger(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method delete a Trigger from the scheduler metadata repository.
 IncompatibleEntity Incompatibility.getEntity(MetadataObjectId entity)
          Returns information for an incompatibility entity associated with this incompatibility definition.
 ExclusionsDefinition MetadataService.getExclusionDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, boolean forUpdate)
          Method to retrieve a Exclusion from the scheduler metadata repository.
 ExclusionsDefinition[] MetadataService.getExclusionDefinitions(MetadataServiceHandle handle, MetadataObjectId[] objectIds, boolean forUpdate)
          Method to retrieve an array of Exclusions from the scheduler metadata repository.
 java.util.Collection<Incompatibility> MetadataService.getIncompatibilities(MetadataServiceHandle handle, MetadataObjectId entity)
          Deprecated. 
 Incompatibility[] MetadataService.getIncompatibilities(MetadataServiceHandle handle, MetadataObjectId[] objectIds, boolean forUpdate)
          Method to retrieve an array of Incompatibilities from the scheduler metadata repository.
 Incompatibility MetadataService.getIncompatibility(MetadataServiceHandle handle, MetadataObjectId objectId, boolean forUpdate)
          Method to retrieve an Incompatibility from the metadata repository.
 JobDefinition MetadataService.getJobDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, boolean forUpdate)
          Method to retrieve a JobDefinition from the scheduler metadata repository.
 JobDefinition[] MetadataService.getJobDefinitions(MetadataServiceHandle handle, MetadataObjectId[] objectIds, boolean forUpdate)
          Method to retrieve an array of JobDefinitions from the scheduler metadata repository.
 JobSet MetadataService.getJobSet(MetadataServiceHandle handle, MetadataObjectId objectId, boolean forUpdate)
          Method to retrieve a JobSet from the scheduler metadata repository.
 JobSet[] MetadataService.getJobSets(MetadataServiceHandle handle, MetadataObjectId[] objectIds, boolean forUpdate)
          Method to retrieve an array of JobSets from the scheduler metadata repository.
 JobType MetadataService.getJobType(MetadataServiceHandle handle, MetadataObjectId objectId, boolean forUpdate)
          Method to retrieve a JobType from the scheduler metadata repository.
 JobType[] MetadataService.getJobTypes(MetadataServiceHandle handle, MetadataObjectId[] objectIds, boolean forUpdate)
          Method to retrieve an array of JobTypes from the scheduler metadata repository.
<METADATA_TYPE extends BaseMetadata<METADATA_TYPE>>
METADATA_TYPE
MetadataService.getMetadata(MetadataServiceHandle handle, BaseMetadataType<METADATA_TYPE> metadataType, MetadataObjectId metadataObjectId, boolean forUpdate)
          A generic getter for any type of metadata.
 Schedule MetadataService.getScheduleDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, boolean forUpdate)
          Method to retrieve a Schedule from the scheduler metadata repository.
 Schedule[] MetadataService.getScheduleDefinitions(MetadataServiceHandle handle, MetadataObjectId[] objectIds, boolean forUpdate)
          Method to retrieve an array of Schedules from the scheduler metadata repository.
 Trigger MetadataService.getTrigger(MetadataServiceHandle handle, MetadataObjectId objectId, boolean forUpdate)
          Method to retrieve a Trigger from the scheduler metadata repository.
 Trigger[] MetadataService.getTriggers(MetadataServiceHandle handle, MetadataObjectId[] objectIds, boolean forUpdate)
          Method to retrieve an array of Triggers from the scheduler metadata repository.
 boolean MetadataService.hasPermission(MetadataServiceHandle handle, MetadataObjectId objectId, MetadataPermission.Action... actions)
          Method to check if the current user has permission to perform an action on a given metadata object.
 boolean MetadataService.isInCustomMDSNamespace(MetadataServiceHandle handle, MetadataObjectId objectId)
          Method to check whether the namespace of the objectId matches with the custom MDS namespace.
<T extends BaseMetadata<T>>
void
BaseMetadataType.onAdd(MetadataObjectId objectId, T baseMetadata, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
<T extends BaseMetadata<T>>
void
BaseMetadataType.WorkshiftType.onAdd(MetadataObjectId objectId, T baseMetadata, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
 void BaseMetadataType.onDelete(MetadataObjectId objectId, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
 void BaseMetadataType.WorkshiftType.onDelete(MetadataObjectId objectId, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
<T extends BaseMetadata<T>>
void
BaseMetadataType.onUpdate(MetadataObjectId objectId, T baseMetadata, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
<T extends BaseMetadata<T>>
void
BaseMetadataType.WorkshiftType.onUpdate(MetadataObjectId objectId, T baseMetadata, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
 void Incompatibility.removeEntity(MetadataObjectId entity)
          Removes the specified entity from this incompatibility definition.
 void Schedule.removeExclusion(MetadataObjectId objectId)
          Removes the given reference of ExclusionsDefinition from this Schedule object.
 void WorkAssignment.removeWorkshift(MetadataObjectId objectId)
          Removes a workshift from this WorkAssignment.
 void RuntimeService.replaceSchedule(RuntimeServiceHandle handle, long requestId, MetadataObjectId scheduleId)
          Replace the current schedule for a request that has already been submitted.
 void RuntimeService.replaceSchedule(RuntimeServiceHandle handle, long requestId, MetadataObjectId scheduleId, Schedule schedule, java.util.Calendar start, java.util.Calendar end)
          Replace the current schedule for a request that has already been submitted with a schedule.
protected  void Diagnosis.setExtras(java.util.Calendar scheduledTime, java.lang.String requestedProcessor, java.lang.String isolationGroup, java.lang.String processGroup, java.lang.String application, MetadataObjectId workAssignment, MetadataObjectId workshift, long parentRequestId, long blockingRequestId, long subRequestId, Diagnosis.AsyncExecutionType asyncExecType, int asyncLimit, boolean hasDisabledUpdateEvents)
          Sets all the optional information in the Diagnosis.
 void JobSetStep.setJobId(MetadataObjectId jobId)
          Sets the jobId for this step.
 void Workshift.setSchedule(MetadataObjectId schedule)
          Sets the Schedule for this Workshift.
 long RuntimeService.submitRequest(RuntimeServiceHandle handle, RequestExecutionContext context, java.lang.String description, MetadataObjectId definition, RequestParameters parameters)
          Submits a sub-request.
 long RuntimeService.submitRequest(RuntimeServiceHandle handle, java.lang.String description, MetadataObjectId definition, java.util.Calendar start, RequestParameters parameters)
          Creates a new job request using metadata definition of the job to run once on a specific time.
 long RuntimeService.submitRequest(RuntimeServiceHandle handle, java.lang.String description, MetadataObjectId definition, MetadataObjectId trigger, java.util.Calendar start, java.util.Calendar end, RequestParameters parameters)
          Creates a new job request using metadata definitions of the job and associated trigger
 long RuntimeService.submitRequest(RuntimeServiceHandle handle, java.lang.String description, MetadataObjectId definition, MetadataObjectId schedule, MetadataObjectId trigger, java.util.Calendar start, java.util.Calendar end, RequestParameters parameters)
          Creates a new job request using metadata definitions of the job, schedule and associated trigger.
 long RuntimeService.submitRequest(RuntimeServiceHandle handle, java.lang.String description, MetadataObjectId definition, Schedule schedule, Trigger trigger, java.util.Calendar start, java.util.Calendar end, RequestParameters parameters)
          Adhoc job request submission using job definition from metadata.
 void MetadataService.updateExclusionDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, ExclusionsDefinition exclusion)
          Method to update a given Exclusion.
 void MetadataService.updateIncompatibility(MetadataServiceHandle handle, MetadataObjectId objectId, Incompatibility incompatibility)
          Method to update a given Incompatibility.
 void MetadataService.updateJobDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, JobDefinition jobDefn)
          Method to update a given JobDefinition.
 void MetadataService.updateJobSet(MetadataServiceHandle handle, MetadataObjectId objectId, JobSet jobset)
          Method to update a given JobSet.
 void MetadataService.updateJobType(MetadataServiceHandle handle, MetadataObjectId objectId, JobType jobType)
          Method to update a given JobType.
 void MetadataService.updateScheduleDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, Schedule schedule)
          Method to update a given Schedule.
 void MetadataService.updateTrigger(MetadataServiceHandle handle, MetadataObjectId objectId, Trigger trigger)
          Method to update a given Trigger.
 void BaseMetadataType.vetoCustomize(MetadataObjectId objectId, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
 void BaseMetadataType.vetoDelete(MetadataObjectId objectId, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
 void BaseMetadataType.WorkAssignmentType.vetoDelete(MetadataObjectId objectId, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
<T extends BaseMetadata<T>>
void
BaseMetadataType.vetoUpdate(MetadataObjectId objectId, T metadata, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           
<T extends BaseMetadata<T>>
void
BaseMetadataType.WorkAssignmentType.vetoUpdate(MetadataObjectId objectId, T metadata, oracle.as.scheduler.localization.EssMessages messages, oracle.as.scheduler.localization.EssMessages logger)
           

 

Method parameters in oracle.as.scheduler with type arguments of type MetadataObjectId
 void WorkAssignment.addWorkshifts(java.util.Collection<MetadataObjectId> objectIds)
          Adds a list of workshifts to this WorkAssignment.

 

Constructors in oracle.as.scheduler with parameters of type MetadataObjectId
BaseMetadata(java.lang.String name, java.lang.String displayName, java.lang.String description, MetadataObjectId metadataObjectId)
           
BaseMetadata(java.lang.String name, java.lang.String displayNameKey, java.lang.String descriptionKey, MetadataObjectId metadataObjectId, java.lang.String[] resourceBundles)
           
ExclusionsDefinition(java.lang.String name, java.lang.String description, java.util.Collection<Exclusion> exclusions, MetadataObjectId objectId)
          Constructs a new instance.
FailedExecutionResult(long requestId, int executionAttempt, State state, ErrorType errorType, Cause cause, java.lang.String errorWarningMessage, java.util.Calendar errorWarningTime, java.lang.String errorWarningDetail, java.util.Calendar scheduledTime, java.util.Calendar processStart, java.util.Calendar processEnd, java.lang.String dispatcher, java.lang.String processor, MetadataObjectId workAssignmentId, MetadataObjectId workshiftId, int pausedCount, int lastSubrequestSet, java.lang.String preprocessStatus, java.lang.String preprocessMessage, java.lang.String postprocessStatus, java.lang.String postprocessMessage, java.lang.String executableStatus)
          Constructs a new instance with complete information from a failed execution attempt.
Incompatibility(java.lang.String name, java.lang.String description, Incompatibility.IncompatibilityType type, MetadataObjectId objectId)
          Constructs a new instance.
IncompatibleEntity(MetadataObjectId entity, boolean selfIncompatible)
          Creates a new incompatibility entity.
IncompatibleEntity(MetadataObjectId entity, java.lang.String property, boolean selfIncompatible)
          Creates a new incompatibility entity.
JobDefinition(java.lang.String name, MetadataObjectId jobType)
          Constructor with name and JobType.
JobDefinition(java.lang.String name, MetadataObjectId jobType, MetadataObjectId objectId)
          Constructs a new instance.
JobDefinition(java.lang.String name, MetadataObjectId jobType, java.lang.String description, ParameterList parameters)
          Constructor to create a fully populated JobDefinition.
JobDefinition(java.lang.String name, MetadataObjectId jobType, java.lang.String displayNameKey, java.lang.String descriptionKey, ParameterList parameters, java.lang.String[] resourceBundleIDs)
          Constructor to create a fully populated JobDefinition.
JobSet(java.lang.String name, java.lang.String description, JobSet.ExecutionMode mode, MetadataObjectId objectId)
          Constructs a JobSet.
JobSet(java.lang.String name, java.lang.String displayName, java.lang.String description, JobSet.ExecutionMode mode, MetadataObjectId objectId)
          Constructs a JobSet.
JobSetStep(java.lang.String stepId, MetadataObjectId jobId)
          Constructs a JobSetStep.
JobSetStep(java.lang.String stepId, MetadataObjectId jobId, ParameterList stepParams)
          Constructs a JobSetStep.
JobType(java.lang.String name, JobType.ExecutionType executionType, MetadataObjectId objectId)
          Creates a new instance with the given name and execution type.
MetadataNotFoundException(java.lang.String msg, MetadataObjectId objectId)
          Constructor with a detailed message.
MetadataNotFoundException(java.lang.String msg, java.lang.Throwable cause, MetadataObjectId objectId)
          Constructor with a detailed message and underlying cause.
MetadataNotFoundException(java.lang.Throwable cause, MetadataObjectId objectId)
          Constructor with the underlying cause.
RequestDetail(long requestId, java.lang.String descr, MetadataObjectId jobDefnId, boolean isCancellable, boolean isHoldable, java.lang.String submitter, java.lang.String submitterGuid, java.lang.String runAsUser, java.util.Calendar scheduledTime, State state, ErrorType errorType, java.lang.String type, java.lang.String requestCategory, java.util.Calendar processStart, java.util.Calendar processEnd, long parentID, int priority, long absoluteParentId, java.lang.String application, java.lang.String deployedApplication, RequestType requestType, java.util.Calendar submission, long instanceParentId, java.lang.String ecid, java.lang.String product, ProcessPhase processPhase, long lastScheduleInstanceId, java.util.Calendar completedTime, long elapsedTime, int retried, MetadataObjectId jobTypeId, long enterpriseId, java.lang.String processGroup, java.lang.String processingProcessor, java.lang.Boolean isAsynchronous, boolean isRequestTimedOut, int parentExecAttempt, int instanceParentExecAttempt, int pausedCount, int lastSubrequestSet, int subrequestSet)
          Deprecated. 
RequestDetail(long requestId, java.lang.String descr, MetadataObjectId jobDefnId, MetadataObjectId scheduleDefnId, MetadataObjectId triggerDefnId, java.lang.String processingDispatcher, java.lang.String processingProcessor, MetadataObjectId processingWorkAssignmentId, MetadataObjectId processingWorkShiftId, boolean isCancellable, boolean isHoldable, int retried, int executionAttempt, java.lang.String submitter, java.lang.String submitterGuid, java.lang.String runAsUser, java.util.Calendar requestedStartTime, java.util.Calendar requestedEndTime, java.util.Calendar scheduledTime, State state, ErrorType errorType, int priority, java.lang.String type, java.lang.String requestCategory, java.util.Calendar submission, java.util.Calendar processStart, java.util.Calendar processEnd, java.util.Calendar expiration, Cause cause, long parentID, java.lang.String stepID, RequestParameters reqParams, Schedule schedule, Trigger trigger, org.w3c.dom.Document triggerState, long absoluteParentId, java.lang.String application, java.lang.String deployedApplication, RequestType requestType, long instanceParentId, java.lang.String errorWarningMessage, java.util.Calendar errorWarningTime, java.lang.String errorWarningDetail, java.lang.String ecid, java.lang.String product, ProcessPhase processPhase, long lastScheduleInstanceId, java.util.Calendar completedTime, long elapsedTime, MetadataObjectId jobTypeId, long enterpriseId, java.lang.String processGroup, java.lang.Boolean isAsynchronous, boolean isRequestTimedOut, int parentExecAttempt, int instanceParentExecAttempt, int pausedCount, int lastSubrequestSet, int subrequestSet, java.lang.String preProcessStatus, java.lang.String preProcessMessage, java.lang.String postProcessStatus, java.lang.String postProcessMessage, java.lang.String executableStatus)
          Deprecated. 
RequestSummary(MetadataObjectId id, java.lang.String application, java.lang.String deployedApplication, int succeeded, int warning, int failed, int cancelled, long minElapsed, long maxElapsed, long avgElapsed, long totalElapsed, java.util.Calendar date, long reqid)
           
Schedule(java.lang.String name, java.lang.String description, java.util.Collection<ExplicitDate> dates, MetadataObjectId objectId)
          Constructs a new schedule with the given set of explicit dates.
Schedule(java.lang.String name, java.lang.String description, Recurrence recur, MetadataObjectId objectId)
          Constructs a new instance with the given recurrence.
Trigger(java.lang.String name, java.lang.String description, org.w3c.dom.Document expression, Filter[] filters, MetadataObjectId objectId)
          INTERNAL USE ONLY Constructs a new instance
WorkAssignment(java.lang.String name, java.lang.String description, MetadataObjectId objectId)
          Constructor with the name and description.
Workshift(java.lang.String name, java.lang.String description, MetadataObjectId schedule, int duration, int allocation)
          Creates a Workshift definition with no async limits.
Workshift(java.lang.String name, java.lang.String description, MetadataObjectId schedule, int duration, int allocation, int plsqlLimit, int asyncJavaLimit)
          Creates a fully-defined Workshift definition.
Workshift(java.lang.String name, java.lang.String description, MetadataObjectId schedule, int duration, int allocation, int plsqlLimit, int asyncJavaLimit, MetadataObjectId objectId)
          Constructs a new instance.
Workshift(java.lang.String name, java.lang.String description, MetadataObjectId schedule, int duration, int allocation, MetadataObjectId objectId)
          Constructs a new instance.
Workshift(java.lang.String name, java.lang.String displayNameKey, java.lang.String descriptionKey, MetadataObjectId schedule, int duration, int allocation, int plsqlLimit, int asyncJavaLimit, java.lang.String[] resourceBundleIDs)
          Creates a fully-defined Workshift definition and associated resource bundles.
Workshift(java.lang.String name, java.lang.String displayNameKey, java.lang.String descriptionKey, MetadataObjectId schedule, int duration, int allocation, java.lang.String[] resourceBundleIDs)
          Creates a Workshift definition with no async limits and with associated resource bundles.

 

Constructor parameters in oracle.as.scheduler with type arguments of type MetadataObjectId
WorkAssignment(java.lang.String name, java.lang.String description, org.w3c.dom.Document specialization, java.util.Collection<MetadataObjectId> workshifts, boolean active)
          Constructor to create a fully-defined WorkAssignment.
WorkAssignment(java.lang.String name, java.lang.String displayNameKey, java.lang.String descriptionKey, org.w3c.dom.Document specialization, java.util.Collection<MetadataObjectId> workshifts, boolean active, java.lang.String[] resourceBundleIDs)
          Constructor to create a fully-defined WorkAssignment and associated resource bundles.

 

Uses of MetadataObjectId in oracle.as.scheduler.management

 

Methods in oracle.as.scheduler.management that return MetadataObjectId
 MetadataObjectId MetadataServiceMXBeanProxy.addExclusionDefinition(ExclusionsDefinition exclusion, java.lang.String application, java.lang.String packageName)
          Creates an Exclusion definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addIncompatibility(Incompatibility incompatibility, java.lang.String application, java.lang.String packageName)
          Method to persist a Incompatibility definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addJobDefinition(JobDefinition jobDefn, java.lang.String application, java.lang.String packageName)
          Creates a JobDefinition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addJobSet(JobSet jobset, java.lang.String application, java.lang.String packageName)
          Method to persist a JobSet definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addJobType(JobType jobType, java.lang.String application, java.lang.String packageName)
          Creates a JobType definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addScheduleDefinition(Schedule schedule, java.lang.String application, java.lang.String packageName)
          Creates a Schedule definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addTrigger(Trigger trigger, java.lang.String application, java.lang.String packageName)
          Creates a Trigger definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addWorkAssignment(WorkAssignment workAssignment, java.lang.String packageName)
          Creates a WorkAssignment definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.addWorkshift(Workshift workshift, java.lang.String packageName)
          Creates a Workshift definition in to the scheduler metadata repository.
 MetadataObjectId MetadataServiceMXBeanProxy.copyExclusionDefinition(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies an ExclusionsDefinition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyIncompatibility(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a Incompatibility definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyJobDefinition(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a JobDefinition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyJobSet(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a JobSet definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyJobType(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a JobType definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyScheduleDefinition(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a Schedule definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyTrigger(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a Trigger definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyWorkAssignment(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Copies a WorkAssignment definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyWorkshift(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Copies a Workshift definition to another with the given name.
 MetadataObjectId ProcessorMXBeanProxy.getDefaultWorkAssignmentId()
          Returns the metadata id of the default work assignment.

 

Methods in oracle.as.scheduler.management with parameters of type MetadataObjectId
 void RuntimeServiceMXBeanProxy.changeBindingMode(MetadataObjectId bindingName, boolean isExclusive)
          Changes the mode of an existing binding.
 MetadataObjectId MetadataServiceMXBeanProxy.copyExclusionDefinition(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies an ExclusionsDefinition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyIncompatibility(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a Incompatibility definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyJobDefinition(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a JobDefinition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyJobSet(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a JobSet definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyJobType(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a JobType definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyScheduleDefinition(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a Schedule definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyTrigger(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName, java.lang.String application)
          Copies a Trigger definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyWorkAssignment(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Copies a WorkAssignment definition to another with the given name.
 MetadataObjectId MetadataServiceMXBeanProxy.copyWorkshift(MetadataObjectId objectId, java.lang.String packageName, java.lang.String newName)
          Copies a Workshift definition to another with the given name.
 void MetadataServiceMXBeanProxy.deleteExclusionDefinition(MetadataObjectId objectId, java.lang.String application)
          Deletes an ExclusionsDefinition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteIncompatibility(MetadataObjectId objectId, java.lang.String application)
          Deletes a Incompatibility definition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteJobDefinition(MetadataObjectId objectId, java.lang.String application)
          Deletes a JobDefinition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteJobSet(MetadataObjectId objectId, java.lang.String application)
          Deletes a JobSet definition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteJobType(MetadataObjectId objectId, java.lang.String application)
          Deletes a JobType definition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteScheduleDefinition(MetadataObjectId objectId, java.lang.String application)
          Deletes a Schedule definition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteTrigger(MetadataObjectId objectId, java.lang.String application)
          Deletes a Trigger definition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteWorkAssignment(MetadataObjectId objectId)
          Method delete a WorkAssignment definition from the scheduler metadata repository.
 void MetadataServiceMXBeanProxy.deleteWorkshift(MetadataObjectId objectId)
          Deletes a Workshift definition from the scheduler metadata repository.
 java.util.List<oracle.as.scheduler.management.AsyncThrottle> RuntimeServiceMXBeanProxy.getAsyncThrottle(MetadataObjectId waId)
          Deprecated. Async limits are now associated with the workshift only.
 oracle.as.scheduler.management.AsyncThrottle RuntimeServiceMXBeanProxy.getAsyncThrottle(MetadataObjectId waId, MetadataObjectId wshiftId)
          Deprecated. 
 oracle.as.scheduler.management.AsyncThrottle RuntimeServiceMXBeanProxy.getAsyncThrottleForWorkshift(MetadataObjectId wshiftId)
          Deprecated. 
 ExclusionsDefinition MetadataServiceMXBeanProxy.getExclusionDefinition(MetadataObjectId objectId, java.lang.String application)
          Retrieves ExclusionsDefinition from the scheduler metadata repository.
 Incompatibility[] MetadataServiceMXBeanProxy.getIncompatibilities(MetadataObjectId entity, java.lang.String application)
          Method to retrieve all the Incompatibility definitions associated with a given JobDefinition or JobSet definition.
 Incompatibility MetadataServiceMXBeanProxy.getIncompatibility(MetadataObjectId objectId, java.lang.String application)
          Method to retrieve a Incompatibility definition from the scheduler metadata repository.
 JobDefinition MetadataServiceMXBeanProxy.getJobDefinition(MetadataObjectId objectId, java.lang.String application)
          Gets a JobDefinition from the scheduler metadata repository.
 JobSet MetadataServiceMXBeanProxy.getJobSet(MetadataObjectId objectId, java.lang.String application)
          Method to retrieve a JobSet definition from the scheduler metadata repository.
 JobSetSteps MetadataServiceMXBeanProxy.getJobSetSteps(MetadataObjectId objectId, java.lang.String application)
          Returns all the steps in a given JobSet.
 JobType MetadataServiceMXBeanProxy.getJobType(MetadataObjectId objectId, java.lang.String application)
          Gets a JobType definition from the scheduler metadata repository.
 Schedule MetadataServiceMXBeanProxy.getScheduleDefinition(MetadataObjectId objectId, java.lang.String application)
          Method to retrieve a Schedule definition from the scheduler metadata repository.
 Trigger MetadataServiceMXBeanProxy.getTrigger(MetadataObjectId objectId, java.lang.String application)
          Gets a Trigger definition from the scheduler metadata repository.
 WorkAssignment MetadataServiceMXBeanProxy.getWorkAssignment(MetadataObjectId objectId)
          Gets a WorkAssignment definition from the scheduler metadata repository.
 Workshift MetadataServiceMXBeanProxy.getWorkshift(MetadataObjectId objectId)
          Gets a Workshift definition from the scheduler metadata repository.
 Workshift[] MetadataServiceMXBeanProxy.getWorkshifts(MetadataObjectId objectId)
          Returns the array of all the workshifts referenced by the WorkAssignment identified by the given object identifier.
 boolean MetadataServiceMXBeanProxy.isInCustomMDSNamespace(MetadataObjectId objectId)
          Method to check whether the namespace of the objectId matches with the custom MDS namespace.
 java.util.List<RequestDetail> RuntimeServiceMXBeanProxy.queryWorkAssignmentReadyRequests(MetadataObjectId waMid)
          Returns list of sparse request detail for the requests, in order of priority, that are in READY state and could be processed by the given work assignment.
 void RuntimeServiceMXBeanProxy.removeBinding(MetadataObjectId bindingName)
          Removes a processor binding.
 void RuntimeServiceMXBeanProxy.replaceSchedule(long requestId, MetadataObjectId schedule)
          Replace the current schedule for a request that has already been submitted.
 void RuntimeServiceMXBeanProxy.replaceScheduleStartEnd(long requestId, MetadataObjectId schedule, Schedule adhocSchedule, CalendarWrapper start, CalendarWrapper end)
          Replace the current schedule for a request that has already been submitted with a schedule.
 void MetadataServiceMXBeanProxy.setWorkAssignmentStates(MetadataObjectId[] objectIds, boolean active)
          Activates or deactivates WorkAssignments.
 long RuntimeServiceMXBeanProxy.submitBatchDeleteRequest(java.lang.String desc, MetadataObjectId scheduleMetaId, Schedule adhocSchedule, CalendarWrapper start, CalendarWrapper end, RequestParameters parameters)
          Submits a request for a batch delete job.
 long RuntimeServiceMXBeanProxy.submitPartAdHocRequest(java.lang.String desc, MetadataObjectId definition, Schedule schedule, Trigger trigger, CalendarWrapper start, CalendarWrapper end, RequestParameters parameters)
          Job request submission using Job Definition predefined in Metadata, and adhoc Schedule and Trigger instances.
 long RuntimeServiceMXBeanProxy.submitRequest(java.lang.String desc, MetadataObjectId definition, CalendarWrapper start, RequestParameters parameters)
          Submits a new job request using metadata definition of the job to run once at the specified time.
 long RuntimeServiceMXBeanProxy.submitRequest(java.lang.String desc, MetadataObjectId definition, MetadataObjectId schedule, MetadataObjectId trigger, CalendarWrapper start, CalendarWrapper end, RequestParameters parameters)
          Submits a new job request using metadata definitions of the job, schedule and associated trigger.
 void MetadataServiceMXBeanProxy.updateExclusionDefinition(MetadataObjectId objectId, ExclusionsDefinition exclusion, java.lang.String application)
          Method to update a given Exclusion definition.
 void MetadataServiceMXBeanProxy.updateIncompatibility(MetadataObjectId objectId, Incompatibility incompatibility, java.lang.String application)
          Updates a given Incompatibility definition.
 void MetadataServiceMXBeanProxy.updateJobDefinition(MetadataObjectId objectId, JobDefinition jobDefn, java.lang.String application)
          Updates a given JobDefinition.
 void MetadataServiceMXBeanProxy.updateJobSet(MetadataObjectId objectId, JobSet jobset, java.lang.String application)
          Updates a given JobSet definition.
 void MetadataServiceMXBeanProxy.updateJobType(MetadataObjectId objectId, JobType jobType, java.lang.String application)
          Updates a given JobType definition.
 void MetadataServiceMXBeanProxy.updateScheduleDefinition(MetadataObjectId objectId, Schedule schedule, java.lang.String application)
          Updates a given JobType definition.
 void MetadataServiceMXBeanProxy.updateTrigger(MetadataObjectId objectId, Trigger trigger, java.lang.String application)
          Updates a given Trigger definition.
 void MetadataServiceMXBeanProxy.updateWorkAssignment(MetadataObjectId objectId, WorkAssignment workAssignment)
          Updates a given WorkAssignment definition.
 void MetadataServiceMXBeanProxy.updateWorkshift(MetadataObjectId objectId, Workshift workshift)
          Updates a given Workshift definition.

 

Method parameters in oracle.as.scheduler.management with type arguments of type MetadataObjectId
 void ProcessorMXBeanProxy.reloadWorkAssignments(java.util.List<MetadataObjectId> changedMetadataIds)
          Deprecated. Not supported.
 void RuntimeServiceMXBeanProxy.removeBindings(java.util.List<MetadataObjectId> bindingNames)
          Removes a list of processor bindings.

 


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.