DataOptions.java
1.76 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.sling.api.resource.Resource
*/
package com.adobe.forms.common.service;
import com.adobe.forms.common.service.ContentType;
import java.util.Map;
import org.apache.sling.api.resource.Resource;
public class DataOptions {
private String dataRef;
private Resource formResource;
private String pagePath;
private Resource aemFormContainer;
private String serviceName;
private Map<String, Object> extras;
private ContentType contentType;
public String getDataRef() {
return this.dataRef;
}
public void setDataRef(String dataRef) {
this.dataRef = dataRef;
}
public Resource getFormResource() {
return this.formResource;
}
public void setFormResource(Resource formResource) {
this.formResource = formResource;
}
public String getPagePath() {
return this.pagePath;
}
public void setPagePath(String pagePath) {
this.pagePath = pagePath;
}
public Resource getAemFormContainer() {
return this.aemFormContainer;
}
public void setAemFormContainer(Resource aemFormContainer) {
this.aemFormContainer = aemFormContainer;
}
public String getServiceName() {
return this.serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public Map<String, Object> getExtras() {
return this.extras;
}
public void setExtras(Map<String, Object> extras) {
this.extras = extras;
}
public ContentType getContentType() {
return this.contentType;
}
public void setContentType(ContentType contentType) {
this.contentType = contentType;
}
}