1 16 package org.directwebremoting; 17 18 import java.util.Collection ; 19 20 import javax.servlet.ServletConfig ; 21 import javax.servlet.ServletContext ; 22 23 26 public interface ServerContext 27 { 28 37 Collection getScriptSessionsByPage(String url); 38 39 48 Collection getAllScriptSessions(); 49 50 54 ServletConfig getServletConfig(); 55 56 60 ServletContext getServletContext(); 61 62 66 Container getContainer(); 67 68 72 String getVersion(); 73 } 74 | Popular Tags |