View Javadoc

1   package com.atlassian.plugin.servlet;
2   
3   import javax.servlet.ServletContext;
4   
5   /**
6    * A factory for providing access to a {@link ServletContext}.
7    * @since 2.2
8    */
9   public interface ServletContextFactory
10  {
11      /**
12       * @return a {@link ServletContext}.
13       */
14      public ServletContext getServletContext();
15  }