01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.objectserver.lockmanager.api;
06:
07: /**
08: * Lock's management interface
09: */
10: public interface LockMBean {
11:
12: String getLockName();
13:
14: LockHolder[] getHolders();
15:
16: ServerLockRequest[] getPendingRequests();
17:
18: Waiter[] getWaiters();
19:
20: }
|