Uses of Interface
com.qoppa.pdf.IPassword

Packages that use IPassword
com.qoppa.pdf General classes used by different objects throughout the library. 
com.qoppa.pdfAssemble jPDFAssemble main classes, used to assemble PDF documents. 
com.qoppa.pdfFields jPDFFields main classes, used to work with PDF interactive forms and fields. 
com.qoppa.pdfImages jPDFImages main classes, used to convert PDF documents to images and images to PDF documents. 
com.qoppa.pdfPrint jPDFPrint main classes, used to print PDF documents. 
com.qoppa.pdfProcess jPDFProcess main classes, used to manipulate PDF documents and pages. 
com.qoppa.pdfSecure jPDFSecure main classes, used encrypt and digitally sign PDF documents. 
com.qoppa.pdfText jPDFText main classes, used to extract text content from PDF documents. 
 

Uses of IPassword in com.qoppa.pdf
 

Classes in com.qoppa.pdf that implement IPassword
 class PDFPassword
          Implementation of the IPassword interface that can hold either a single password or a list of passwords.
 

Methods in com.qoppa.pdf with parameters of type IPassword
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.
 

Uses of IPassword in com.qoppa.pdfAssemble
 

Constructors in com.qoppa.pdfAssemble with parameters of type IPassword
PDFAssemble(InputStream inStream, IPassword password)
          Loads a PDF document from an InputStream.
PDFAssemble(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFAssemble(URL url, IPassword password)
          Loads a PDF document from a URL.
 

Uses of IPassword in com.qoppa.pdfFields
 

Constructors in com.qoppa.pdfFields with parameters of type IPassword
PDFFields(InputStream inStream, IPassword password)
          Loads a PDF document from an InputStream.
PDFFields(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFFields(URL url, IPassword password)
          Loads a PDF document from a URL.
 

Uses of IPassword in com.qoppa.pdfImages
 

Constructors in com.qoppa.pdfImages with parameters of type IPassword
PDFImages(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFImages(InputStream inStream, IPassword password)
          Loads a PDF document from an InputStream.
PDFImages(URL url, IPassword password)
          Loads a PDF document from a URL.
 

Uses of IPassword in com.qoppa.pdfPrint
 

Methods in com.qoppa.pdfPrint with parameters of type IPassword
static void PDFPrint.print(String fileName, PrintSettings printSettings, IPassword password)
          Convenience method to print a PDF document from a file.
static void PDFPrint.print(String fileName, String printerName, PrintSettings printSettings, IPassword password)
          Convenience method to print a PDF document from a file to a named printer.
 

Constructors in com.qoppa.pdfPrint with parameters of type IPassword
PDFPrint(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFPrint(InputStream inStream, IPassword password)
          Loads a PDF document from an InputStream.
PDFPrint(URL url, IPassword password)
          Loads a PDF document from a URL.
 

Uses of IPassword in com.qoppa.pdfProcess
 

Constructors in com.qoppa.pdfProcess with parameters of type IPassword
PDFDocument(InputStream inStream, IPassword password)
          Creates a PDFDocument object from a PDF InputStream.
PDFDocument(PDFSource source, IPassword password)
          Create a PDFDocument object using a PDFSource interface.
PDFDocument(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFDocument(URL url, IPassword password)
          Loads a PDF document from a URL.
 

Uses of IPassword in com.qoppa.pdfSecure
 

Constructors in com.qoppa.pdfSecure with parameters of type IPassword
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.
 

Uses of IPassword in com.qoppa.pdfText
 

Methods in com.qoppa.pdfText with parameters of type IPassword
static DocumentInfo PDFText.getDocumentInfo(InputStream inStream, IPassword password)
          Returns a DocumentInfo object containing the information section of a PDF document (author, title, etc.)
 

Constructors in com.qoppa.pdfText with parameters of type IPassword
PDFText(InputStream inStream, IPassword password)
          Creates a PDFText object from a PDF InputStream.
PDFText(String fileName, IPassword password)
          Loads a PDFText object from a file.
PDFText(URL url, IPassword password)
          Loads a PDFText object from a URL.