org.zeroexchange.web.session
Interface SessionDataContainer

All Known Implementing Classes:
MapSessionDataContainer

public interface SessionDataContainer

Container for untyped session data.

Author:
black

Method Summary
<T> T
get(String key)
          Returns data by the key.
 void put(String key, Object object)
          Assigns the data for the specified key.
<T> T
remove(String key)
          Returns data by the key and removes it from the container.
 

Method Detail

get

<T> T get(String key)
Returns data by the key.


remove

<T> T remove(String key)
Returns data by the key and removes it from the container.


put

void put(String key,
         Object object)
Assigns the data for the specified key.



Copyright © 2013. All Rights Reserved.