Package | Description |
---|---|
oracle.as.scheduler |
Enterprise Scheduler API interfaces and classes, including RuntimeService and MetadataService.
|
oracle.as.scheduler.metadata.query |
Fields for querying metadata.
|
oracle.as.scheduler.metadata.query.builder |
Metadata type specific helper classes for querying metadata.
|
oracle.as.scheduler.request |
Request Log and Output Content API.
|
Modifier and Type | Method and Description |
---|---|
void |
RuntimeService.closeContent(RuntimeServiceHandle handle, ContentHandle contentHandle)
Closes the previously opened log or output content and releases the handle.
|
byte[] |
RuntimeService.getBinaryContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxBytes)
Gets at most
maxBytes bytes from the binary content. |
static RecurrenceFields.DAY_OF_WEEK |
RecurrenceFields.DAY_OF_WEEK.getDayOfWeek(String name)
The DAY_OF_WEEK associated with the given value.
|
String[] |
RuntimeService.getLogLines(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxLines)
Gets at most
maxLines lines from the request log, continuing from the last call to this method. |
char[] |
RuntimeService.getTextContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxChars)
Gets at most
maxChars lines from the log or output text content. |
Collection |
Schedule.list(Calendar begin, Calendar end)
Generates a list of possible occurrences of this Schedule object within a given time period up to the default limit of 300.
|
Collection |
Schedule.list(Calendar begin, Calendar end, int limit)
Generates a list of possible occurrences of this Schedule object within a given time period.
|
Collection |
Schedule.list(Calendar begin, int count)
Generates a list of possible occurrences of this Schedule object starting with the given time up to the specified count.
|
void |
RecurrenceFields.TIME_OF_DAY.setHour(int hour)
Set the Hour part of this TIME_OF_DAY instance.
|
void |
RecurrenceFields.TIME_OF_DAY.setMinute(int minute)
Set the Minute part of this TIME_OF_DAY instance.
|
void |
RecurrenceFields.TIME_OF_DAY.setSecond(int second)
Set the second part of this TIME_OF_DAY instance.
|
void |
MetadataService.QueryField.validateComparator(oracle.as.scheduler.query.QueryComparator comparator) |
void |
MetadataService.QueryField.validateOperator(oracle.as.scheduler.query.QueryOperator operator) |
void |
MetadataService.QueryField.validateValue(String value) |
static RecurrenceFields.MONTH_OF_YEAR |
RecurrenceFields.MONTH_OF_YEAR.valueOf(int value)
Gets the MONTH_OF_YEAR associated with the given value.
|
static RecurrenceFields.WEEK_OF_MONTH |
RecurrenceFields.WEEK_OF_MONTH.valueOf(int value)
The WEEK_OF_MONTH associated with the given value.
|
static RecurrenceFields.DAY_OF_MONTH |
RecurrenceFields.DAY_OF_MONTH.valueOf(int value)
The DAY_OF_MONTH associated with the given integer.
|
static RecurrenceFields.YEAR |
RecurrenceFields.YEAR.valueOf(int value)
The YEAR instance representing the specified int value.
|
static RecurrenceFields.TIME_OF_DAY |
RecurrenceFields.TIME_OF_DAY.valueOf(int hour, int minute, int second)
A TIME_OF_DAY instance representing the time specified by given values for hour, minute, and second.
|
static MetadataService.QueryField |
MetadataService.QueryField.valueOfField(String s) |
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.
|
Modifier and Type | Method and Description |
---|---|
void |
MetadataQueryFilter.evaluate(MetadataQueryVisitor visitor)
This method fulfills the contract of the Visitor pattern.
|
Object |
MetadataQueryVisitor.getResult() |
void |
MetadataQueryVisitor.visitLeaf(oracle.as.scheduler.metadata.query.MetadataQueryField queryField, oracle.as.scheduler.query.QueryComparator queryComparator, Serializable value) |
void |
MetadataQueryVisitor.visitParent(oracle.as.scheduler.query.QueryOperator queryOperator) |
Modifier and Type | Method and Description |
---|---|
oracle.as.scheduler.metadata.query.MetadataQueryField |
MetadataQueryBuilderFactory.convertField(MetadataService.QueryField fieldName)
Adapter method to convert field of type
MetadataService.QueryField to MetadataQueryField |
oracle.as.scheduler.metadata.query.MetadataQueryField |
MetadataQueryBuilderFactory.convertField(String fieldName)
Adapter method to convert field name of type
MetadataService.QueryField to MetadataQueryField |
MetadataQueryFilter |
MetadataQueryBuilderFactory.convertFilter(BaseMetadataType metadataType, Filter filter)
Adapter method for converting an old
Filter into a new MetadataQueryFilter |
Modifier and Type | Method and Description |
---|---|
void |
RemoteContentHelper.closeOutputContent(ContentHandle contentHandle)
Closes the content associated with the given content handle.
|
byte[] |
RemoteContentHelper.getBinaryContent(ContentHandle contentHandle, int maxBytes)
Gets at most
maxBytes bytes from the binary content. |
char[] |
RemoteContentHelper.getTextContent(ContentHandle contentHandle, int maxChars)
Gets at most
maxChars characters from the text output content. |
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 |
RemoteContentHelper.writeln(ContentHandle contentHandle, String data)
Appends the string followed by a line feed character to the output content during job execution.
|