001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.util.servlet;
016    
017    import java.util.Map;
018    
019    import javax.servlet.http.HttpServletRequest;
020    
021    /**
022     * @author     Brian Wing Shun Chan
023     * @deprecated Moved to {@link
024     *             com.liferay.portal.kernel.servlet.DynamicServletRequest}
025     */
026    public class DynamicServletRequest
027            extends com.liferay.portal.kernel.servlet.DynamicServletRequest {
028    
029            public DynamicServletRequest(HttpServletRequest request) {
030                    super(request);
031            }
032    
033            public DynamicServletRequest(HttpServletRequest request, boolean inherit) {
034                    super(request, inherit);
035            }
036    
037            public DynamicServletRequest(
038                    HttpServletRequest request, Map<String, String[]> params) {
039    
040                    super(request, params);
041            }
042    
043            public DynamicServletRequest(
044                    HttpServletRequest request, Map<String, String[]> params,
045                    boolean inherit) {
046    
047                    super(request, params, inherit);
048            }
049    
050    }