1 package com.atlassian.plugin.refimpl.servlet;
2
3 import com.atlassian.plugin.descriptors.servlet.ServletModuleContainerServlet;
4 import com.atlassian.plugin.descriptors.servlet.ServletModuleManager;
5 import com.atlassian.plugin.refimpl.ContainerManager;
6
7 /**
8 * Created by IntelliJ IDEA.
9 * User: mrdon
10 * Date: 06/07/2008
11 * Time: 12:17:52 PM
12 * To change this template use File | Settings | File Templates.
13 */
14 public class SimpleContainerServlet extends ServletModuleContainerServlet {
15
16 protected ServletModuleManager getServletModuleManager() {
17 return ContainerManager.getInstance().getServletModuleManager();
18 }
19 }