AdaptiveFormInfo.java 1.05 KB
/*
 * 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;
    }
}