EAF 7.4 API

com.lutris.appserver.server.httpPresentation
Class HttpPresentationOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
All Implemented Interfaces:
java.io.Closeable, java.io.Flushable

public abstract class HttpPresentationOutputStream
extends java.io.OutputStream

HTTP request output stream writter.


Constructor Summary
HttpPresentationOutputStream()
           
 
Method Summary
 void close()
           
abstract  void print(boolean b)
          Prints the boolean provided.
abstract  void print(char c)
           
abstract  void print(double d)
          Prints the double provided.
abstract  void print(float f)
          Prints the float provided.
abstract  void print(int i)
          Prints the integer provided.
abstract  void print(long l)
          Prints the long provided.
abstract  void print(java.lang.String s)
          Prints the string provided.
abstract  void println()
          Prints a CRLF.
abstract  void println(boolean b)
          Prints the boolean provided, followed by a CRLF.
abstract  void println(char c)
          Prints the character provided, followed by a CRLF.
abstract  void println(double d)
          Prints the double provided, followed by a CRLF.
abstract  void println(float f)
          Prints the float provided, followed by a CRLF.
abstract  void println(int i)
          Prints the integer provided, followed by a CRLF.
abstract  void println(long l)
          Prints the long provided, followed by a CRLF.
abstract  void println(java.lang.String s)
          Prints the string provided, followed by a CRLF.
 
Methods inherited from class java.io.OutputStream
flush, write, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HttpPresentationOutputStream

public HttpPresentationOutputStream()
Method Detail

print

public abstract void print(java.lang.String s)
                    throws java.io.IOException
Prints the string provided.

Throws:
java.io.IOException - if an I/O error has occurred

print

public abstract void print(boolean b)
                    throws java.io.IOException
Prints the boolean provided.

Throws:
java.io.IOException - if an I/O error has occurred.

print

public abstract void print(char c)
                    throws java.io.IOException
Throws:
java.io.IOException

print

public abstract void print(int i)
                    throws java.io.IOException
Prints the integer provided.

Throws:
java.io.IOException - if an I/O error has occurred

print

public abstract void print(long l)
                    throws java.io.IOException
Prints the long provided.

Throws:
java.io.IOException - if an I/O error has occurred

print

public abstract void print(float f)
                    throws java.io.IOException
Prints the float provided.

Throws:
java.io.IOException - if an I/O error has occurred

print

public abstract void print(double d)
                    throws java.io.IOException
Prints the double provided.

Throws:
java.io.IOException - if an I/O error has occurred

println

public abstract void println()
                      throws java.io.IOException
Prints a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred

println

public abstract void println(java.lang.String s)
                      throws java.io.IOException
Prints the string provided, followed by a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred

println

public abstract void println(boolean b)
                      throws java.io.IOException
Prints the boolean provided, followed by a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred.

println

public abstract void println(char c)
                      throws java.io.IOException
Prints the character provided, followed by a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred

println

public abstract void println(int i)
                      throws java.io.IOException
Prints the integer provided, followed by a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred

println

public abstract void println(long l)
                      throws java.io.IOException
Prints the long provided, followed by a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred

println

public abstract void println(float f)
                      throws java.io.IOException
Prints the float provided, followed by a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred

println

public abstract void println(double d)
                      throws java.io.IOException
Prints the double provided, followed by a CRLF.

Throws:
java.io.IOException - if an I/O error has occurred

close

public void close()
           throws java.io.IOException
Specified by:
close in interface java.io.Closeable
Overrides:
close in class java.io.OutputStream
Throws:
java.io.IOException

EAF 7.4 API