📄 adminparambean.java
字号:
//// ____.// __/\ ______| |__/\. _______// __ .____| | \ | +----+ \// _______| /--| | | - \ _ | : - \_________// \\______: :---| : : | : | \________>// |__\---\_____________:______: :____|____:_____\// /_____|//// . . . i n j a h i a w e t r u s t . . .////// AdminParamBean//// NK 08.01.2002 HNY2002////package org.jahia.params;import java.io.*;import java.util.*;import javax.servlet.*; // ServletContextimport javax.servlet.http.*; // HttpServletRequestimport org.jahia.utils.*; // JahiaConsoleimport org.jahia.settings.*; // Settingsimport org.jahia.services.sites.JahiaSite;import org.jahia.services.pages.JahiaPage;import org.jahia.services.usermanager.JahiaUser;import org.jahia.services.usermanager.JahiaUserManagerService;import org.jahia.exceptions.JahiaException;import org.jahia.exceptions.JahiaPageNotFoundException;import org.jahia.exceptions.JahiaSessionExpirationException;import org.jahia.exceptions.JahiaSiteNotFoundException;/** * This object contains most of the request context, including object such as * the request and response objects, sessions, contexts, ... * * This class is a simplified version of the ParamBean class with just what is * necessary to work within JahiaAdministration. * Do not use this class within Jahia servlet, only with JahiaAdministration servlet. * * @author Khue NGuyen */public final class AdminParamBean extends ParamBean { private static final String CLASS_NAME = AdminParamBean.class.getName(); /* * Constructor * * @param HttpServletRequest request * @param HttpServletResponse response * @param ServletContext context * @param JahiaPrivateSettings jSettings * @param long startTime * @param int httpMethod * @param JahiaSite the site * @param JahiaUser the user * @param JahiaPage, the page can be null */ public AdminParamBean( HttpServletRequest request, HttpServletResponse response, ServletContext context, JahiaPrivateSettings jSettings, long startTime, int httpMethod, JahiaSite site, JahiaUser user, JahiaPage page ) throws JahiaPageNotFoundException, JahiaSessionExpirationException, JahiaSiteNotFoundException, JahiaException { super(request,response,context,jSettings,startTime,httpMethod, site, user, page); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -