PDFFormRenderOptions.java 1.97 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.aemfd.docmanager.Document
 */
package com.adobe.fd.forms.api;

import com.adobe.aemfd.docmanager.Document;
import com.adobe.fd.forms.api.AcrobatVersion;
import com.adobe.fd.forms.api.CacheStrategy;
import java.util.List;

public class PDFFormRenderOptions {
    private String contentRoot;
    private List<String> submitUrls;
    private boolean taggedPDF;
    private AcrobatVersion acrobatVersion = AcrobatVersion.Acrobat_11;
    private String locale;
    private String debugDir;
    private Document xci;
    private CacheStrategy cacheStrategy = CacheStrategy.AGGRESSIVE;

    public CacheStrategy getCacheStrategy() {
        return this.cacheStrategy;
    }

    public void setCacheStrategy(CacheStrategy strategy) {
        this.cacheStrategy = strategy;
    }

    public String getContentRoot() {
        return this.contentRoot;
    }

    public void setContentRoot(String url) {
        this.contentRoot = url;
    }

    public boolean getTaggedPDF() {
        return this.taggedPDF;
    }

    public void setTaggedPDF(boolean isTagged) {
        this.taggedPDF = isTagged;
    }

    public AcrobatVersion getAcrobatVersion() {
        return this.acrobatVersion;
    }

    public void setAcrobatVersion(AcrobatVersion acrobatVersion) {
        this.acrobatVersion = acrobatVersion;
    }

    public String getLocale() {
        return this.locale;
    }

    public void setLocale(String locale) {
        this.locale = locale;
    }

    public List<String> getSubmitUrls() {
        return this.submitUrls;
    }

    public void setSubmitUrls(List<String> urls) {
        this.submitUrls = urls;
    }

    public Document getXci() {
        return this.xci;
    }

    public void setXci(Document xci) {
        this.xci = xci;
    }

    public String getDebugDir() {
        return this.debugDir;
    }

    public void setDebugDir(String debugDir) {
        this.debugDir = debugDir;
    }
}