1 22 23 package de.laures.cewolf; 24 25 import javax.servlet.ServletContext ; 26 import javax.servlet.http.HttpServletRequest ; 27 import javax.servlet.http.HttpSession ; 28 import javax.servlet.jsp.PageContext ; 29 30 37 public interface Storage{ 38 39 45 public String storeChartImage(ChartImage chartImage, PageContext pageContext) throws CewolfException; 46 47 53 public ChartImage getChartImage(String id, HttpServletRequest request); 54 55 61 63 68 70 75 public void init(ServletContext servletContext) throws CewolfException; 76 77 78 85 public String removeChartImage(String imgId, HttpServletRequest request) 86 throws CewolfException; 87 } 88 | Popular Tags |