| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| PathMatcher |
|
| 1.0;1 |
| 1 | package org.webslinger.rules; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | import javax.servlet.ServletException; | |
| 5 | import javax.servlet.ServletRequest; | |
| 6 | ||
| 7 | public interface PathMatcher { | |
| 8 | boolean matches(ServletRequest request, String path) throws IOException, ServletException; | |
| 9 | } |