001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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 As of 6.2.0, 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    }