1 16 package org.apache.cocoon.components.jsp; 17 18 import javax.servlet.ServletContext ; 19 import javax.servlet.ServletException ; 20 import javax.servlet.http.HttpServletRequest ; 21 import javax.servlet.http.HttpServletResponse ; 22 23 import java.io.IOException ; 24 25 31 public interface JSPEngine { 32 33 public static final String ROLE = JSPEngine.class.getName(); 34 35 43 public byte[] executeJSP(String url, 44 HttpServletRequest request, 45 HttpServletResponse response, 46 ServletContext context) 47 throws IOException , ServletException , Exception ; 48 } 49 | Popular Tags |