Add custom interceptors programmatically

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 1732

This topic has not yet been written. The content below is from the topic description.
Adding custom interceptors programatically In order to do that one needs to obtain a reference to the AdvancedCache. This can be done ass follows:   CacheManager cm = getCacheManager();//magic Cache aCache = cm.getCache("aName"); AdvancedCache advCache = aCache.getAdvancedCache();   Then one of the addInterceptor() methods should be used to add the actual interceptor. For further documentation refer to AdvancedCache javadoc.