From de9f68d868011bf1b83308e610ae277f4f2e9be6 Mon Sep 17 00:00:00 2001 From: Nils-Helge Garli Date: Fri, 10 Aug 2007 13:57:22 +0000 Subject: [PATCH] Removed mock - Replaced by the classes in org.apache.struts2.portlet.servlet git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@564594 13f79535-47bb-0310-9956-ffa450edef68 --- .../portlet/util/HttpServletRequestMock.java | 278 ------------------ 1 file changed, 278 deletions(-) delete mode 100644 plugins/portlet/src/main/java/org/apache/struts2/portlet/util/HttpServletRequestMock.java diff --git a/plugins/portlet/src/main/java/org/apache/struts2/portlet/util/HttpServletRequestMock.java b/plugins/portlet/src/main/java/org/apache/struts2/portlet/util/HttpServletRequestMock.java deleted file mode 100644 index 939756606..000000000 --- a/plugins/portlet/src/main/java/org/apache/struts2/portlet/util/HttpServletRequestMock.java +++ /dev/null @@ -1,278 +0,0 @@ -/* - * $Id$ - * - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -package org.apache.struts2.portlet.util; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.UnsupportedEncodingException; -import java.security.Principal; -import java.util.Enumeration; -import java.util.Locale; -import java.util.Map; - -import javax.servlet.RequestDispatcher; -import javax.servlet.ServletInputStream; -import javax.servlet.http.Cookie; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpSession; - -/** - * A simple mock class to interact with Struts 2 API's that require a servlet request - */ -public class HttpServletRequestMock implements HttpServletRequest { - - private String servletPath; - private Map parameterMap; - - public String getAuthType() { - return null; - } - - public String getContextPath() { - return null; - } - - public Cookie[] getCookies() { - return null; - } - - public long getDateHeader(String arg0) { - return 0; - } - - public String getHeader(String arg0) { - return null; - } - - public Enumeration getHeaderNames() { - return null; - } - - public Enumeration getHeaders(String arg0) { - return null; - } - - public int getIntHeader(String arg0) { - return 0; - } - - public String getMethod() { - return null; - } - - public String getPathInfo() { - return null; - } - - public String getPathTranslated() { - return null; - } - - public String getQueryString() { - return null; - } - - public String getRemoteUser() { - return null; - } - - public String getRequestURI() { - return null; - } - - public StringBuffer getRequestURL() { - return null; - } - - public String getRequestedSessionId() { - return null; - } - - public String getServletPath() { - return servletPath; - } - - public HttpSession getSession() { - return null; - } - - public HttpSession getSession(boolean arg0) { - return null; - } - - public Principal getUserPrincipal() { - return null; - } - - public boolean isRequestedSessionIdFromCookie() { - return false; - } - - public boolean isRequestedSessionIdFromURL() { - return false; - } - - public boolean isRequestedSessionIdFromUrl() { - return false; - } - - public boolean isRequestedSessionIdValid() { - return false; - } - - public boolean isUserInRole(String arg0) { - return false; - } - - public Object getAttribute(String arg0) { - return null; - } - - public Enumeration getAttributeNames() { - return null; - } - - public String getCharacterEncoding() { - return null; - } - - public int getContentLength() { - return 0; - } - - public String getContentType() { - return null; - } - - public ServletInputStream getInputStream() throws IOException { - return null; - } - - public String getLocalAddr() { - return null; - } - - public String getLocalName() { - return null; - } - - public int getLocalPort() { - return 0; - } - - public Locale getLocale() { - return null; - } - - public Enumeration getLocales() { - return null; - } - - public String getParameter(String arg0) { - return null; - } - - public Map getParameterMap() { - return parameterMap; - } - - public Enumeration getParameterNames() { - return null; - } - - public String[] getParameterValues(String arg0) { - return null; - } - - public String getProtocol() { - return null; - } - - public BufferedReader getReader() throws IOException { - return null; - } - - public String getRealPath(String arg0) { - return null; - } - - public String getRemoteAddr() { - return null; - } - - public String getRemoteHost() { - return null; - } - - public int getRemotePort() { - return 0; - } - - public RequestDispatcher getRequestDispatcher(String arg0) { - return null; - } - - public String getScheme() { - return null; - } - - public String getServerName() { - return null; - } - - public int getServerPort() { - return 0; - } - - public boolean isSecure() { - return false; - } - - public void removeAttribute(String arg0) { - } - - public void setAttribute(String arg0, Object arg1) { - } - - public void setCharacterEncoding(String arg0) - throws UnsupportedEncodingException { - - } - - /** - * @param parameterMap the parameterMap to set - */ - public HttpServletRequestMock setParameterMap(Map parameterMap) { - this.parameterMap = parameterMap; - return this; - } - - /** - * @param servletPath the servletPath to set - */ - public HttpServletRequestMock setServletPath(String servletPath) { - this.servletPath = servletPath; - return this; - } - - - -}