org.basex.core
Class LockResult

java.lang.Object
  extended by org.basex.core.LockResult

public class LockResult
extends java.lang.Object

Result object for databases function.

See Also:
Proc.databases(LockResult)

Field Summary
 StringList read
          List of databases to read lock.
 boolean readAll
          Flag if global read lock is required.
 StringList write
          List of databases to write lock.
 boolean writeAll
          Flag if global write lock is required.
 
Constructor Summary
LockResult()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

readAll

public boolean readAll
Flag if global read lock is required.


writeAll

public boolean writeAll
Flag if global write lock is required.


read

public StringList read
List of databases to read lock.


write

public StringList write
List of databases to write lock.

Constructor Detail

LockResult

public LockResult()