BatchInput.java
718 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.service.FileDataBuffer
*/
package com.adobe.document.xmlform;
import com.adobe.document.xmlform.Content;
import com.adobe.service.FileDataBuffer;
import org.omg.CORBA.portable.IDLEntity;
public final class BatchInput
implements IDLEntity {
private static final long serialVersionUID = 1;
public Content templateContent;
public FileDataBuffer data;
public String locale = "";
public BatchInput() {
}
public BatchInput(Content templateContent, FileDataBuffer data, String locale) {
this.templateContent = templateContent;
this.data = data;
this.locale = locale;
}
}