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.mgmt;
05:
06: /**
07: * A facade for an entry in logical DSO map
08: */
09: public interface MapEntryFacade {
10:
11: Object getKey();
12:
13: Object getValue();
14:
15: }
|