org.jsecurity.web.attr
Interface WebAttribute<T>
- All Known Implementing Classes:
- AbstractWebAttribute, CookieAttribute, RequestParamAttribute
public interface WebAttribute<T>
A WebAttribute is a storage mechanism for a single object accessible during a web request.
It is used to make objects associated with the transient request persistent beyond the request so that they can
be retrieved at a later time.
- Since:
- 0.2
- Author:
- Les Hazlewood
retrieveValue
T retrieveValue(ServletRequest request,
ServletResponse response)
storeValue
void storeValue(T value,
ServletRequest request,
ServletResponse response)
removeValue
void removeValue(ServletRequest request,
ServletResponse response)
Copyright © 2004-2008 JSecurity.