java.lang.Object
org.eclipse.angus.mail.imap.Rights.Right
- Enclosing class:
- Rights
This inner class represents an individual right. A set
of standard rights objects are predefined here.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Rights.Right
Administer - perform SETACL.static final Rights.Right
Create - CREATE new sub-mailboxes in any implementation-defined hierarchy, RENAME or DELETE mailbox.static final Rights.Right
Delete - STORE \DELETED flag, perform EXPUNGE.static final Rights.Right
Insert - perform APPEND, COPY into mailbox.static final Rights.Right
Keep seen/unseen information across sessions - STORE \SEEN flag.static final Rights.Right
Lookup - mailbox is visible to LIST/LSUB commands.static final Rights.Right
Post - send mail to submission address for mailbox, not enforced by IMAP4 itself.static final Rights.Right
Read - SELECT the mailbox, perform CHECK, FETCH, PARTIAL, SEARCH, COPY from mailboxstatic final Rights.Right
Write - STORE flags other than \SEEN and \DELETED. -
Method Summary
Modifier and TypeMethodDescriptionstatic Rights.Right
getInstance
(char right) Get a Right object representing the specified character.toString()
-
Field Details
-
LOOKUP
Lookup - mailbox is visible to LIST/LSUB commands. -
READ
Read - SELECT the mailbox, perform CHECK, FETCH, PARTIAL, SEARCH, COPY from mailbox -
KEEP_SEEN
Keep seen/unseen information across sessions - STORE \SEEN flag. -
WRITE
Write - STORE flags other than \SEEN and \DELETED. -
INSERT
Insert - perform APPEND, COPY into mailbox. -
POST
Post - send mail to submission address for mailbox, not enforced by IMAP4 itself. -
CREATE
Create - CREATE new sub-mailboxes in any implementation-defined hierarchy, RENAME or DELETE mailbox. -
DELETE
Delete - STORE \DELETED flag, perform EXPUNGE. -
ADMINISTER
Administer - perform SETACL.
-
-
Method Details