Package com.gpudb.protocol
Class LockTableRequest.LockType
- java.lang.Object
-
- com.gpudb.protocol.LockTableRequest.LockType
-
- Enclosing class:
- LockTableRequest
public static final class LockTableRequest.LockType extends Object
A set of string constants for theLockTableRequestparameterlockType.The type of lock being applied to the table. Setting it to
STATUSwill return the current lock status of the table without changing it.
-
-
Field Summary
Fields Modifier and Type Field Description static StringNO_ACCESSAllow no read/write operations.static StringREAD_ONLYAllow only read operations.static StringREAD_WRITEAllow all read/write operations.static StringSTATUSShow locked status.static StringWRITE_ONLYAllow only write operations.
-
-
-
Field Detail
-
STATUS
public static final String STATUS
Show locked status.- See Also:
- Constant Field Values
-
NO_ACCESS
public static final String NO_ACCESS
Allow no read/write operations.- See Also:
- Constant Field Values
-
READ_ONLY
public static final String READ_ONLY
Allow only read operations.- See Also:
- Constant Field Values
-
WRITE_ONLY
public static final String WRITE_ONLY
Allow only write operations.- See Also:
- Constant Field Values
-
READ_WRITE
public static final String READ_WRITE
Allow all read/write operations.- See Also:
- Constant Field Values
-
-