01: package org.araneaframework.mock;
02:
03: import java.util.Iterator;
04: import java.util.Locale;
05: import java.util.Map;
06: import org.apache.commons.lang.NotImplementedException;
07: import org.araneaframework.http.HttpInputData;
08:
09: public class MockHttpInputData extends MockInputData implements
10: HttpInputData {
11: public MockHttpInputData(Map data) {
12: super (data);
13: }
14:
15: public String getCharacterEncoding() {
16: // TODO Auto-generated method stub
17: throw new NotImplementedException();
18: }
19:
20: public String getContainerPath() {
21: // TODO Auto-generated method stub
22: throw new NotImplementedException();
23: }
24:
25: public String getContainerURL() {
26: // TODO Auto-generated method stub
27: throw new NotImplementedException();
28: }
29:
30: public String getContentType() {
31: // TODO Auto-generated method stub
32: throw new NotImplementedException();
33: }
34:
35: public String getContextPath() {
36: // TODO Auto-generated method stub
37: throw new NotImplementedException();
38: }
39:
40: public String getContextURL() {
41: // TODO Auto-generated method stub
42: throw new NotImplementedException();
43: }
44:
45: public Locale getLocale() {
46: // TODO Auto-generated method stub
47: throw new NotImplementedException();
48: }
49:
50: public Iterator getParameterNames() {
51: // TODO Auto-generated method stub
52: throw new NotImplementedException();
53: }
54:
55: public String[] getParameterValues(String name) {
56: // TODO Auto-generated method stub
57: throw new NotImplementedException();
58: }
59:
60: public String getPath() {
61: // TODO Auto-generated method stub
62: throw new NotImplementedException();
63: }
64:
65: public String getRequestURL() {
66: // TODO Auto-generated method stub
67: throw new NotImplementedException();
68: }
69:
70: public void popPathPrefix() {
71: // TODO Auto-generated method stub
72: throw new NotImplementedException();
73: }
74:
75: public void pushPathPrefix(String pathPrefix) {
76: // TODO Auto-generated method stub
77: throw new NotImplementedException();
78: }
79:
80: public void setCharacterEncoding(String encoding) {
81: // TODO Auto-generated method stub
82: throw new NotImplementedException();
83: }
84:
85: }
|