PDFFormRenderOptions.java
1.97 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
*/
package com.adobe.fd.forms.api;
import com.adobe.aemfd.docmanager.Document;
import com.adobe.fd.forms.api.AcrobatVersion;
import com.adobe.fd.forms.api.CacheStrategy;
import java.util.List;
public class PDFFormRenderOptions {
private String contentRoot;
private List<String> submitUrls;
private boolean taggedPDF;
private AcrobatVersion acrobatVersion = AcrobatVersion.Acrobat_11;
private String locale;
private String debugDir;
private Document xci;
private CacheStrategy cacheStrategy = CacheStrategy.AGGRESSIVE;
public CacheStrategy getCacheStrategy() {
return this.cacheStrategy;
}
public void setCacheStrategy(CacheStrategy strategy) {
this.cacheStrategy = strategy;
}
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 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 List<String> getSubmitUrls() {
return this.submitUrls;
}
public void setSubmitUrls(List<String> urls) {
this.submitUrls = urls;
}
public Document getXci() {
return this.xci;
}
public void setXci(Document xci) {
this.xci = xci;
}
public String getDebugDir() {
return this.debugDir;
}
public void setDebugDir(String debugDir) {
this.debugDir = debugDir;
}
}