Class PDFAValidationResult

  • All Implemented Interfaces:
    java.io.Serializable

    public class PDFAValidationResult
    extends java.lang.Object
    implements java.io.Serializable
    The PDFAValidationResult is a container for the results of a PDFA validation request. It includes a boolean indicating conformance to the request options as well as the job log generated during the validation.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Document getJobLog()
      Retrieves the job log that was generated during conversion.
      Document getValidationLog()
      Sets the results report of the validation.
      boolean isPDFA()
      The validation results.
      void setIsPDFA​(boolean isPDFA)
      Sets the whether the PDF/A document was successfully validated in compliance with the validation options.
      void setJobLog​(Document jobLog)
      Sets the job log that was generated during conversion.
      void setValidationLog​(Document validationLog)
      Retrieves the results report of the validation.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • PDFAValidationResult

        public PDFAValidationResult()
    • Method Detail

      • isPDFA

        public boolean isPDFA()
        The validation results.
        Returns:
        A boolean indicating whether the PDF was in compliance with the PDF/A validation options.
      • setIsPDFA

        public void setIsPDFA​(boolean isPDFA)
        Sets the whether the PDF/A document was successfully validated in compliance with the validation options.
        Parameters:
        isPDFA - the value of isPDFA to set.
      • getJobLog

        public Document getJobLog()
        Retrieves the job log that was generated during conversion.
        Returns:
        A Document containing 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 - A Document containing the job log that was generated during econversion.
      • getValidationLog

        public Document getValidationLog()
        Sets the results report of the validation.
        Returns:
        the validationLog
      • setValidationLog

        public void setValidationLog​(Document validationLog)
        Retrieves the results report of the validation.
        Parameters:
        validationLog - the validationLog to set