org.jboss.portal.server.app.spi
Interface InputContext

All Known Implementing Classes:
AbstractInputContext

public interface InputContext

Abstract how the container access the input parameters of the request.


Method Summary
 java.lang.String getCharacterEncoding()
           
 int getContentLength()
           
 java.lang.String getContentType()
           
 java.io.InputStream getInputStream()
           
 Mode getMode()
           
 Parameters getParameters()
           
 java.io.BufferedReader getReader()
           
 WindowState getWindowState()
           
 

Method Detail

getCharacterEncoding

public java.lang.String getCharacterEncoding()

getReader

public java.io.BufferedReader getReader()
                                 throws java.io.IOException
Throws:
java.io.IOException

getInputStream

public java.io.InputStream getInputStream()
                                   throws java.io.IOException
Throws:
java.io.IOException

getContentLength

public int getContentLength()

getContentType

public java.lang.String getContentType()

getMode

public Mode getMode()

getWindowState

public WindowState getWindowState()

getParameters

public Parameters getParameters()