com.sun.mail.imap
クラス Rights.Right

java.lang.Object
  上位を拡張 com.sun.mail.imap.Rights.Right
含まれているクラス:
Rights

public static final class Rights.Right
extends Object

このインナークラスは個々の権限を表します。 1セットの標準の権限オブジェクトはここで事前に定義されます。


フィールドの概要
static Rights.Right ADMINISTER
          Administer - perform SETACL.
static Rights.Right CREATE
          Create - CREATE new sub-mailboxes in any implementation-defined hierarchy, RENAME or DELETE mailbox.
static Rights.Right DELETE
          Delete - STORE \DELETED flag, perform EXPUNGE.
static Rights.Right INSERT
          Insert - perform APPEND, COPY into mailbox.
static Rights.Right KEEP_SEEN
          Keep seen/unseen information across sessions - STORE \SEEN flag.
static Rights.Right LOOKUP
          Lookup - メールボックスは LIST/LSUB コマンドで見れます。
static Rights.Right POST
          Post - send mail to submission address for mailbox, not enforced by IMAP4 itself.
static Rights.Right READ
          Read - メールボックスを SELECT 後、CHECK、FETCH、PARTIAL、SEARCH、COPY を実行できます。
static Rights.Right WRITE
          Write - STORE flags other than \SEEN and \DELETED.
 
メソッドの概要
static Rights.Right getInstance(char right)
          Get a Right object representing the specified character.
 String toString()
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

フィールドの詳細

LOOKUP

public static final Rights.Right LOOKUP
Lookup - メールボックスは LIST/LSUB コマンドで見れます。


READ

public static final Rights.Right READ
Read - メールボックスを SELECT 後、CHECK、FETCH、PARTIAL、SEARCH、COPY を実行できます。


KEEP_SEEN

public static final Rights.Right KEEP_SEEN
Keep seen/unseen information across sessions - STORE \SEEN flag.


WRITE

public static final Rights.Right WRITE
Write - STORE flags other than \SEEN and \DELETED.


INSERT

public static final Rights.Right INSERT
Insert - perform APPEND, COPY into mailbox.


POST

public static final Rights.Right POST
Post - send mail to submission address for mailbox, not enforced by IMAP4 itself.


CREATE

public static final Rights.Right CREATE
Create - CREATE new sub-mailboxes in any implementation-defined hierarchy, RENAME or DELETE mailbox.


DELETE

public static final Rights.Right DELETE
Delete - STORE \DELETED flag, perform EXPUNGE.


ADMINISTER

public static final Rights.Right ADMINISTER
Administer - perform SETACL.

メソッドの詳細

getInstance

public static Rights.Right getInstance(char right)
Get a Right object representing the specified character. Characters are assigned per RFC 2086.


toString

public String toString()
オーバーライド:
クラス Object 内の toString