1 64 65 package com.jcorporate.expresso.core.jsdkapi; 66 67 72 73 import javax.servlet.Servlet ; 74 import javax.servlet.ServletContext ; 75 import javax.servlet.http.HttpServletRequest ; 76 import javax.servlet.http.HttpServletResponse ; 77 78 79 90 public interface APIAwareDispatcher { 91 106 public void forward(Servlet srv, ServletContext ctx, 107 HttpServletRequest req, HttpServletResponse res, 108 String URL) 109 throws javax.servlet.ServletException , java.io.IOException ; 110 111 112 113 129 public void include(Servlet srv, ServletContext param, 130 HttpServletRequest req, HttpServletResponse res, 131 String URL) 132 throws javax.servlet.ServletException , java.io.IOException ; 133 134 135 136 142 public String getContextPath(HttpServletRequest req); 143 144 145 146 } 147 148 | Popular Tags |