1 package org.apache.jcs.engine;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import org.apache.jcs.engine.behavior.ICacheObserver;
23
24 import org.apache.jcs.engine.behavior.IZombie;
25 import org.apache.jcs.engine.behavior.ICacheListener;
26
27 /***
28 * Description of the Class
29 *
30 */
31 public class ZombieCacheWatch
32 implements ICacheObserver, IZombie
33 {
34 /***
35 * Adds a feature to the CacheListener attribute of the ZombieCacheWatch
36 * object
37 * <p>
38 * @param cacheName
39 * The feature to be added to the CacheListener attribute
40 * @param obj
41 * The feature to be added to the CacheListener attribute
42 */
43 public void addCacheListener( String cacheName, ICacheListener obj )
44 {
45 return;
46 }
47
48 /***
49 * Adds a feature to the CacheListener attribute of the ZombieCacheWatch
50 * object
51 * <p>
52 * @param obj
53 * The feature to be added to the CacheListener attribute
54 */
55 public void addCacheListener( ICacheListener obj )
56 {
57 return;
58 }
59
60
61
62
63
64 public void removeCacheListener( String cacheName, ICacheListener obj )
65 {
66 return;
67 }
68
69
70
71
72
73 public void removeCacheListener( ICacheListener obj )
74 {
75 return;
76 }
77 }