DoROptions.java
1.48 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.forms.common.service.FileAttachmentWrapper
* org.apache.sling.api.resource.Resource
*/
package com.adobe.aemds.guide.addon.dor;
import com.adobe.forms.common.service.FileAttachmentWrapper;
import java.util.List;
import java.util.Locale;
import org.apache.sling.api.resource.Resource;
public final class DoROptions {
private String data;
private Resource afResource;
private Locale locale;
private boolean includeAttachments = false;
private List<FileAttachmentWrapper> attachments;
public Locale getLocale() {
return this.locale;
}
public void setLocale(Locale locale) {
this.locale = locale;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public Resource getFormResource() {
return this.afResource;
}
public void setFormResource(Resource afResource) {
this.afResource = afResource;
}
public boolean getIncludeAttachments() {
return this.includeAttachments;
}
public void setIncludeAttachments(boolean includeAttachments) {
this.includeAttachments = includeAttachments;
}
public void setFileAttachments(List<FileAttachmentWrapper> attachments) {
this.attachments = attachments;
}
public List<FileAttachmentWrapper> getFileAttachments() {
return this.attachments;
}
}