SessionAware
@Deprecated public interface SessionAware
Actions that want access to the user's HTTP session attributes should implement this interface.
This will give them access to a Map where they can put objects that can be made available to subsequent requests.
Typical uses may be cached user data such as name, or a shopping cart.
Modifier and Type | Method and Description |
---|---|
void |
setSession(Map<String,Object> session)
Deprecated.
please use
SessionAware.withSession(Map) |
@Deprecated void setSession(Map<String,Object> session)
SessionAware.withSession(Map)
session
- a Map of HTTP session attribute name/value pairs.Copyright © 2000–2020 Apache Software Foundation. All rights reserved.