Uses of Class
org.eclipse.angus.mail.imap.Rights.Right
Packages that use Rights.Right
Package
Description
An IMAP protocol provider for the Jakarta Mail API
that provides access to an IMAP message store.
-
Uses of Rights.Right in org.eclipse.angus.mail.imap
Fields in org.eclipse.angus.mail.imap declared as Rights.RightModifier and TypeFieldDescriptionstatic final Rights.RightRights.Right.ADMINISTERAdminister - perform SETACL.static final Rights.RightRights.Right.CREATECreate - CREATE new sub-mailboxes in any implementation-defined hierarchy, RENAME or DELETE mailbox.static final Rights.RightRights.Right.DELETEDelete - STORE \DELETED flag, perform EXPUNGE.static final Rights.RightRights.Right.INSERTInsert - perform APPEND, COPY into mailbox.static final Rights.RightRights.Right.KEEP_SEENKeep seen/unseen information across sessions - STORE \SEEN flag.static final Rights.RightRights.Right.LOOKUPLookup - mailbox is visible to LIST/LSUB commands.static final Rights.RightRights.Right.POSTPost - send mail to submission address for mailbox, not enforced by IMAP4 itself.static final Rights.RightRights.Right.READRead - SELECT the mailbox, perform CHECK, FETCH, PARTIAL, SEARCH, COPY from mailboxstatic final Rights.RightRights.Right.WRITEWrite - STORE flags other than \SEEN and \DELETED.Methods in org.eclipse.angus.mail.imap that return Rights.RightModifier and TypeMethodDescriptionstatic Rights.RightRights.Right.getInstance(char right) Get a Right object representing the specified character.Rights.getRights()Return all the rights in this Rights object.Methods in org.eclipse.angus.mail.imap with parameters of type Rights.RightModifier and TypeMethodDescriptionvoidRights.add(Rights.Right right) Add the specified right to this Rights object.booleanRights.contains(Rights.Right right) Check whether the specified right is present in this Rights object.voidRights.remove(Rights.Right right) Remove the specified right from this Rights object.Constructors in org.eclipse.angus.mail.imap with parameters of type Rights.RightModifierConstructorDescriptionRights(Rights.Right right) Construct a Rights object initialized with the given right.