Interface SessionAttributesFilter
-
- All Known Implementing Classes:
ImmutableSessionAttributesFilter
public interface SessionAttributesFilter- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> Map<String,T>getAttributes(Class<T> targetClass)Returns the attributes who values implement the specified type.
-
-
-
Method Detail
-
getAttributes
<T> Map<String,T> getAttributes(Class<T> targetClass)
Returns the attributes who values implement the specified type.- Type Parameters:
T- the target instanceof type- Parameters:
targetClass- a target class/interface.- Returns:
- a map of session attribute names and values that are instances of the specified type.
-
-