]> source.dussan.org Git - archiva.git/blob
e5919d19b974f62ba8dc1e169f3ea151fb636a5b
[archiva.git] /
1 package org.apache.maven.repository.proxy.web.action.test.stub;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import javax.servlet.RequestDispatcher;
20 import javax.servlet.ServletInputStream;
21 import javax.servlet.ServletRequest;
22 import java.io.BufferedReader;
23 import java.util.Enumeration;
24 import java.util.HashMap;
25 import java.util.Locale;
26 import java.util.Map;
27
28 public class ServletRequestStub
29     implements ServletRequest
30 {
31
32     public Object getAttribute( String key )
33     {
34         return null;
35     }
36
37     public Enumeration getAttributeNames()
38     {
39         return null;
40     }
41
42     public String getCharacterEncoding()
43     {
44         return null;
45     }
46
47     public int getContentLength()
48     {
49         return -1;
50     }
51
52     public int getRemotePort()
53     {
54         return -1;
55     }
56
57     public int getLocalPort()
58     {
59         return -1;
60     }
61
62     public String getLocalAddr()
63     {
64         return null;
65     }
66
67     public String getLocalName()
68     {
69         return null;
70     }
71
72     public String getContentType()
73     {
74         return null;
75     }
76
77     public ServletInputStream getInputStream()
78     {
79         return null;
80     }
81
82     public Locale getLocale()
83     {
84         return null;
85     }
86
87     public Enumeration getLocales()
88     {
89         return null;
90     }
91
92     public String getParameter( String name )
93     {
94         return null;
95     }
96
97     public Map getParameterMap()
98     {
99         HashMap parameterMap = new HashMap();
100
101         parameterMap.put( "key1", "value1" );
102         parameterMap.put( "key2", "value2" );
103
104         return parameterMap;
105     }
106
107     public Enumeration getParameterNames()
108     {
109         return null;
110     }
111
112     public String[] getParameterValues( String name )
113     {
114         return null;
115     }
116
117     public String getProtocol()
118     {
119         return null;
120     }
121
122     public BufferedReader getReader()
123     {
124         return null;
125     }
126
127     public String getRealPath( String path )
128     {
129         return null;
130     }
131
132     public String getRemoteAddr()
133     {
134         return null;
135     }
136
137     public String getRemoteHost()
138     {
139         return null;
140     }
141
142     public RequestDispatcher getRequestDispatcher( String path )
143     {
144         return null;
145     }
146
147     public String getScheme()
148     {
149         return null;
150     }
151
152     public String getServerName()
153     {
154         return null;
155     }
156
157     public int getServerPort()
158     {
159         return -1;
160     }
161
162     public boolean isSecure()
163     {
164         return false;
165     }
166
167     public void removeAttribute( String name )
168     {
169
170     }
171
172     public void setAttribute( String name, Object value )
173     {
174
175     }
176
177     public void setCharacterEncoding( String env )
178     {
179
180     }
181 }