EmailRights class

Rights that apply to emails.

Signature

public final class EmailRights

Properties

Name Signature Notes
ALL
public final static Collection<String> ALL = Collections.unmodifiableCollection(Arrays.asList(CommonRights.View, CommonRights.Owner, Reply, ReplyAll, Forward, Extract, Print));
Specifies a list of all the rights that apply to emails; Reply, Reply All, Forward, Extract and Print.
Extract
public final static String Extract = EditableDocumentRights.Extract;
Specifies a right that allows content to be extracted from a protected email and placed in an unprotected, or a different protected, format. Same value as EditableDocumentRights.Extract.
Forward
public final static String Forward = "FORWARD";
Specifies a right that allows a protected email message to be forwarded.
Print
public final static String Print = EditableDocumentRights.Print;
Specifies a right that allows protected email content to be printed. Same value as EditableDocumentRights.Print.
Reply
public final static String Reply = "REPLY";
Specifies a right that allows a protected email message to be replied to with a message that includes a copy of the protected content.
ReplyAll
public final static String ReplyAll = "REPLYALL";
Specifies a right that allows reply-all to a protected email message with a message that includes a copy of the protected content.

Defined in

EmailRights.java

Supported Platforms

Minimum supported OS version
Android 4.0.3 (API level 15)

Package

com.microsoft.rightsmanagement

Remarks

For more information about the built-in rights and the usage restrictions associated with them that apps should observe, see Built-in Rights Usage Restriction Reference.

Thread Safety

Members of this class are not guaranteed to be thread safe.