PDFOutputOptions.java
2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
*/
package com.adobe.fd.output.api;
import com.adobe.aemfd.docmanager.Document;
import com.adobe.fd.output.api.AcrobatVersion;
public class PDFOutputOptions {
private String contentRoot;
private boolean taggedPDF;
private boolean linearizedPDF;
private AcrobatVersion acrobatVersion = AcrobatVersion.Acrobat_11;
private String debugDir;
private boolean retainUnsignedSignatureFields;
private boolean retainFormState;
private String locale;
private Document xci;
public String getContentRoot() {
return this.contentRoot;
}
public void setContentRoot(String url) {
this.contentRoot = url;
}
public boolean getTaggedPDF() {
return this.taggedPDF;
}
public void setTaggedPDF(boolean isTagged) {
this.taggedPDF = isTagged;
}
public boolean getLinearizedPDF() {
return this.linearizedPDF;
}
public void setLinearizedPDF(boolean linearizedPDF) {
this.linearizedPDF = linearizedPDF;
}
public AcrobatVersion getAcrobatVersion() {
return this.acrobatVersion;
}
public void setAcrobatVersion(AcrobatVersion acrobatVersion) {
this.acrobatVersion = acrobatVersion;
}
public String getLocale() {
return this.locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public Document getXci() {
return this.xci;
}
public void setXci(Document xci) {
this.xci = xci;
}
public boolean getRetainUnsignedSignatureFields() {
return this.retainUnsignedSignatureFields;
}
public void setRetainUnsignedSignatureFields(boolean retainUnsignedSignatureFields) {
this.retainUnsignedSignatureFields = retainUnsignedSignatureFields;
}
public String getDebugDir() {
return this.debugDir;
}
public void setDebugDir(String debugDir) {
this.debugDir = debugDir;
}
public void setRetainPDFFormState(boolean retainFormState) {
this.retainFormState = retainFormState;
}
public boolean getRetainPDFFormState() {
return this.retainFormState;
}
}