All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.crashnote.servlet.model.CustomServletResponse.jav Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
//package com.crashnote.servlet.model;
//
//import javax.servlet.http.*;
//import java.io.IOException;
//
//public class CustomServletResponse extends HttpServletResponseWrapper {
//
//    private int httpStatus = -1;
//
//    // SETUP ======================================================================================
//
//    public CustomServletResponse(final HttpServletResponse response) {
//        super(response);
//    }
//
//    // INTERFACE ==================================================================================
//
//    @Override
//    public void sendError(final int sc) throws IOException {
//        httpStatus = sc;
//        super.sendError(sc);
//    }
//
//    @Override
//    public void reset() {
//        httpStatus = SC_OK;
//        super.reset();
//    }
//
//    @Override
//    public void sendError(final int sc, final String msg) throws IOException {
//        httpStatus = sc;
//        super.sendError(sc, msg);
//    }
//
//    @Override
//    public void sendRedirect(final String location) throws IOException {
//        httpStatus = 302;
//        super.sendRedirect(location);
//    }
//
//    @Override
//    public void setStatus(final int sc) {
//        httpStatus = sc;
//        super.setStatus(sc);
//    }
//
//    // GET ========================================================================================
//
//    public int getStatus() {
//        return httpStatus;
//    }
//}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy