1 31 package org.blojsom.plugin; 32 33 import org.blojsom.blog.Blog; 34 import org.blojsom.blog.Entry; 35 36 import javax.servlet.http.HttpServletRequest ; 37 import javax.servlet.http.HttpServletResponse ; 38 import java.util.Map ; 39 40 47 public interface Plugin { 48 49 54 public void init() throws PluginException; 55 56 67 public Entry[] process(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Blog blog, Map context, Entry[] entries) throws PluginException; 68 69 74 public void cleanup() throws PluginException; 75 76 81 public void destroy() throws PluginException; 82 } 83 | Popular Tags |