public enum AccessPermissions extends Enum<AccessPermissions>
| Enum Constant and Description |
|---|
ANNOTATION_MODIFICATION
Access permissions level 3 which indicates that permitted changes, with addition to level 2, are:
annotation creation, deletion and modification.
|
FORM_FIELDS_MODIFICATION
Access permissions level 2 which indicates that permitted changes, with addition to level 1, are:
filling in forms, instantiating page templates, and signing.
|
NO_CHANGES_PERMITTED
Access permissions level 1 which indicates that no changes are permitted except for DSS and DTS creation.
|
UNSPECIFIED
Unspecified access permissions value which makes signature "approval" rather than "certification".
|
| Modifier and Type | Method and Description |
|---|---|
static AccessPermissions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessPermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessPermissions UNSPECIFIED
public static final AccessPermissions NO_CHANGES_PERMITTED
public static final AccessPermissions FORM_FIELDS_MODIFICATION
public static final AccessPermissions ANNOTATION_MODIFICATION
public static AccessPermissions[] values()
for (AccessPermissions c : AccessPermissions.values()) System.out.println(c);
public static AccessPermissions 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 nullCopyright © 1998–2025 Apryse Group NV. All rights reserved.