1 13 20 package org.jahia.params; 21 22 import javax.servlet.ServletContext ; 23 import javax.servlet.http.HttpServletRequest ; 24 import javax.servlet.http.HttpServletResponse ; 25 26 import org.jahia.exceptions.JahiaException; 27 import org.jahia.exceptions.JahiaPageNotFoundException; 28 import org.jahia.exceptions.JahiaSessionExpirationException; 29 import org.jahia.exceptions.JahiaSiteNotFoundException; 30 import org.jahia.services.pages.ContentPage; 31 import org.jahia.services.sites.JahiaSite; 32 import org.jahia.services.usermanager.JahiaUser; 33 import org.jahia.settings.SettingsBean; 34 35 45 public final class AdminParamBean extends ParamBean { 46 47 private static final String CLASS_NAME = AdminParamBean.class.getName(); 48 49 50 63 public AdminParamBean( HttpServletRequest request, 64 HttpServletResponse response, 65 ServletContext context, 66 SettingsBean jSettings, 67 long startTime, 68 int httpMethod, 69 JahiaSite site, 70 JahiaUser user, 71 ContentPage page ) 72 73 throws JahiaPageNotFoundException, 74 JahiaSessionExpirationException, 75 JahiaSiteNotFoundException, 76 JahiaException { 77 78 super(request,response,context,jSettings,startTime,httpMethod, site, user, page); 79 80 this.getLocale(); 82 83 } 84 85 86 } 87 | Popular Tags |