AdaptiveFormInfo.java
1.05 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
/*
* 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.utils;
import com.adobe.forms.common.service.FileAttachmentWrapper;
import java.util.List;
import org.apache.sling.api.resource.Resource;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public class AdaptiveFormInfo {
private String xmlStr;
private Resource formResource;
private List<FileAttachmentWrapper> attachments;
public AdaptiveFormInfo(String xmlStr, Resource formResource, List<FileAttachmentWrapper> attachments) {
this.xmlStr = xmlStr;
this.formResource = formResource;
this.attachments = attachments;
}
public String getXmlStr() {
return this.xmlStr;
}
public Resource getFormResource() {
return this.formResource;
}
public List<FileAttachmentWrapper> getAttachments() {
return this.attachments;
}
}