ProcessingOptions.java 1.41 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.service.InlinedDataBuffer
 */
package com.adobe.document.xmlform;

import com.adobe.service.InlinedDataBuffer;
import com.adobe.xmlformcallback.WSPair;
import org.omg.CORBA.portable.IDLEntity;

public final class ProcessingOptions
implements IDLEntity {
    private static final long serialVersionUID = 1;
    public InlinedDataBuffer resourceMap;
    public boolean reGeneratePDF;
    public byte[] callBackContext;
    public WSPair[][] resourceInfo;
    public boolean signablePrintPDF;
    public boolean restoreDeltas;
    public boolean forceRestore;
    public boolean runInitializeScripts;
    public InlinedDataBuffer userXCI;

    public ProcessingOptions() {
    }

    public ProcessingOptions(InlinedDataBuffer resourceMap, boolean reGeneratePDF, byte[] callBackContext, WSPair[][] resourceInfo, boolean signablePrintPDF, boolean restoreDeltas, boolean forceRestore, boolean runInitializeScripts, InlinedDataBuffer userXCI) {
        this.resourceMap = resourceMap;
        this.reGeneratePDF = reGeneratePDF;
        this.callBackContext = callBackContext;
        this.resourceInfo = resourceInfo;
        this.signablePrintPDF = signablePrintPDF;
        this.restoreDeltas = restoreDeltas;
        this.forceRestore = forceRestore;
        this.runInitializeScripts = runInitializeScripts;
        this.userXCI = userXCI;
    }
}