Package muntjac :: Package terminal :: Package gwt :: Package server :: Module communication_manager :: Class HttpServletResponseWrapper
[hide private]
[frames] | no frames]

Class HttpServletResponseWrapper

source code

                              object --+    
                                       |    
abstract_communication_manager.IResponse --+
                                           |
                                          HttpServletResponseWrapper

Concrete wrapper class for HttpServletResponse.


See Also: IResponse

Instance Methods [hide private]
 
__init__(self, response, applicationServlet)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
getOutputStream(self)
Gets the output stream to which the response can be written.
source code
 
getWrappedResponse(self)
Gets the wrapped response object, usually a class implementing either ServletResponse.
source code
 
getWrappedServlet(self) source code
 
setContentType(self, typ)
Sets the MIME content type for the response to be communicated to the browser.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, response, applicationServlet)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

getOutputStream(self)

source code 

Gets the output stream to which the response can be written.

Raises:
  • IOException
Overrides: abstract_communication_manager.IResponse.getOutputStream
(inherited documentation)

getWrappedResponse(self)

source code 

Gets the wrapped response object, usually a class implementing either ServletResponse.

Returns:
wrapped request object
Overrides: abstract_communication_manager.IResponse.getWrappedResponse
(inherited documentation)

setContentType(self, typ)

source code 

Sets the MIME content type for the response to be communicated to the browser.

Overrides: abstract_communication_manager.IResponse.setContentType
(inherited documentation)