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

cat.inspiracio.servlet.jsp.SetPageContext Maven / Gradle / Ivy

Go to download

Dummy Servlet provides some implementations for the interfaces and classes of the Java Servlet spec that are useful for testing and simulation. Version 5.0.0 is for Servlet 5.0.0.

The newest version!
package cat.inspiracio.servlet.jsp;

import cat.inspiracio.servlet.http.SetRequest;
import cat.inspiracio.servlet.http.SetResponse;
import cat.inspiracio.servlet.http.SetServlet;

/** A PageContext with settable fields. */
public class SetPageContext extends ServletPageContext {

    /** Make one. */
    public SetPageContext(){
        super(new SetServlet(), new SetRequest(), new SetResponse());
    }

    public SetResponse getResponse(){return (SetResponse)super.getResponse();}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy