1 4 package com.openedit; 5 6 import java.util.HashMap ; 7 import java.util.Map ; 8 9 12 public class TestWebPageRequest extends BaseWebPageRequest 13 { 14 Map fieldFakeSession = new HashMap (); 15 Map fieldFakeProperties = new HashMap (); 16 19 public TestWebPageRequest(WebPageRequest inContext) 20 { 21 super(inContext); 22 } 23 24 27 public TestWebPageRequest() 28 { 29 } 30 31 34 public Object getSessionValue(String inInKey) 35 { 36 return fieldFakeSession.get(inInKey); 37 } 38 39 42 public void putSessionValue(String inInKey, Object inInObject) 43 { 44 fieldFakeSession.put(inInKey, inInObject); 45 putPageValue(inInKey, inInObject); 46 } 47 48 public String getRequestParameter(String inKey) 49 { 50 if (getLocalParameters().containsKey(inKey)) 51 { 52 return (String ) getLocalParameters().get(inKey); 53 } 54 else 55 { 56 return null; 57 } 58 59 } 60 public String [] getRequestParameters( String inKey ) 61 { 62 Object parameter = null; 63 if (getLocalParameters().containsKey(inKey)) 64 { 65 parameter = getLocalParameters().get(inKey); 66 } 67 68 if (parameter instanceof String [] || parameter == null) 69 { 70 return (String []) parameter; 71 } 72 return new String [] {(String ) parameter }; 73 } 74 77 public void removeSessionValue(String inKey) 78 { 79 fieldFakeSession.remove(inKey); 80 } 81 } 82
| Popular Tags
|