Package com.adobe.fd.assembler.client
Class PDFAConversionResult
- java.lang.Object
-
- com.adobe.fd.assembler.client.PDFAConversionResult
-
- All Implemented Interfaces:
java.io.Serializable
public class PDFAConversionResult extends java.lang.Object implements java.io.SerializableThePDFAConversionResultis a container for the results of a PDFA conversion job. It includes the converted document as well as the conversion log and job log generated during the conversion.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PDFAConversionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DocumentgetConversionLog()Sets the results report of the conversion.DocumentgetJobLog()Retrieves the job log that was generated during conversion.DocumentgetPDFADocument()The converted PDF/A document.booleanisPDFA()voidsetConversionLog(Document conversionLog)Retrieves the results report of the conversion.voidsetIsPDFA(boolean isPDFA)voidsetJobLog(Document jobLog)Sets the job log that was generated during conversion.voidsetPDFADocument(Document pdfa)Sets the converted PDF/A documents into this result object.
-
-
-
Method Detail
-
getPDFADocument
public Document getPDFADocument()
The converted PDF/A document.- Returns:
- A
Documentcontaining the converted PDF/A content.
-
setPDFADocument
public void setPDFADocument(Document pdfa)
Sets the converted PDF/A documents into this result object.- Parameters:
pdfa- The PDF/A document from the conversion.
-
getJobLog
public Document getJobLog()
Retrieves the job log that was generated during conversion.- Returns:
- A
Documentcontaining the job log that was generated during conversion.
-
setJobLog
public void setJobLog(Document jobLog)
Sets the job log that was generated during conversion.- Parameters:
jobLog- ADocumentcontaining the job log that was generated during econversion.
-
getConversionLog
public Document getConversionLog()
Sets the results report of the conversion.- Returns:
- the conversionLog
-
setConversionLog
public void setConversionLog(Document conversionLog)
Retrieves the results report of the conversion.- Parameters:
conversionLog- the conversionLog to set
-
isPDFA
public boolean isPDFA()
- Returns:
- the isPDFA
-
setIsPDFA
public void setIsPDFA(boolean isPDFA)
- Parameters:
isPDFA- the isPDFA to set
-
-