Class PreflightDocument

java.lang.Object
org.apache.pdfbox.pdmodel.PDDocument
org.apache.pdfbox.preflight.PreflightDocument
All Implemented Interfaces:
Closeable, AutoCloseable

public class PreflightDocument extends PDDocument
  • Field Details

  • Constructor Details

    • PreflightDocument

      public PreflightDocument(COSDocument doc, Format format)
      Create a preflight document based on the COSDocument and load the default configuration for the given format.
      Parameters:
      doc - the underlying COSDocument
      format - the format used for validation
    • PreflightDocument

      @Deprecated public PreflightDocument(COSDocument doc, Format format, PreflightConfiguration config)
      Deprecated.
      use the 4 parameter constructor and pass the source.
      Create a preflight document based on the COSDocument that will use the given configuration bean to process the validation. If the configuration is null, a default configuration will be loaded using the given format.
      Parameters:
      doc - the underlying COSDocument
      format - the format used for validation
      config - the configuration used for validation
    • PreflightDocument

      public PreflightDocument(COSDocument doc, Format format, PreflightConfiguration config, RandomAccessRead source)
      Create a preflight document based on the COSDocument that will use the given configuration bean to process the validation. If the configuration is null, a default configuration will be loaded using the given format.
      Parameters:
      doc - the underlying COSDocument
      format - the format used for validation
      config - the configuration used for validation
      source - input representing the pdf
  • Method Details

    • getValidationErrors

      public List<ValidationResult.ValidationError> getValidationErrors()
      Returns an unmodifiable list of all validation errors.
      Returns:
      an unmodifiable list of all validation errors
    • addValidationError

      public void addValidationError(ValidationResult.ValidationError error)
      Add a validation error.
      Parameters:
      error - the validation error to be added
    • addValidationErrors

      public void addValidationErrors(List<ValidationResult.ValidationError> errorList)
      Add a list of validation errors.
      Parameters:
      errorList - the list of validation errors
    • getContext

      public PreflightContext getContext()
      Returns the associated preflight context. It is created after parsing the pdf.
      Returns:
      the associated preflight context
    • setContext

      public void setContext(PreflightContext context)
      Set the preflight context for this document.
      Parameters:
      context - the associated preflight context
    • validate

      public ValidationResult validate() throws ValidationException
      Check that PDDocument is a valid file according to the format given during the object creation.
      Returns:
      the validation result
      Throws:
      ValidationException
    • getSpecification

      public Format getSpecification()
      Returns the format which is used to validate the pdf document.
      Returns:
      the format used for validation