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    *
8    * @since 2.2
9    */
10  public interface ServletContextFactory {
11      /**
12       * @return a {@link ServletContext}.
13       */
14      ServletContext getServletContext();
15  }