1 package com.atlassian.cache.servlet.resolver;
2
3 import javax.servlet.ServletConfig;
4 import javax.servlet.ServletException;
5 import javax.servlet.http.HttpServletRequest;
6 import javax.servlet.http.HttpServletResponse;
7 import java.io.IOException;
8
9
10
11
12 public interface ContentResolver
13 {
14
15
16
17
18
19
20
21 public String getContent(String path, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException;
22
23 public void init(ServletConfig servletConfig) throws ServletException;
24 }