com.plumtree.server
Class PT_LOCKSTATES
java.lang.Object
|
+--com.plumtree.server.PT_LOCKSTATES
- public final class PT_LOCKSTATES
- extends java.lang.Object
These constants define the lock states for server objects, as returned by
IPTServerContext.GetLockState()
- See Also:
IPTServerContext
|
Field Summary |
static int |
PT_LOCKED
The object is locked, and it can be stored. |
static int |
PT_NEWLYCREATED
The newly created object is stored in memory, but not in the database. |
static int |
PT_NOLOCKINGREQUIRED
This object does not support locking. |
static int |
PT_UNLOCKED
The object is not locked, and it cannot be stored. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PT_UNLOCKED
public static final int PT_UNLOCKED
- The object is not locked, and it cannot be stored.
PT_LOCKED
public static final int PT_LOCKED
- The object is locked, and it can be stored. Once an object is locked, other clients cannot access the object and store changes in it.
PT_NEWLYCREATED
public static final int PT_NEWLYCREATED
- The newly created object is stored in memory, but not in the database. Since the object is stored directly in memory, the lock state is not relevant.
PT_NOLOCKINGREQUIRED
public static final int PT_NOLOCKINGREQUIRED
- This object does not support locking.
PT_LOCKSTATES
public PT_LOCKSTATES()
Copyright © 2003 Plumtree Software Inc. All Rights Reserved.