RenderInputForPrint.java 1.18 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.document.xmlform;

import com.adobe.document.xmlform.ProcessInformation;
import com.adobe.document.xmlform.RenderBatchOutputType;
import org.omg.CORBA.portable.IDLEntity;

public final class RenderInputForPrint
implements IDLEntity {
    private static final long serialVersionUID = 1;
    public String batchId = "";
    public String documentType = "";
    public String relevant = "";
    public RenderBatchOutputType outputType;
    public String archiveType = "";
    public String[] recordMetaData;
    public ProcessInformation procInfo;
    public int nExtraInfoFlag;

    public RenderInputForPrint() {
    }

    public RenderInputForPrint(String batchId, String documentType, String relevant, RenderBatchOutputType outputType, String archiveType, String[] recordMetaData, ProcessInformation procInfo, int nExtraInfoFlag) {
        this.batchId = batchId;
        this.documentType = documentType;
        this.relevant = relevant;
        this.outputType = outputType;
        this.archiveType = archiveType;
        this.recordMetaData = recordMetaData;
        this.procInfo = procInfo;
        this.nExtraInfoFlag = nExtraInfoFlag;
    }
}