*/
public final class Response {
-
- // ----------------------------------------------------------- Constructors
-
-
- public Response() {
- }
-
-
// ----------------------------------------------------- Class Variables
/**
}
- public void finish() throws IOException {
+ public void finish() {
action(ActionCode.CLOSE, this);
}
- public void acknowledge() throws IOException {
+ public void acknowledge() {
action(ActionCode.ACK, this);
}
* Any implementation needs to notify ContextManager, to allow
* interceptors to fix headers.
*/
- public void sendHeaders() throws IOException {
+ public void sendHeaders() {
action(ActionCode.COMMIT, this);
commited = true;
}