org.codehaus.groovy.grails.web.metaclass
Class GetSessionDynamicProperty
java.lang.Object
org.codehaus.groovy.grails.commons.metaclass.AbstractDynamicProperty
org.codehaus.groovy.grails.web.metaclass.AbstractDynamicControllerProperty
org.codehaus.groovy.grails.web.metaclass.GetSessionDynamicProperty
- All Implemented Interfaces:
- DynamicProperty
public class GetSessionDynamicProperty
- extends AbstractDynamicControllerProperty
A dynamic property that adds a "session" map to a controller for accessing the Http Session
- Since:
- Oct 24, 2005
- Author:
- Graeme Rocher
|
Method Summary |
Object |
get(Object object)
Call the getter on the given object |
void |
set(Object object,
Object newValue)
Call the setter on the given object |
| 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
GetSessionDynamicProperty
public GetSessionDynamicProperty(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
Copyright (c) 2005-2006 The Grails project