| |
|
| java.lang.Object org.apache.beehive.controls.runtime.servlet.ServletResponseService
All known Subclasses: org.apache.beehive.controls.runtime.servlet.HttpResponseService,
ServletResponseService | class ServletResponseService implements ServletResponse(Code) | | This class is the contextual service implementation for javax.servlet.ServletResponse. It
acts as an intermediary between the client and the ServletResponse instance held by the
associated ServletBeanContext. It validates that attempt to access the ServletResponse
only occur during the servlet request processing lifecycle, then delegates to the underlying
ServletResponse instance for actual services.
|
getBufferSize | public int getBufferSize()(Code) | | |
getResponseWrapper | ServletResponseWrapper getResponseWrapper()(Code) | | This method returns a ServletResponseWrapper instance that wraps the response service.
This is useful in instances where there is code that uses the wrapper interfaces to
unwrap responses to get to the 'root' response.
|
getServletBeanContext | final protected ServletBeanContext getServletBeanContext()(Code) | | This method retrieves the current ServletBeanContext for the service. It is capable
of reassociating with the current active context, if the service instance has been
serialized/deserialized.
|
isCommitted | public boolean isCommitted()(Code) | | |
reset | public void reset()(Code) | | |
resetBuffer | public void resetBuffer()(Code) | | |
setBufferSize | public void setBufferSize(int size)(Code) | | |
setContentLength | public void setContentLength(int len)(Code) | | |
|
|
|