Package org.apache.tika.metadata
Interface AccessPermissions
-
public interface AccessPermissions
Until we can find a common standard, we'll use these options. They were mostly derived from PDFBox's AccessPermission, but some can apply to other document formats, especially CAN_MODIFY and FILL_IN_FORM.
-
-
Field Summary
Fields Modifier and Type Field Description static Property
ASSEMBLE_DOCUMENT
Can the user insert/rotate/delete pages.static Property
CAN_MODIFY
Can any modifications be made to the documentstatic Property
CAN_MODIFY_ANNOTATIONS
Can the user modify annotationsstatic Property
CAN_PRINT
Can the user print the documentstatic Property
CAN_PRINT_DEGRADED
Can the user print an image-degraded version of the document.static Property
EXTRACT_CONTENT
Should content be extracted, generally.static Property
EXTRACT_FOR_ACCESSIBILITY
Should content be extracted for the purposes of accessibility.static Property
FILL_IN_FORM
Can the user fill in a formstatic String
PREFIX
-
-
-
Field Detail
-
PREFIX
static final String PREFIX
- See Also:
- Constant Field Values
-
CAN_MODIFY
static final Property CAN_MODIFY
Can any modifications be made to the document
-
EXTRACT_CONTENT
static final Property EXTRACT_CONTENT
Should content be extracted, generally.
-
EXTRACT_FOR_ACCESSIBILITY
static final Property EXTRACT_FOR_ACCESSIBILITY
Should content be extracted for the purposes of accessibility.
-
ASSEMBLE_DOCUMENT
static final Property ASSEMBLE_DOCUMENT
Can the user insert/rotate/delete pages.
-
FILL_IN_FORM
static final Property FILL_IN_FORM
Can the user fill in a form
-
CAN_MODIFY_ANNOTATIONS
static final Property CAN_MODIFY_ANNOTATIONS
Can the user modify annotations
-
CAN_PRINT
static final Property CAN_PRINT
Can the user print the document
-
CAN_PRINT_DEGRADED
static final Property CAN_PRINT_DEGRADED
Can the user print an image-degraded version of the document.
-
-