1 23 24 package org.infoglue.cms.applications.tasktool.actions; 25 26 import javax.servlet.http.HttpServletRequest ; 27 28 import org.infoglue.cms.exception.SystemException; 29 30 33 34 public interface ScriptController 35 { 36 37 public void logInfo(String info); 38 39 42 43 public void beginTransaction() throws SystemException; 44 45 48 49 public void commitTransaction() throws SystemException; 50 51 54 55 public void setRequest(HttpServletRequest request); 56 57 } 58 | Popular Tags |