| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| WebslingerStartup |
|
| 0.0;0 |
| 1 | package org.webslinger; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | import java.util.Collection; | |
| 5 | import java.util.concurrent.Future; | |
| 6 | import javax.servlet.ServletException; | |
| 7 | ||
| 8 | public interface WebslingerStartup { | |
| 9 | Collection<Future> start(WebslingerServletContext context) throws IOException, ServletException; | |
| 10 | } |