blob: 8f30952875f19e269309626c571dc44d42a8feab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
*
*/
package uk.org.ury.database;
/**
* The various user classes of the database driver.
*
* These refer to various users in the database proper, and thus
* grant various levels of permission to the program.
*
* Please use the least privileged user class that works. For most
* cases, READ_ONLY should work perfectly.
*
* @author Matt Windsor
*
*/
public enum UserClass
{
READ_ONLY,
READ_WRITE
}
|