1 18 package org.jahia.services.applications; 19 20 21 import javax.servlet.http.HttpServletRequest ; 22 import javax.servlet.http.HttpServletResponse ; 23 import javax.servlet.http.HttpSession ; 24 25 26 32 public class ApplicationsManager { 33 34 35 private HttpServletRequest m_Req; 36 private HttpServletResponse m_Res; 37 private HttpSession m_Ses; 38 39 private static String m_ACTION = "reqaction"; 40 private static String m_DISPLAY_LIST = "actionDisplayList"; 41 private static String m_SAVE_CHANGE = "actionSaveChange"; 42 43 44 53 public ApplicationsManager ( 54 HttpServletRequest req, 55 HttpServletResponse res, 56 HttpSession ses) { 57 m_Req = req; 58 m_Res = res; 59 m_Ses = ses; 60 61 } 62 63 64 67 public void handleActions () { 68 69 70 } 71 72 } | Popular Tags |