KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > lockmanager > api > LockMBean


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.lockmanager.api;
5
6
7 /**
8  * Lock's management interface
9  */

10 public interface LockMBean {
11
12   String JavaDoc getLockName();
13
14   LockHolder[] getHolders();
15
16   ServerLockRequest[] getPendingRequests();
17
18   ServerLockRequest[] getPendingUpgrades();
19
20   Waiter[] getWaiters();
21
22 }
23
Popular Tags