1 31 package org.blojsom.dispatcher; 32 33 import org.blojsom.blog.Blog; 34 35 import javax.servlet.ServletException ; 36 import javax.servlet.http.HttpServletRequest ; 37 import javax.servlet.http.HttpServletResponse ; 38 import java.io.IOException ; 39 import java.util.Map ; 40 41 48 public interface Dispatcher { 49 50 55 public void init() throws org.blojsom.BlojsomException; 56 57 72 public void dispatch(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Blog blog, Map context, String flavorTemplate, String flavorContentType) throws IOException , ServletException ; 73 } | Popular Tags |