gistoolkit.server.mapservice
Class Response

java.lang.Object
  extended bygistoolkit.server.mapservice.Response

public class Response
extends java.lang.Object

Represents the response to the client.


Constructor Summary
Response(java.io.OutputStream inOutputStream)
          Creates new Response
 
Method Summary
 java.lang.String getContentType()
          Get the content type.
 java.io.OutputStream getOutputStream()
          Get the outputstream fro writing binary data.
 java.io.PrintWriter getWriter()
          Get the Print writer for writing to the client.
 void setContentType(java.lang.String inContentType)
          Set the Content type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Response

public Response(java.io.OutputStream inOutputStream)
Creates new Response

Method Detail

setContentType

public void setContentType(java.lang.String inContentType)
Set the Content type.


getContentType

public java.lang.String getContentType()
Get the content type.


getOutputStream

public java.io.OutputStream getOutputStream()
Get the outputstream fro writing binary data.


getWriter

public java.io.PrintWriter getWriter()
Get the Print writer for writing to the client.