1   package com.atlassian.plugin.refimpl.servlet;
2   
3   import com.atlassian.plugin.servlet.ServletContextFactory;
4   
5   import javax.servlet.ServletContext;
6   
7   public class SimpleServletContextFactory implements ServletContextFactory
8   {
9       private final ServletContext servletContext;
10  
11      public SimpleServletContextFactory(ServletContext servletContext)
12      {
13          this.servletContext = servletContext;
14      }
15  
16      public ServletContext getServletContext()
17      {
18          return servletContext;
19      }
20  }