List of usage examples for javax.servlet ServletContext interface-usage
From source file com.jpoweredcart.common.mock.servlet.MockServletContext.java
/**
* Mock implementation of the {@link javax.servlet.ServletContext} interface.
*
* <p>Compatible with Servlet 2.5 and partially with Servlet 3.0. Can be configured to
* expose a specific version through {@link #setMajorVersion}/{@link #setMinorVersion};
* default is 2.5. Note that Servlet 3.0 support is limited: servlet, filter and listener
From source file org.grails.jaxrs.springframework.mock.web.MockServletContext.java
/**
* Mock implementation of the {@link javax.servlet.ServletContext} interface.
*
* <p>Compatible with Servlet 2.5 and partially with Servlet 3.0. Can be configured to
* expose a specific version through {@link #setMajorVersion}/{@link #setMinorVersion};
* default is 2.5. Note that Servlet 3.0 support is limited: servlet, filter and listener
From source file org.apache.click.servlet.MockServletContext.java
/**
* Mock implementation of {@link javax.servlet.ServletContext}.
* <p/>
* This implementation supports all of the standard context methods except for
* request dispatching which just indicates what is being dispatched to, rather
* than performing an actual dispatch.
From source file org.springframework.mock.web.test.MockServletContext.java
/**
* Mock implementation of the {@link javax.servlet.ServletContext} interface.
*
* <p>As of Spring 5.0, this set of mocks is designed on a Servlet 4.0 baseline.
*
* <p>Compatible with Servlet 3.1 but can be configured to expose a specific version
From source file de.micromata.genome.test.web.SimServletContext.java
/** * * @author Roger Rene Kommer (r.kommer@micromata.de) * */ public class SimServletContext implements ServletContext {
From source file org.springframework.mock.web.MockServletContext.java
/**
* Mock implementation of the {@link javax.servlet.ServletContext} interface.
*
* <p>As of Spring 5.0, this set of mocks is designed on a Servlet 4.0 baseline.
*
* <p>Compatible with Servlet 3.1 but can be configured to expose a specific version
From source file org.apache.catalina.core.ApplicationContextFacade.java
/**
* Facade object which masks the internal <code>ApplicationContext</code>
* object from the web application.
*
* @author Remy Maucherat
* @author Jean-Francois Arcand