01: /* Copyright 2004 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05: package org.jasig.portal;
06:
07: import javax.servlet.http.HttpServletRequest;
08:
09: public interface IRequestParamWrapper extends HttpServletRequest {
10: /**
11: * Return a String[] for this parameter
12: * @param name the parameter name
13: * @return String[] if parameter is not an Object[]
14: */
15: public String[] getParameterValues(String name);
16:
17: /**
18: * Return the Object represented by this parameter name
19: * @param name the parameter name
20: * @return Object
21: */
22: public Object[] getObjectParameterValues(String name);
23: }
|