Uses of Class
seda.sandStorm.lib.http.httpResponse

Packages that use httpResponse
seda.sandStorm.lib.http   
 

Uses of httpResponse in seda.sandStorm.lib.http
 

Subclasses of httpResponse in seda.sandStorm.lib.http
 class httpBadRequestResponse
          An httpResponse corresponding to a '404 Bad Request' (i.e.
 class httpInternalServerErrorResponse
          An httpResponse corresponding to a '500 Internal Server Error' Use httpNotFoundResponse for a '404 Not Found'.
 class httpNotFoundResponse
          An httpResponse corresponding to a '404 Not Found' error.
 class httpOKResponse
          An httpResponse corresponding to a '200 OK' response.
 class httpRedirectResponse
          An httpResponse corresponding to a '301 Moved Permanently' response.
 class httpServiceUnavailableResponse
          An httpResponse corresponding to a '503 Service Unavailable' error.
 

Methods in seda.sandStorm.lib.http that return httpResponse
 httpResponse httpResponder.getResponse()
          Return the response for this responder.
 

Constructors in seda.sandStorm.lib.http with parameters of type httpResponse
httpResponder(httpResponse resp, httpConnection conn, boolean closeConnection, boolean sendHeader)
          Create an httpResponder with the given response and connection.
httpResponder(httpResponse resp, httpConnection conn, boolean closeConnection)
          Create an httpResponder with the given response and connection.
httpResponder(httpResponse resp, httpConnection conn)
          Create an httpResponder with the given response and connection.
httpResponder(httpResponse resp, httpRequest req, boolean closeConnection, boolean sendHeader)
          Create an httpResponder with the given response, with the connection being derived from the given request.
httpResponder(httpResponse resp, httpRequest req, boolean closeConnection)
          Create an httpResponder with the given response, with the connection being derived from the given request.
httpResponder(httpResponse resp, httpRequest req)
          Create an httpResponder with the given response, with the connection being derived from the given request.