01: package javax.cache; 02: 03: /** 04: * 05: */ 06: public interface CacheManagerListener { 07: 08: void onRegister(String cacheName); 09: 10: void onUnregister(String cacheName); 11: 12: void stopping(); 13: 14: void terminated(); 15: }