01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.api;
05:
06: import java.util.Collections;
07: import java.util.Map;
08:
09: public class NullObjectInstanceMonitor implements ObjectInstanceMonitor {
10:
11: public NullObjectInstanceMonitor() {
12: //
13: }
14:
15: public void instanceCreated(String type) {
16: //
17: }
18:
19: public void instanceDestroyed(String type) {
20: //
21: }
22:
23: public Map getInstanceCounts() {
24: return Collections.EMPTY_MAP;
25: }
26:
27: }
|