org.springframework.datastore.redis.collection
Class RedisMap

java.lang.Object
  extended by java.util.AbstractMap
      extended by org.springframework.datastore.redis.collection.RedisMap
All Implemented Interfaces:
Map

public class RedisMap
extends AbstractMap

A map that is backed onto a Redis hash


Nested Class Summary
 
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Constructor Summary
RedisMap(RedisTemplate template, String redisKey)
           
 
Method Summary
 Set entrySet()
           
 Object get(Object key)
           
 Object put(Object key, Object value)
           
 Object remove(Object key)
           
 int size()
           
 
Methods inherited from class java.util.AbstractMap
clear, clone, containsKey, containsValue, equals, hashCode, isEmpty, keySet, putAll, toString, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RedisMap

public RedisMap(RedisTemplate template,
                String redisKey)
Method Detail

entrySet

public Set entrySet()
Specified by:
entrySet in interface Map
Specified by:
entrySet in class AbstractMap

put

public Object put(Object key,
                  Object value)
Specified by:
put in interface Map
Overrides:
put in class AbstractMap

remove

public Object remove(Object key)
Specified by:
remove in interface Map
Overrides:
remove in class AbstractMap

get

public Object get(Object key)
Specified by:
get in interface Map
Overrides:
get in class AbstractMap

size

public int size()
Specified by:
size in interface Map
Overrides:
size in class AbstractMap