org.springframework.datastore.engine
Interface EntityInterceptorAware

All Known Subinterfaces:
KeyValueSession<T>, Session
All Known Implementing Classes:
AbstractDatastore, AbstractKeyValueEntityPesister, AbstractSession, EntityPersister, LockableEntityPersister, RedisDatastore, RedisEntityPersister, RedisSession, SimpleMapDatastore, SimpleMapSession

public interface EntityInterceptorAware

An interface for classes aware of EntityInterceptor instances

Since:
1.0

Method Summary
 void addEntityInterceptor(EntityInterceptor interceptor)
          Adds an EntityInterceptor
 void setEntityInterceptors(List<EntityInterceptor> interceptors)
           
 

Method Detail

setEntityInterceptors

void setEntityInterceptors(List<EntityInterceptor> interceptors)
Parameters:
interceptors - A list of entity interceptors

addEntityInterceptor

void addEntityInterceptor(EntityInterceptor interceptor)
Adds an EntityInterceptor

Parameters:
interceptor - The interceptor to add