Uses of Class
oracle.as.scheduler.NotFoundException
Packages that use NotFoundException
Package
Description
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
Request Log and Output Content API.
-
Uses of NotFoundException in oracle.as.scheduler
Subclasses of NotFoundException in oracle.as.schedulerModifier and TypeClassDescriptionclass
Exception used to indicate a metadata object is not found.class
Exception that indicates the request is not found in the system.Methods in oracle.as.scheduler that throw NotFoundExceptionModifier and TypeMethodDescriptionRuntimeService.openLogContent
(RuntimeServiceHandle handle, long requestId) Opens the request log to retrieve the log data.RuntimeService.openOutputContent
(RuntimeServiceHandle handle, long requestId, String contentName) Opens the specified request output to retrieve the output data.RuntimeService.openOutputContent
(RuntimeServiceHandle handle, RequestExecutionContext context, String contentName, ContentType contentType, EnumSet<ContentHandle.ContentOpenOptions> options) Opens the named request output during job execution.void
RuntimeService.writeContent
(ContentHandle contentHandle, byte[] bytes) Appends the bytes to the output content during job execution.void
RuntimeService.writeContent
(ContentHandle contentHandle, char[] chars) Appends the characters to the output content during job execution.void
RuntimeService.writeContent
(ContentHandle contentHandle, String message) Appends the string to the output content during job execution.void
RuntimeService.writelnContent
(ContentHandle contentHandle, String message) Appends the string followed by a line feed character to the output content during job execution. -
Uses of NotFoundException in oracle.as.scheduler.request
Methods in oracle.as.scheduler.request that throw NotFoundExceptionModifier and TypeMethodDescriptionRemoteContentHelper.openOutputContent
(RuntimeServiceHandle runtimeHandle, String contentName, ContentType contentType, EnumSet<ContentHandle.ContentOpenOptions> options) Opens output content for read or write.void
RemoteContentHelper.write
(ContentHandle contentHandle, byte[] data) Appends the bytes to the output content during job execution.void
RemoteContentHelper.write
(ContentHandle contentHandle, char[] data) Appends the characters to the output content during job execution.void
RemoteContentHelper.write
(ContentHandle contentHandle, String data) Appends the string to the output content during job execution.void
RequestOutput.write
(byte[] bytes) Appends the bytes to the binary output content.void
RequestOutput.write
(byte[] bytes, int offset, int length) Appends the bytes to the binary output content.void
RequestOutput.write
(char[] chars) Appends the characters to the text output content.void
RequestOutput.write
(char[] chars, int offset, int length) Appends the charactes to the text output content.void
Appends the String to the text output content.void
Appends the String to the text output content.void
RemoteContentHelper.writeln
(ContentHandle contentHandle, String data) Appends the string followed by a line feed character to the output content during job execution.void
Appends the String to the text output content, followed by a line feed character.