CreatePDFResult.java
842 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
*/
package com.adobe.pdfg.result;
import com.adobe.aemfd.docmanager.Document;
import java.io.Serializable;
public class CreatePDFResult
implements Serializable {
private static final long serialVersionUID = -5702887287056202551L;
private Document m_CreatedDocument = null;
private Document m_LogDocument = null;
public Document getCreatedDocument() {
return this.m_CreatedDocument;
}
public Document getLogDocument() {
return this.m_LogDocument;
}
public void setCreatedDocument(Document createdDocument) {
this.m_CreatedDocument = createdDocument;
}
public void setLogDocument(Document logDocument) {
this.m_LogDocument = logDocument;
}
}