/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.http.service.servlet; import java.util.Collections; import java.util.Enumeration; import java.util.Hashtable; import java.util.Map; import javax.servlet.ServletConfig; import javax.servlet.ServletContext; import org.osgi.service.http.HttpContext; /** * @author Raymond Augé * @author Miguel Pastor */ public class BundleServletConfig implements ServletConfig { public BundleServletConfig( ServletContext servletContext, String servletName, Map<String, String> initParameters, HttpContext httpContext) { _servletContext = servletContext; _servletName = servletName; _initParameters = initParameters; if (_initParameters == null) { _initParameters = new Hashtable<String, String>(); } _httpContext = httpContext; } public HttpContext getHttpContext() { return _httpContext; } public String getInitParameter(String name) { return _initParameters.get(name); } public Enumeration<String> getInitParameterNames() { return Collections.enumeration(_initParameters.keySet()); } public Map<String, String> getInitParameters() { return _initParameters; } public ServletContext getServletContext() { return _servletContext; } public String getServletName() { return _servletName; } public void setInitParameter(String name, String value) { _initParameters.put(name, value); } private HttpContext _httpContext; private Map<String, String> _initParameters; private ServletContext _servletContext; private String _servletName; }