org.apache.struts2.interceptor
Interface RequestAware
public interface RequestAware
Actions that want access to the current serlvet request attributes should implement this interface.
This interface is only relevant if the Action is used in a servlet environment.
Note that using this interface makes the Action tied to a servlet environment, so it should be
avoided if possible since things like unit testing will become more difficult.
Method Summary |
void |
setRequest(java.util.Map request)
Sets the Map of request attributes in the implementing class. |
setRequest
void setRequest(java.util.Map request)
- Sets the Map of request attributes in the implementing class.
- Parameters:
request
- a Map of HTTP request attribute name/value pairs.
Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.