Spring Data Key-Value

org.springframework.data.keyvalue.redis.core
Interface KeyBound<K>

All Known Subinterfaces:
BoundHashOperations<H,HK,HV>, BoundListOperations<K,V>, BoundSetOperations<K,V>, BoundValueOperations<K,V>, BoundZSetOperations<K,V>, RedisCollection<E>, RedisList<E>, RedisMap<K,V>, RedisSet<E>, RedisStore, RedisZSet<E>
All Known Implementing Classes:
AbstractRedisCollection, DefaultRedisList, DefaultRedisMap, DefaultRedisSet, DefaultRedisZSet, RedisAtomicInteger, RedisAtomicLong

public interface KeyBound<K>

Contract defining the bind of the implementing entity to a Redis 'key'. Useful for executing 'bound' operations or operating over Redis 'collection' or 'views'.

Author:
Costin Leau

Method Summary
 K getKey()
          Returns the key associated with this entity.
 

Method Detail

getKey

K getKey()
Returns the key associated with this entity.

Returns:
key associated with the implementing entity

Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.