DoROptions.java 1.48 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.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;
    }
}