Skip to content

Fixed documentation #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,39 +73,39 @@ public class EncryptionConstants implements Serializable {
*/
public static final int DO_NOT_ENCRYPT_METADATA = 8;
/**
* Add this to the mode to keep encrypt only the embedded files.
* Add this to the mode to encrypt only the embedded files.
*/
public static final int EMBEDDED_FILES_ONLY = 24;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_PRINTING = 4 + 2048;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_MODIFY_CONTENTS = 8;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_COPY = 16;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_MODIFY_ANNOTATIONS = 32;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_FILL_IN = 256;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_SCREENREADERS = 512;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_ASSEMBLY = 1024;
/**
* The operation permitted when the document is opened with the user password.
* The operation is permitted when the document is opened with the user password.
*/
public static final int ALLOW_DEGRADED_PRINTING = 4;

Expand Down