public static enum AccessControlledResource.Priviledge extends Enum<AccessControlledResource.Priviledge>
| Enum Constant and Description |
|---|
ALL |
BIND |
READ
READ permits all other READ operations
|
READ_ACL |
READ_CONTENT
READ the content of resources, but this does not permit reading PROPFIND (milton extension)
|
READ_CURRENT_USER_PRIVILEDGE |
READ_PROPERTIES
Permits PROPFIND (milton extension)
|
UNBIND |
UNLOCK |
WRITE
Includes all other WRITE privs
|
WRITE_ACL |
WRITE_CONTENT |
WRITE_PROPERTIES |
| Modifier and Type | Field and Description |
|---|---|
List<AccessControlledResource.Priviledge> |
contains |
| Modifier and Type | Method and Description |
|---|---|
static AccessControlledResource.Priviledge |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessControlledResource.Priviledge[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessControlledResource.Priviledge READ_CONTENT
public static final AccessControlledResource.Priviledge READ_PROPERTIES
public static final AccessControlledResource.Priviledge READ_CURRENT_USER_PRIVILEDGE
public static final AccessControlledResource.Priviledge READ_ACL
public static final AccessControlledResource.Priviledge READ
public static final AccessControlledResource.Priviledge WRITE_PROPERTIES
public static final AccessControlledResource.Priviledge WRITE_CONTENT
public static final AccessControlledResource.Priviledge WRITE_ACL
public static final AccessControlledResource.Priviledge UNLOCK
public static final AccessControlledResource.Priviledge WRITE
public static final AccessControlledResource.Priviledge BIND
public static final AccessControlledResource.Priviledge UNBIND
public static final AccessControlledResource.Priviledge ALL
public List<AccessControlledResource.Priviledge> contains
public static AccessControlledResource.Priviledge[] values()
for (AccessControlledResource.Priviledge c : AccessControlledResource.Priviledge.values()) System.out.println(c);
public static AccessControlledResource.Priviledge valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null