Package oracle.as.scheduler.request
Interface RequestOutput
public interface RequestOutput
Request output API.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
write
(byte[] bytes) Appends the bytes to the binary output content.void
write
(byte[] bytes, int offset, int length) Appends the bytes to the binary output content.void
write
(char[] chars) Appends the characters to the text output content.void
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
Appends the String to the text output content, followed by a line feed character.
-
Method Details
-
writeln
Appends the String to the text output content, followed by a line feed character.- Parameters:
str
- text to append to this output content.- Throws:
NotFoundException
- If the content does not exist.ValidationException
- If the content type is binary or if the content was created from an import.RuntimeServiceException
- If error accessing runtime store.
-
write
Appends the String to the text output content.- Parameters:
str
- text to append to this output content.- Throws:
NotFoundException
- If the content does not exist.ValidationException
- If the content type is binary or if the file was imported.RuntimeServiceException
- If error accessing runtime store.
-
write
void write(String str, int offset, int length) throws NotFoundException, ValidationException, RuntimeServiceException Appends the String to the text output content.- Parameters:
str
- text to append to this output content.offset
- offset in the String to start writing from; 0 starts at the beginning.length
- number of characters to write.- Throws:
NotFoundException
- If the content does not exist.ValidationException
- If the content type is not Text; if the file was imported; if the content was created from an import; or if the offset and length are invalid.RuntimeServiceException
- If error accessing runtime store.
-
write
Appends the characters to the text output content.- Parameters:
chars
- characters to append to this output content.- Throws:
NotFoundException
- If the content does not exist.ValidationException
- If the content type is binary or if the file was imported.RuntimeServiceException
- If error accessing runtime store.
-
write
void write(char[] chars, int offset, int length) throws NotFoundException, ValidationException, RuntimeServiceException Appends the charactes to the text output content.- Parameters:
chars
- characters to append to this output content.offset
- offset in the array to start writing from; 0 starts at the beginning.length
- number of characters to write.- Throws:
NotFoundException
- If the content does not exist.ValidationException
- If the content type is not Text; if the file was imported; if the content was created from an import; or if the offset and length are invalid.RuntimeServiceException
- If error accessing runtime store.
-
write
Appends the bytes to the binary output content.- Parameters:
bytes
- bytes to append to this output content.- Throws:
NotFoundException
- If the content does not exist.ValidationException
- If the content type is text or if the content was created from an import.RuntimeServiceException
- If error accessing runtime store.
-
write
void write(byte[] bytes, int offset, int length) throws NotFoundException, ValidationException, RuntimeServiceException Appends the bytes to the binary output content.- Parameters:
bytes
- bytes to append to this output content.offset
- offset in the bytes array to start writing from; 0 starts at the beginning.length
- number of bytes to write from the bytes array.- Throws:
NotFoundException
- If the content does not exist.ValidationException
- If the content type is text; if the content was created from an import; or if the offset and length are invalid.RuntimeServiceException
- If error accessing runtime store.
-