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 operationsstatic StringREAD_ONLYAllow only read operationsstatic StringREAD_WRITEAllow all read/write operationsstatic StringSTATUSShow locked statusstatic 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
-
-