📄 applicationsmanager.java
字号:
//// ____.// __/\ ______| |__/\. _______// __ .____| | \ | +----+ \// _______| /--| | | - \ _ | : - \_________// \\______: :---| : : | : | \________>// |__\---\_____________:______: :____|____:_____\// /_____|//// . . . i n j a h i a w e t r u s t . . .////// ApplicationsManager// NK 10.02.2000////package org.jahia.services.applications;import java.io.*;import java.util.*;import javax.servlet.*;import javax.servlet.http.*;import org.jahia.exceptions.JahiaException;import org.jahia.data.*; // JahiaDataimport org.jahia.data.applications.*; // ApplicationBeanimport org.jahia.params.*; // ParamBeanimport org.jahia.services.*; // JahiaServiceimport org.jahia.registries.*; // ServicesRegistry/** * Class ApplicationsManager. * * @author Khue ng * @version 1.0 */public class ApplicationsManager { private HttpServletRequest m_Req; private HttpServletResponse m_Res; private HttpSession m_Ses; private static String m_ACTION = "reqaction"; private static String m_DISPLAY_LIST = "actionDisplayList"; private static String m_SAVE_CHANGE = "actionSaveChange"; /** * Constructor * * @param req the HttpServletRequest object * @param res the HttpServletResponse object * @param fileRealName the real name of the file * @param fileStorageFullPath the storage name of the file * @param fileContentType the Content Type of the file */ public ApplicationsManager ( HttpServletRequest req, HttpServletResponse res, HttpSession ses){ m_Req = req; m_Res = res; m_Ses = ses; } /** * handleActions * */ public void handleActions(){ } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -