| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| HttpSessionIdManager |
|
| 1.0;1 |
| 1 | package org.webslinger.servlet; | |
| 2 | ||
| 3 | import javax.servlet.http.HttpServletRequest; | |
| 4 | import javax.servlet.http.HttpServletResponse; | |
| 5 | ||
| 6 | public interface HttpSessionIdManager { | |
| 7 | HttpSessionId extractHttpSessionId(HttpServletRequest[] requestHolder, HttpServletResponse[] responseHolder); | |
| 8 | HttpSessionId createHttpSessionId(); | |
| 9 | String encodeURL(String path, HttpSessionId id); | |
| 10 | String encodeRedirectURL(String path, HttpSessionId id); | |
| 11 | } |