summaryrefslogtreecommitdiff
path: root/java/JACE/netsvcs/Token/LockOperations.java
blob: f5dfa5bc486f50826fb3cff31d513d60437e67c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package JACE.netsvcs.Token;

/**
 * Constants defining the operation types available on a lock.  
 * For information on specifying a read/write style lock, see LockTypes.
 *
 *@see LockTypes
 */
public interface LockOperations
{
  int ACQUIRE = 0;
  int RELEASE = 1;
  int RENEW = 2;
  int REMOVE = 3;
  int TRY_ACQUIRE = 4;
}