Uses of Class
com.qoppa.pdf.PDFException

Packages that use PDFException
com.qoppa.pdf General classes used by different objects throughout the library. 
com.qoppa.pdf.form Classes related to PDF Acroform and its form fields. 
com.qoppa.pdfSecure jPDFSecure main classes, used encrypt and digitally sign PDF documents. 
 

Uses of PDFException in com.qoppa.pdf
 

Subclasses of PDFException in com.qoppa.pdf
 class PDFPermissionException
          Exception thrown when there is any permission error.
 

Methods in com.qoppa.pdf that throw PDFException
static DocumentInfo DocumentInfo.getDocumentInfo(String fileName, IPassword passwords)
          Static method to get the document information from a document in a file.
static DocumentInfo DocumentInfo.getDocumentInfo(InputStream inStream, IPassword password)
          Static method to get the document information from a document from an InputStream.
static DocumentInfo DocumentInfo.getDocumentInfo(URL url, IPassword password)
          Static method to get the document information from a document from a URL.
abstract  void DocumentInfo.setTitle(String title)
          Sets the document's title.
abstract  void DocumentInfo.setAuthor(String author)
          Set the document's author.
abstract  void DocumentInfo.setCreationDate(Date creationDate)
          Set the document's creation date.
abstract  void DocumentInfo.setCreator(String creator)
          Set the document's creator.
abstract  void DocumentInfo.setKeywords(String keywords)
          Set the document's keywords.
abstract  void DocumentInfo.setModifiedDate(Date modDate)
          Set the document's modified date.
abstract  void DocumentInfo.setProducer(String producer)
          Set the document's producer.
abstract  void DocumentInfo.setSubject(String subject)
          Set the document's subject.
abstract  void DocumentInfo.setXMPMetadata(String xmpString, String charsetName)
          Sets the XMP metadata block in the document.
abstract  void DocumentInfo.setXMPMetadata(byte[] xmpData)
          Sets the XMP metadata block in the document.
abstract  void DocumentInfo.setCustomProperty(String key, String value)
          Sets a custom application property in the document info for the document.
 

Constructors in com.qoppa.pdf that throw PDFException
SigningInformation(String pkcs12File, String ksPWD, String entryAlias, String aliasPWD)
          Constructs a SigningInformation object and gets the digital ID from a named PKCS#12 file.
SigningInformation(KeyStore ks, String entryAlias, String aliasPWD)
          Constructs a SigningInformation object and gets the digital ID from a Java KeyStore object.
 

Uses of PDFException in com.qoppa.pdf.form
 

Methods in com.qoppa.pdf.form that throw PDFException
 void SignatureField.setSignDateTime(Date signDateTime)
          Sets the signature date and time from a Java date object.
 void SignatureField.setSignLocation(String signLocation)
          Sets the signature location.
 void SignatureField.setSignName(String signName)
          Sets the signature name.
 void SignatureField.setSignReason(String signReason)
          Sets the signature reason.
 void FormField.reset()
          Resets the field to its default value.
 void FormField.flattenField()
          Flattens the field into the document's content layer.
 

Uses of PDFException in com.qoppa.pdfSecure
 

Methods in com.qoppa.pdfSecure that throw PDFException
 void PDFSecure.setSecurity(String newPermPwd, String newOpenPwd, PDFPermissions permissions, String currentPermPwd, int encryptType)
          Sets the security for this document.
 void PDFSecure.saveDocument(String fileName)
          Saves this document to a file.
 void PDFSecure.saveDocument(OutputStream outStream)
          Saves this document to an output stream.
 void PDFSecure.clearSecurity(String currentPermissionsPwd)
          Clears the security for this document.
 void PDFSecure.signDocument(SignatureField signField, SigningInformation signingInfo)
          Signs this document using the given signature field.
 SignatureField PDFSecure.addSignatureField(int pageIndex, String fieldName, Rectangle2D bounds)
          Adds a signature field to a page in the document.
 

Constructors in com.qoppa.pdfSecure that throw PDFException
PDFSecure(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFSecure(InputStream inStream, IPassword password)
          Loads a PDF document from an InputStream.
PDFSecure(URL url, IPassword password)
          Loads a PDF document from a URL.