
com.adobe.aemds.guide.utils.AdaptiveFormInfo Maven / Gradle / Ivy
package com.adobe.aemds.guide.utils;
import com.adobe.forms.common.service.FileAttachmentWrapper;
import org.apache.sling.api.resource.Resource;
import java.util.List;
/**
* @pad.exclude Exclude from Published API.
*/
public class AdaptiveFormInfo {
private String xmlStr;
private Resource formResource;
private List attachments;
public AdaptiveFormInfo(String xmlStr, Resource formResource, List attachments) {
this.xmlStr = xmlStr;
this.formResource = formResource;
this.attachments = attachments;
}
public String getXmlStr() {
return xmlStr;
}
public Resource getFormResource() {
return formResource;
}
public List getAttachments() {
return attachments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy