org.codehaus.groovy.grails.web.metaclass
Class GetParamsDynamicProperty
java.lang.Object
org.codehaus.groovy.grails.commons.metaclass.AbstractDynamicProperty
org.codehaus.groovy.grails.web.metaclass.AbstractDynamicControllerProperty
org.codehaus.groovy.grails.web.metaclass.GetParamsDynamicProperty
- All Implemented Interfaces:
- DynamicProperty
public class GetParamsDynamicProperty
- extends AbstractDynamicControllerProperty
A dynamic property that adds a "params" map to a controller for accessing request and controller parameters
- Since:
- Oct 24, 2005
- Author:
- Graeme Rocher
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PROPERTY_NAME
public static final String PROPERTY_NAME
- See Also:
- Constant Field Values
GetParamsDynamicProperty
public GetParamsDynamicProperty(HttpServletRequest request,
HttpServletResponse response)
get
public Object get(Object object)
- Description copied from interface:
DynamicProperty
- Call the getter on the given object
- Specified by:
get
in interface DynamicProperty
- Specified by:
get
in class AbstractDynamicControllerProperty
- Parameters:
object
- The target object
- Returns:
- The result of the getter
set
public void set(Object object,
Object newValue)
- Description copied from interface:
DynamicProperty
- Call the setter on the given object
- Specified by:
set
in interface DynamicProperty
- Specified by:
set
in class AbstractDynamicProperty
- Parameters:
object
- The target objectnewValue
- The new value of the property
addParam
public void addParam(String paramName,
Object paramValue)
addParams
public void addParams(Map params)
Copyright (c) 2005-2006 The Grails project