| java.lang.Object seda.sandStorm.lib.http.httpResponse com.rimfaxe.webserver.seda.SedaHttpResponse
Constructor Summary | |
public | SedaHttpResponse(int code, String contentType, Hashtable headertable) Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type. | public | SedaHttpResponse(int status, String contentType, BufferElement payload, Hashtable headertable) Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type. | public | SedaHttpResponse(int status, String contentType, BufferElement payload) Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type. | public | SedaHttpResponse(int status, String contentType, BufferElement payload, int contentLength) Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type. | public | SedaHttpResponse(int status, String contentType, int payloadSize) Create an httpOKResponse with a given response payload size and
MIME type. | public | SedaHttpResponse(int status, String contentType, int payloadSize, SinkIF compQ) Create an httpOKResponse with a given response payload size,
MIME type, and completion sink. |
SedaHttpResponse | public SedaHttpResponse(int code, String contentType, Hashtable headertable)(Code) | | Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type.
|
SedaHttpResponse | public SedaHttpResponse(int status, String contentType, BufferElement payload, Hashtable headertable)(Code) | | Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type.
|
SedaHttpResponse | public SedaHttpResponse(int status, String contentType, BufferElement payload)(Code) | | Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type.
|
SedaHttpResponse | public SedaHttpResponse(int status, String contentType, BufferElement payload, int contentLength)(Code) | | Create an httpOKResponse with the given payload corresponding
to the given request, using the given MIME content-type. Use
the given content length in the header of the response.
|
SedaHttpResponse | public SedaHttpResponse(int status, String contentType, int payloadSize)(Code) | | Create an httpOKResponse with a given response payload size and
MIME type.
|
SedaHttpResponse | public SedaHttpResponse(int status, String contentType, int payloadSize, SinkIF compQ)(Code) | | Create an httpOKResponse with a given response payload size,
MIME type, and completion sink.
|
|
|