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

import com.adobe.document.xmlform.RenderResultBuffer;
import com.adobe.document.xmlform.ReturnStatus;
import com.adobe.service.InlinedDataBuffer;
import org.omg.CORBA.portable.IDLEntity;

public final class RenderResultForPrint
implements IDLEntity {
    private static final long serialVersionUID = 1;
    public String batchId = "";
    public String documentType = "";
    public ReturnStatus status;
    public int pageCount;
    public int pieceCount;
    public RenderResultBuffer output;
    public InlinedDataBuffer outputTrace;
    public String extraInfo = "";

    public RenderResultForPrint() {
    }

    public RenderResultForPrint(String batchId, String documentType, ReturnStatus status, int pageCount, int pieceCount, RenderResultBuffer output, InlinedDataBuffer outputTrace, String extraInfo) {
        this.batchId = batchId;
        this.documentType = documentType;
        this.status = status;
        this.pageCount = pageCount;
        this.pieceCount = pieceCount;
        this.output = output;
        this.outputTrace = outputTrace;
        this.extraInfo = extraInfo;
    }
}