Package com.logicaldoc.core.security
Enum Class Permission
- All Implemented Interfaces:
- Serializable,- Comparable<Permission>,- Constable
Models a permission, that is the ability to do something 
 
 
- READ: permission to read
- WRITE: permission to modify
- ADD: permission to add child elements
- SECURITY: permission to change security rules
- IMMUTABILE: permission to mark a document as immutable
- DELETE: permission to delete
- RENAME: permission to rename
- IMPORT: permission to import
- EXPORT: permission to export
- DOWNLOAD: permission to download
- SIGN: permission to digitally sign
- ARCHIVE: permission to archive
- WORKFLOW: permission to handle workflow
- CALENDAR: permission to handle calendar events
- SUBSCRIPTION: permission to handle events subscription
- PRINT: permission to print
- PASSWORD: permission to put a password
- MOVE: permission to move
- EMAIL: permission to send emails
- AUTOMATION: permission to handle the automation
- STORE: permission to handle the store
- READINGREQ: permission to send reading requests
- PREVIEW: permission to preview a document
- CUSTOMID: permission to edit the Custom ID
- REVISION: permission to edit the Revision
- Since:
- 4.0
- Author:
- Marco Meschieri - LogicalDOC
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionstatic Set<Permission> all()static Set<Permission> static Set<Permission> static PermissionReturns the enum constant of this class with the specified name.static Permission[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.EnumcompareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
READ
- 
DOWNLOAD
- 
WRITE
- 
ADD
- 
SECURITY
- 
IMMUTABLE
- 
DELETE
- 
RENAME
- 
IMPORT
- 
EXPORT
- 
SIGN
- 
ARCHIVE
- 
WORKFLOW
- 
CALENDAR
- 
SUBSCRIPTION
- 
PRINT
- 
PASSWORD
- 
MOVE
- 
EMAIL
- 
AUTOMATION
- 
STORE
- 
READINGREQ
- 
PREVIEW
- 
CUSTOMID
- 
REVISION
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
all
- 
match
- 
forGuests
 
-