Uses of Class
oracle.as.scheduler.ValidationException
Packages that use ValidationException
Package
Description
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
Request Log and Output Content API.
-
Uses of ValidationException in oracle.as.scheduler
Subclasses of ValidationException in oracle.as.schedulerMethods in oracle.as.scheduler that throw ValidationExceptionModifier and TypeMethodDescriptionvoidRecurrenceSet.add(Recurrence recurrence) Add a Recurrence to this object.voidIncompatibility.addEntity(IncompatibleEntity incompEntity) Adds an incompatibility entity to this object.voidIncompatibility.addEntity(MetadataObjectId entity, boolean selfIncompatible) Adds an incompatibility entity to this object.voidIncompatibility.addEntity(MetadataObjectId entity, String property, boolean selfIncompatible) Adds an incompatibility entity to this object.MetadataService.addExclusionDefinition(MetadataServiceHandle handle, ExclusionsDefinition exclusion, String packageName) Adds a ExclusionsDefinition to the metadata repository.MetadataService.addIncompatibility(MetadataServiceHandle handle, Incompatibility incompatibility, String packageName) Adds an Incompatibility in the metadata repository.MetadataService.addJobDefinition(MetadataServiceHandle handle, JobDefinition jobDefn, String packageName) Adds a JobDefinition to the metadata repository.MetadataService.addJobSet(MetadataServiceHandle handle, JobSet jobset, String packageName) Adds a JobSet to the metadata repository.MetadataService.addJobType(MetadataServiceHandle handle, JobType jobType, String packageName) Adds a JobType in the metadata repository.MetadataService.addScheduleDefinition(MetadataServiceHandle handle, Schedule schedule, String packageName) Adds a Schedule to the metadata repository.voidJobSet.addStep(JobSetStep step) Adds the given step to this JobSet.voidRuntimeService.cancelRequests(Filter filter, RuntimeService.QueryField orderBy, boolean ascending) Cancels the processing of multiple request that are not in a terminal state.voidRuntimeService.changeRequestPriority(Long requestId, Integer priority) Changes the priority for a submitted request that has not yet started to run.RuntimeService.checkDetailedPermissions(RuntimeServiceHandle handle, long[] requestIds, RuntimeDataPermission.Action... privileges) Check whether the current user has privilegs on the input requests identified by a list of request ids.RuntimeService.checkRequestPrivilege(RuntimeServiceHandle handle, long[] requestIds, RuntimeDataPermission.Action... privileges) Check whether the current user has privilegs on the input requests identified by a list of request ids.abstract TvoidMetadataService.close(MetadataServiceHandle handle) Closes the session identified by an instance of MetadataServiceHandle.voidMetadataService.close(MetadataServiceHandle handle, boolean abort) Closes the session identified by an instance of MetadataServiceHandle.MetadataService.copyExclusionDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, String packageName, String newName) Copies a ExclusionDefinition to create another with the given name.MetadataService.copyIncompatibility(MetadataServiceHandle handle, MetadataObjectId objectId, String packageName, String newName) Copies an Incompatibility to create another with the given name.MetadataService.copyJobDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, String packageName, String newName) Copies a JobDefinition to create another with the given name.MetadataService.copyJobSet(MetadataServiceHandle handle, MetadataObjectId objectId, String packageName, String newName) Copies a JobSet to create another with the given name.MetadataService.copyJobType(MetadataServiceHandle handle, MetadataObjectId objectId, String packageName, String newName) Copies a JobType to create another with the given name.MetadataService.copyScheduleDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, String packageName, String newName) Copies a Schedule to create another with the given name.voidMetadataService.customizeJobDefinition(MetadataServiceHandle handle, JobDefinition jobDefinition, MetadataService.CustomizableProperty property, Serializable newValue) Customize a property for JobDefinition metadata.voidMetadataService.customizeJobSet(MetadataServiceHandle handle, JobSet jobSet, MetadataService.CustomizableProperty property, Serializable newValue) Customize a property for JobSet metadata.oracle.as.scheduler.runtime.ServerQuiesceStateRuntimeService.getQuiesceState(MetadataObjectId jobDefinition) Get quiesce state of ESS Cluster associated with a specified job definition.RuntimeService.getRequestDetailstoExport(RuntimeServiceHandle handle, Filter filter, RuntimeService.QueryField orderBy, boolean ascending, int maxCount, boolean counterInfo) Retrieves runtime details for all requests whose attribute and system properties match those specified by the query parameters.RuntimeService.getRequestParameter(RuntimeServiceHandle handle, long requestId, String name) Retrieves the value of a request parameter.RuntimeService.getRequestRank(Long requestId) Get the rank or position for a given request among the requests of same state.static ObjectJobSetStepProperty.getTypedObject(String propName, String val) Returns the given value converted into the appropriate type for the given property name.RuntimeService.openOutputContent(RuntimeServiceHandle handle, RequestExecutionContext context, String contentName, ContentType contentType, EnumSet<ContentHandle.ContentOpenOptions> options) Opens the named request output during job execution.RuntimeService.queryRequests(RuntimeServiceHandle handle, Filter filter, RuntimeService.QueryField orderBy, boolean ascending) Retrieves an enumeration of the request identifers for all requests whose attribute and system properties match those specified by the query parametersvoidRuntimeService.replaceSchedule(RuntimeServiceHandle handle, long requestId, MetadataObjectId scheduleId) Replace the current schedule for a request that has already been submitted.voidRuntimeService.replaceSchedule(RuntimeServiceHandle handle, long requestId, MetadataObjectId scheduleId, Schedule schedule, Calendar start, Calendar end) Replace the current schedule for a request that has already been submitted with a schedule.voidRuntimeService.replaceSchedule(RuntimeServiceHandle handle, long requestId, Schedule schedule) Replace the current schedule for a request that has already been submitted.voidRuntimeService.setExternalJobState(RuntimeServiceHandle handle, long requestID, ExternalJobState externalJobState) Saves External state value for a JAVA BIP job type in request property.voidJobSet.setJsSteps(JobSetStep[] steps) Sets the steps for this jobset to the given steps.voidRuntimeService.setRequestParameter(RuntimeServiceHandle handle, long requestId, String name, Object value) Sets the value of a request parameter for a specified request.longRuntimeService.submitRequest(RuntimeServiceHandle handle, String description, JobType.ExecutionType type, Schedule schedule, oracle.as.scheduler.Trigger trigger, Calendar start, Calendar end, RequestParameters parameters) Adhoc job request submission using specified Schedule.longRuntimeService.submitRequest(RuntimeServiceHandle handle, String description, MetadataObjectId definition, Calendar start, RequestParameters parameters) Creates a new job request using metadata definition of the job to run once on a specific time.longRuntimeService.submitRequest(RuntimeServiceHandle handle, String description, MetadataObjectId definition, MetadataObjectId schedule, MetadataObjectId trigger, Calendar start, Calendar end, RequestParameters parameters) Creates a new job request using metadata definitions of the job, and schedule.longRuntimeService.submitRequest(RuntimeServiceHandle handle, String description, MetadataObjectId definition, Schedule schedule, oracle.as.scheduler.Trigger trigger, Calendar start, Calendar end, RequestParameters parameters) Adhoc job request submission using job definition from metadata.longRuntimeService.submitRequest(RuntimeServiceHandle handle, RequestExecutionContext context, String description, MetadataObjectId definition, RequestParameters parameters) Submits a sub-request.voidMetadataService.updateExclusionDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, ExclusionsDefinition exclusion) Updates an existing ExclusionsDefinition in the metadata repository.voidMetadataService.updateIncompatibility(MetadataServiceHandle handle, MetadataObjectId objectId, Incompatibility incompatibility) Updates an existing Incompatibility definition in the metadata repository.voidMetadataService.updateJobDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, JobDefinition jobDefn) Updates an existing JobDefinition definition in the metadata repository.voidMetadataService.updateJobSet(MetadataServiceHandle handle, MetadataObjectId objectId, JobSet jobset) Updates an existing JobSet definition in the metadata repository.voidMetadataService.updateJobType(MetadataServiceHandle handle, MetadataObjectId objectId, JobType jobType) Updates an existing JobType definition in the metadata repository.voidRuntimeService.updateRequestParameter(RuntimeServiceHandle handle, long requestId, String name, Object value) Updates the value of a request parameter for a specified request.voidRuntimeService.updateRequestStartEnd(RuntimeServiceHandle handle, long requestId, Calendar start, Calendar end) Replace the start and end time for a request that has already been submitted.voidMetadataService.updateScheduleDefinition(MetadataServiceHandle handle, MetadataObjectId objectId, Schedule schedule) Updates an existing Schedule definition in the metadata repository.final voidBaseMetadata.validate()Validates this metadata object.voidExclusion.validate()Validates this instance of Exclusion to make sure it contains validRecurrenceorExplicitDate.voidValidates this JobDefinition.voidRecurrence.validate()Checks if this Recurrence instance represents a complete recurrence pattern or not.voidRecurrenceSet.validate()Validates this instance of RecurrenceSet.voidWorkAssignment.validateBound()Validates this as a bound WorkAssignment.voidWorkAssignment.validateBound(Locale clientLocale) Validates this as a bound WorkAssignment.voidJobSet.validateForExecution()Validates this JobSet for execution.voidRuntimeService.writeContent(ContentHandle contentHandle, byte[] bytes) Appends the bytes to the output content during job execution.voidRuntimeService.writeContent(ContentHandle contentHandle, char[] chars) Appends the characters to the output content during job execution.voidRuntimeService.writeContent(ContentHandle contentHandle, String message) Appends the string to the output content during job execution.voidRuntimeService.writelnContent(ContentHandle contentHandle, String message) Appends the string followed by a line feed character to the output content during job execution.Constructors in oracle.as.scheduler that throw ValidationExceptionModifierConstructorDescriptionRecurrenceSet(Recurrence... recurrences) Constructs a new instance with the given recurrences. -
Uses of ValidationException in oracle.as.scheduler.request
Methods in oracle.as.scheduler.request that throw ValidationExceptionModifier and TypeMethodDescriptionbyte[]RemoteContentHelper.getBinaryContent(ContentHandle contentHandle, int maxBytes) Gets at mostmaxBytesbytes from the binary content.byte[]RemoteContentHelper.getBinaryContent(ContentHandle contentHandle, int maxBytes, boolean lockRow) Gets at mostmaxBytesbytes from the binary content.RemoteContentHelper.getBinaryContentLob(ContentHandle contentHandle) Gets the binary content.static LogContentHelperContentFactory.getLogContentHelper(long requestId, RuntimeServiceHandle rsh) Gets the helper for creating log content for requests Each operation will use the user-provided handle, and it is the caller's responsibility to commit or rollback the transaction.static OutputContentHelperContentFactory.getOutputContentHelper(long requestId) Gets the helper for creating output content for requests with Standard or Extended request mode.static OutputContentHelperContentFactory.getOutputContentHelper(long requestId, RuntimeServiceHandle rsh) Gets the helper for creating output content for requests with Standard or Extended request mode.static RequestOutputContentFactory.getRequestOutput(RuntimeServiceHandle rsh, long requestId, ContentType contentType, String contentName) Retrieves the request output and creates the output content in the ESS content store for the request.RemoteContentHelper.openOutputContent(RuntimeServiceHandle runtimeHandle, String contentName, ContentType contentType, EnumSet<ContentHandle.ContentOpenOptions> options) Opens output content for read or write.voidRemoteContentHelper.write(ContentHandle contentHandle, byte[] data) Appends the bytes to the output content during job execution.voidRemoteContentHelper.write(ContentHandle contentHandle, char[] data) Appends the characters to the output content during job execution.voidRemoteContentHelper.write(ContentHandle contentHandle, String data) Appends the string to the output content during job execution.voidRequestOutput.write(byte[] bytes) Appends the bytes to the binary output content.voidRequestOutput.write(byte[] bytes, int offset, int length) Appends the bytes to the binary output content.voidRequestOutput.write(char[] chars) Appends the characters to the text output content.voidRequestOutput.write(char[] chars, int offset, int length) Appends the charactes to the text output content.voidAppends the String to the text output content.voidAppends the String to the text output content.voidRemoteContentHelper.writeln(ContentHandle contentHandle, String data) Appends the string followed by a line feed character to the output content during job execution.voidAppends the String to the text output content, followed by a line feed character.