Skip navigation links

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


oracle.as.scheduler.request
Interface RequestOutput


public interface RequestOutput

Request output API.

Since:
release specific (what release of product did this appear in)
Version:
$Header: ess/src/oracle/as/scheduler/request/RequestOutput.java /main/1 2009/09/04 14:29:09 ddavison Exp $
Author:
ddavison

Method Summary
 void 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 write(java.lang.String str)
          Appends the String to the text output content.
 void write(java.lang.String str, int offset, int length)
          Appends the String to the text output content.
 void writeln(java.lang.String str)
          Appends the String to the text output content, followed by a line feed character.

 

Method Detail

writeln

void writeln(java.lang.String str)
             throws NotFoundException,
                    ValidationException,
                    RuntimeServiceException
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

void write(java.lang.String str)
           throws NotFoundException,
                  ValidationException,
                  RuntimeServiceException
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(java.lang.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

void write(char[] chars)
           throws NotFoundException,
                  ValidationException,
                  RuntimeServiceException
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

void write(byte[] bytes)
           throws NotFoundException,
                  ValidationException,
                  RuntimeServiceException
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.

Skip navigation links

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


Copyright © 2008, 2012 Oracle. All rights reserved.