PostProcessFileInfo.java
919 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
*/
package com.adobe.pdfg.postprocess;
import com.adobe.aemfd.docmanager.Document;
public final class PostProcessFileInfo {
public String pdfFilePath = null;
public String tempPdfFilePath = null;
public String xmpFilePath = null;
public String attachmentFilePath = null;
public String logFilePath = null;
public Document postProcessedDoc = null;
public PostProcessFileInfo() {
}
public PostProcessFileInfo(String _pdfFilePath, String _tempPdfFilePath, String _xmpFilePath, String _attachmentFilePath, String _logFilePath) {
this.pdfFilePath = _pdfFilePath;
this.tempPdfFilePath = _tempPdfFilePath;
this.xmpFilePath = _xmpFilePath;
this.attachmentFilePath = _attachmentFilePath;
this.logFilePath = _logFilePath;
}
}