From 835256964f3fa64587a0e05b859d012d125be308 Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Thu, 20 Feb 2014 10:54:04 +0100 Subject: Documentation update --- .../egiz/pdfas/wrapper/ByteArrayDataSink_OLD.html | 372 ++++++++++ .../pdfas/wrapper/ByteArrayDataSource_OLD.html | 371 ++++++++++ .../at/gv/egiz/pdfas/wrapper/FileDataSource.html | 376 ++++++++++ .../at/gv/egiz/pdfas/wrapper/LegacyMainTest.html | 254 +++++++ .../full/at/gv/egiz/pdfas/wrapper/PdfAsObject.html | 701 +++++++++++++++++++ .../egiz/pdfas/wrapper/SignParameterWrapper.html | 301 ++++++++ .../at/gv/egiz/pdfas/wrapper/SignResultImpl.html | 366 ++++++++++ .../egiz/pdfas/wrapper/SignatureCheckWrapper.html | 291 ++++++++ .../wrapper/SignatureDetailInformationWrapper.html | 648 ++++++++++++++++++ .../egiz/pdfas/wrapper/SignaturePositionImpl.html | 351 ++++++++++ .../egiz/pdfas/wrapper/VerifyParameterWrapper.html | 256 +++++++ .../gv/egiz/pdfas/wrapper/VerifyResultWrapper.html | 756 +++++++++++++++++++++ .../gv/egiz/pdfas/wrapper/VerifyResultsImpl.html | 268 ++++++++ .../at/gv/egiz/pdfas/wrapper/package-frame.html | 31 + .../at/gv/egiz/pdfas/wrapper/package-summary.html | 179 +++++ .../at/gv/egiz/pdfas/wrapper/package-tree.html | 138 ++++ 16 files changed, 5659 insertions(+) create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSink_OLD.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSource_OLD.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/FileDataSource.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/LegacyMainTest.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/PdfAsObject.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/SignParameterWrapper.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/SignResultImpl.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/SignatureCheckWrapper.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/SignatureDetailInformationWrapper.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/SignaturePositionImpl.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/VerifyParameterWrapper.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultWrapper.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultsImpl.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/package-frame.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/package-summary.html create mode 100644 docs/full/at/gv/egiz/pdfas/wrapper/package-tree.html (limited to 'docs/full/at/gv/egiz/pdfas/wrapper') diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSink_OLD.html b/docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSink_OLD.html new file mode 100644 index 00000000..59d2e135 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSink_OLD.html @@ -0,0 +1,372 @@ + + + + + +ByteArrayDataSink_OLD + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class ByteArrayDataSink_OLD

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    DataSink
    +
    +
    +
    +
    public class ByteArrayDataSink_OLD
    +extends java.lang.Object
    +implements DataSink
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.io.OutputStreamcreateOutputStream(java.lang.String mimeType) +
      Creates an OutputStream for binary data.
      +
      java.io.OutputStreamcreateOutputStream(java.lang.String mimeType, + java.lang.String characterEncoding) +
      Creates an OutputStream for character data.
      +
      java.io.ByteArrayOutputStreamgetBAOS() 
      java.lang.StringgetCharacterEncoding() +
      Returns the character encoding of the data stream.
      +
      java.lang.StringgetMimeType() +
      Returns the mime type of the data stream.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ByteArrayDataSink_OLD

        +
        public ByteArrayDataSink_OLD()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getBAOS

        +
        public java.io.ByteArrayOutputStream getBAOS()
        +
      • +
      + + + +
        +
      • +

        createOutputStream

        +
        public java.io.OutputStream createOutputStream(java.lang.String mimeType)
        +                                        throws java.io.IOException
        +
        Description copied from interface: DataSink
        +
        Creates an OutputStream for binary data. + +

        + Note that the stream may be written only once. Creating another stream + overwrites the existing one. +

        +
        +
        Specified by:
        +
        createOutputStream in interface DataSink
        +
        Parameters:
        mimeType - The mime type of the output data.
        +
        Returns:
        Returns the created output stream.
        +
        Throws:
        +
        java.io.IOException - Thrown if the stream cannot be created.
        +
      • +
      + + + +
        +
      • +

        createOutputStream

        +
        public java.io.OutputStream createOutputStream(java.lang.String mimeType,
        +                                      java.lang.String characterEncoding)
        +                                        throws java.io.IOException
        +
        Description copied from interface: DataSink
        +
        Creates an OutputStream for character data. + +

        + This is basically the same as DataSink.createOutputStream(String), but + allows to specify the character encoding. +

        +
        +
        Specified by:
        +
        createOutputStream in interface DataSink
        +
        Parameters:
        mimeType - The mime type of the output data.
        characterEncoding - The character encoding of the data.
        +
        Returns:
        Returns the created output stream.
        +
        Throws:
        +
        java.io.IOException - Thrown if the stream cannot be created.
        +
      • +
      + + + +
        +
      • +

        getMimeType

        +
        public java.lang.String getMimeType()
        +
        Description copied from interface: DataSink
        +
        Returns the mime type of the data stream. + +

        + This is only valid after a stream has been created. +

        +
        +
        Specified by:
        +
        getMimeType in interface DataSink
        +
        Returns:
        Returns the mime type of the data stream.
        +
      • +
      + + + +
        +
      • +

        getCharacterEncoding

        +
        public java.lang.String getCharacterEncoding()
        +
        Description copied from interface: DataSink
        +
        Returns the character encoding of the data stream. + +

        + This is only valid after a stream has been created. Null means that no + character encoding was specified for the data (e.g. if the data is binary). +

        +
        +
        Specified by:
        +
        getCharacterEncoding in interface DataSink
        +
        Returns:
        Returns the character encoding of the data stream.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSource_OLD.html b/docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSource_OLD.html new file mode 100644 index 00000000..3a53557c --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/ByteArrayDataSource_OLD.html @@ -0,0 +1,371 @@ + + + + + +ByteArrayDataSource_OLD + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class ByteArrayDataSource_OLD

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    DataSource
    +
    +
    +
    +
    public class ByteArrayDataSource_OLD
    +extends java.lang.Object
    +implements DataSource
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.io.InputStreamcreateInputStream() +
      Creates a new InputStream that allows to read out the document's binary + data from the beginning.
      +
      byte[]getAsByteArray() +
      Returns the data of this DataSource as a byte array for random read only access.
      +
      java.lang.StringgetCharacterEncoding() +
      Returns the character encoding of the data.
      +
      intgetLength() +
      Returns the length (number of bytes) of the stream.
      +
      java.lang.StringgetMimeType() +
      Returns the mime type of the data.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ByteArrayDataSource_OLD

        +
        public ByteArrayDataSource_OLD(byte[] data)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        createInputStream

        +
        public java.io.InputStream createInputStream()
        +
        Description copied from interface: DataSource
        +
        Creates a new InputStream that allows to read out the document's binary + data from the beginning.
        +
        +
        Specified by:
        +
        createInputStream in interface DataSource
        +
        Returns:
        Returns the InputStream with the binary data.
        +
      • +
      + + + +
        +
      • +

        getLength

        +
        public int getLength()
        +
        Description copied from interface: DataSource
        +
        Returns the length (number of bytes) of the stream.
        +
        +
        Specified by:
        +
        getLength in interface DataSource
        +
        Returns:
        Returns the length (number of bytes) of the stream.
        +
      • +
      + + + +
        +
      • +

        getAsByteArray

        +
        public byte[] getAsByteArray()
        +
        Description copied from interface: DataSource
        +
        Returns the data of this DataSource as a byte array for random read only access. + +

        + Calling this method indicates that you need a byte array for random + read only access. The DataSource implementation should of + course cache this byte array to avoid too much memory usage. +

        +

        + Performance analysis has shown that the libraries internally convert the + streams to byte arrays and that file system access is very slow. +

        +

        + Never write to this byte array! +

        +
        +
        Specified by:
        +
        getAsByteArray in interface DataSource
        +
        Returns:
        Returns the data of this DataSource as a byte array for random read only access.
        +
      • +
      + + + +
        +
      • +

        getMimeType

        +
        public java.lang.String getMimeType()
        +
        Description copied from interface: DataSource
        +
        Returns the mime type of the data.
        +
        +
        Specified by:
        +
        getMimeType in interface DataSource
        +
        Returns:
        Returns the mime type of the data.
        +
      • +
      + + + +
        +
      • +

        getCharacterEncoding

        +
        public java.lang.String getCharacterEncoding()
        +
        Description copied from interface: DataSource
        +
        Returns the character encoding of the data. + +

        + This makes only sense for character based mime types. +

        +
        +
        Specified by:
        +
        getCharacterEncoding in interface DataSource
        +
        Returns:
        Returns the character encoding of the data or null if no encoding + is applicable (e.g. if the data is binary).
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/FileDataSource.html b/docs/full/at/gv/egiz/pdfas/wrapper/FileDataSource.html new file mode 100644 index 00000000..9b5b5f11 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/FileDataSource.html @@ -0,0 +1,376 @@ + + + + + +FileDataSource + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class FileDataSource

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    DataSource
    +
    +
    +
    +
    public class FileDataSource
    +extends java.lang.Object
    +implements DataSource
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      FileDataSource(java.io.File file) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.io.InputStreamcreateInputStream() +
      Creates a new InputStream that allows to read out the document's binary + data from the beginning.
      +
      byte[]getAsByteArray() +
      Returns the data of this DataSource as a byte array for random read only access.
      +
      java.lang.StringgetCharacterEncoding() +
      Returns the character encoding of the data.
      +
      intgetLength() +
      Returns the length (number of bytes) of the stream.
      +
      java.lang.StringgetMimeType() +
      Returns the mime type of the data.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FileDataSource

        +
        public FileDataSource(java.io.File file)
        +               throws java.io.FileNotFoundException,
        +                      java.io.IOException
        +
        Throws:
        +
        java.io.FileNotFoundException
        +
        java.io.IOException
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        createInputStream

        +
        public java.io.InputStream createInputStream()
        +
        Description copied from interface: DataSource
        +
        Creates a new InputStream that allows to read out the document's binary + data from the beginning.
        +
        +
        Specified by:
        +
        createInputStream in interface DataSource
        +
        Returns:
        Returns the InputStream with the binary data.
        +
      • +
      + + + +
        +
      • +

        getLength

        +
        public int getLength()
        +
        Description copied from interface: DataSource
        +
        Returns the length (number of bytes) of the stream.
        +
        +
        Specified by:
        +
        getLength in interface DataSource
        +
        Returns:
        Returns the length (number of bytes) of the stream.
        +
      • +
      + + + +
        +
      • +

        getAsByteArray

        +
        public byte[] getAsByteArray()
        +
        Description copied from interface: DataSource
        +
        Returns the data of this DataSource as a byte array for random read only access. + +

        + Calling this method indicates that you need a byte array for random + read only access. The DataSource implementation should of + course cache this byte array to avoid too much memory usage. +

        +

        + Performance analysis has shown that the libraries internally convert the + streams to byte arrays and that file system access is very slow. +

        +

        + Never write to this byte array! +

        +
        +
        Specified by:
        +
        getAsByteArray in interface DataSource
        +
        Returns:
        Returns the data of this DataSource as a byte array for random read only access.
        +
      • +
      + + + +
        +
      • +

        getMimeType

        +
        public java.lang.String getMimeType()
        +
        Description copied from interface: DataSource
        +
        Returns the mime type of the data.
        +
        +
        Specified by:
        +
        getMimeType in interface DataSource
        +
        Returns:
        Returns the mime type of the data.
        +
      • +
      + + + +
        +
      • +

        getCharacterEncoding

        +
        public java.lang.String getCharacterEncoding()
        +
        Description copied from interface: DataSource
        +
        Returns the character encoding of the data. + +

        + This makes only sense for character based mime types. +

        +
        +
        Specified by:
        +
        getCharacterEncoding in interface DataSource
        +
        Returns:
        Returns the character encoding of the data or null if no encoding + is applicable (e.g. if the data is binary).
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/LegacyMainTest.html b/docs/full/at/gv/egiz/pdfas/wrapper/LegacyMainTest.html new file mode 100644 index 00000000..0f4d6e99 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/LegacyMainTest.html @@ -0,0 +1,254 @@ + + + + + +LegacyMainTest + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class LegacyMainTest

+
+
+ +
+
    +
  • +
    +
    +
    public class LegacyMainTest
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      LegacyMainTest() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidmain(java.lang.String[] args) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LegacyMainTest

        +
        public LegacyMainTest()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        main

        +
        public static void main(java.lang.String[] args)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/PdfAsObject.html b/docs/full/at/gv/egiz/pdfas/wrapper/PdfAsObject.html new file mode 100644 index 00000000..26034df3 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/PdfAsObject.html @@ -0,0 +1,701 @@ + + + + + +PdfAsObject + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class PdfAsObject

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    PdfAs
    +
    +
    +
    +
    public class PdfAsObject
    +extends java.lang.Object
    +implements PdfAs
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/SignParameterWrapper.html b/docs/full/at/gv/egiz/pdfas/wrapper/SignParameterWrapper.html new file mode 100644 index 00000000..d4c5305e --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/SignParameterWrapper.html @@ -0,0 +1,301 @@ + + + + + +SignParameterWrapper + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class SignParameterWrapper

+
+
+ +
+
    +
  • +
    +
    +
    public class SignParameterWrapper
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/SignResultImpl.html b/docs/full/at/gv/egiz/pdfas/wrapper/SignResultImpl.html new file mode 100644 index 00000000..4263c21d --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/SignResultImpl.html @@ -0,0 +1,366 @@ + + + + + +SignResultImpl + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class SignResultImpl

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    SignResult
    +
    +
    +
    +
    public class SignResultImpl
    +extends java.lang.Object
    +implements SignResult
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.ListgetNonTextualObjects() +
      Returns a list<NonTextObjectInfo of non textual objects in the pdf document.
      +
      DataSinkgetOutputDocument() +
      Returns the filled output data sink.
      +
      SignaturePositiongetSignaturePosition() +
      Returns the position where the signature is finally placed.
      +
      java.security.cert.X509CertificategetSignerCertificate() +
      Returns the certificate of the signer.
      +
      booleanhasNonTextualObjects() +
      Returns if pdf has non textual objects (only for textual signature available).
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SignResultImpl

        +
        public SignResultImpl(DataSink data,
        +              java.security.cert.X509Certificate cert,
        +              SignaturePosition position)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOutputDocument

        +
        public DataSink getOutputDocument()
        +
        Description copied from interface: SignResult
        +
        Returns the filled output data sink.
        +
        +
        Specified by:
        +
        getOutputDocument in interface SignResult
        +
        Returns:
        Returns the filled output data sink.
        +
      • +
      + + + +
        +
      • +

        getSignerCertificate

        +
        public java.security.cert.X509Certificate getSignerCertificate()
        +
        Description copied from interface: SignResult
        +
        Returns the certificate of the signer.
        +
        +
        Specified by:
        +
        getSignerCertificate in interface SignResult
        +
        Returns:
        Returns the certificate of the signer.
        +
      • +
      + + + +
        +
      • +

        getSignaturePosition

        +
        public SignaturePosition getSignaturePosition()
        +
        Description copied from interface: SignResult
        +
        Returns the position where the signature is finally placed. + +

        + This information can be useful for post-processing the document. +

        + +

        + Consult the PDF-AS documentation section Commandline for further + information about positioning. +

        +
        +
        Specified by:
        +
        getSignaturePosition in interface SignResult
        +
        Returns:
        Returns the position where the signature is finally placed. May + return null if no position information is available.
        +
      • +
      + + + +
        +
      • +

        getNonTextualObjects

        +
        public java.util.List getNonTextualObjects()
        +
        Description copied from interface: SignResult
        +
        Returns a list<NonTextObjectInfo of non textual objects in the pdf document. + Only available for textual signatures. Show this to the user who signed the textual content only!
        +
        +
        Specified by:
        +
        getNonTextualObjects in interface SignResult
        +
        Returns:
        List<NonTextObjectInfo or null of not available (binary signature)
        +
      • +
      + + + +
        +
      • +

        hasNonTextualObjects

        +
        public boolean hasNonTextualObjects()
        +
        Description copied from interface: SignResult
        +
        Returns if pdf has non textual objects (only for textual signature available).
        +
        +
        Specified by:
        +
        hasNonTextualObjects in interface SignResult
        +
        Returns:
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/SignatureCheckWrapper.html b/docs/full/at/gv/egiz/pdfas/wrapper/SignatureCheckWrapper.html new file mode 100644 index 00000000..96d2a069 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/SignatureCheckWrapper.html @@ -0,0 +1,291 @@ + + + + + +SignatureCheckWrapper + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class SignatureCheckWrapper

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    SignatureCheck
    +
    +
    +
    +
    public class SignatureCheckWrapper
    +extends java.lang.Object
    +implements SignatureCheck
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intgetCode() +
      Returns the response code of the check.
      +
      java.lang.StringgetMessage() +
      Returns the textual response message of the check (corresponding to the + code).
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SignatureCheckWrapper

        +
        public SignatureCheckWrapper(SignatureCheck newCheck)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getCode

        +
        public int getCode()
        +
        Description copied from interface: SignatureCheck
        +
        Returns the response code of the check.
        +
        +
        Specified by:
        +
        getCode in interface SignatureCheck
        +
        Returns:
        Returns the response code of the check.
        +
      • +
      + + + +
        +
      • +

        getMessage

        +
        public java.lang.String getMessage()
        +
        Description copied from interface: SignatureCheck
        +
        Returns the textual response message of the check (corresponding to the + code).
        +
        +
        Specified by:
        +
        getMessage in interface SignatureCheck
        +
        Returns:
        Returns the textual response message of the check (corresponding to + the code).
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/SignatureDetailInformationWrapper.html b/docs/full/at/gv/egiz/pdfas/wrapper/SignatureDetailInformationWrapper.html new file mode 100644 index 00000000..a8ca68ae --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/SignatureDetailInformationWrapper.html @@ -0,0 +1,648 @@ + + + + + +SignatureDetailInformationWrapper + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class SignatureDetailInformationWrapper

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/SignaturePositionImpl.html b/docs/full/at/gv/egiz/pdfas/wrapper/SignaturePositionImpl.html new file mode 100644 index 00000000..ef129711 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/SignaturePositionImpl.html @@ -0,0 +1,351 @@ + + + + + +SignaturePositionImpl + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class SignaturePositionImpl

+
+
+ +
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      floatgetHeight() +
      Returns the height of the signature.
      +
      intgetPage() +
      Returns the page on which the signature was placed.
      +
      floatgetWidth() +
      Returns the width of the signature.
      +
      floatgetX() +
      Returns the x position.
      +
      floatgetY() +
      Returns the y position.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SignaturePositionImpl

        +
        public SignaturePositionImpl(SignaturePosition position)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getPage

        +
        public int getPage()
        +
        Description copied from interface: SignaturePosition
        +
        Returns the page on which the signature was placed.
        +
        +
        Specified by:
        +
        getPage in interface SignaturePosition
        +
        Returns:
        Returns the page on which the signature was placed.
        +
      • +
      + + + +
        +
      • +

        getX

        +
        public float getX()
        +
        Description copied from interface: SignaturePosition
        +
        Returns the x position.
        +
        +
        Specified by:
        +
        getX in interface SignaturePosition
        +
        Returns:
        Returns the x position.
        +
      • +
      + + + +
        +
      • +

        getY

        +
        public float getY()
        +
        Description copied from interface: SignaturePosition
        +
        Returns the y position.
        +
        +
        Specified by:
        +
        getY in interface SignaturePosition
        +
        Returns:
        Returns the y position.
        +
      • +
      + + + +
        +
      • +

        getWidth

        +
        public float getWidth()
        +
        Description copied from interface: SignaturePosition
        +
        Returns the width of the signature.
        +
        +
        Specified by:
        +
        getWidth in interface SignaturePosition
        +
        Returns:
        Returns the width of the signature.
        +
      • +
      + + + +
        +
      • +

        getHeight

        +
        public float getHeight()
        +
        Description copied from interface: SignaturePosition
        +
        Returns the height of the signature.
        +
        +
        Specified by:
        +
        getHeight in interface SignaturePosition
        +
        Returns:
        Returns the height of the signature.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/VerifyParameterWrapper.html b/docs/full/at/gv/egiz/pdfas/wrapper/VerifyParameterWrapper.html new file mode 100644 index 00000000..04d5b558 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/VerifyParameterWrapper.html @@ -0,0 +1,256 @@ + + + + + +VerifyParameterWrapper + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class VerifyParameterWrapper

+
+
+ +
+
    +
  • +
    +
    +
    public class VerifyParameterWrapper
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static VerifyParametertoNewParameters(VerifyParameters oldParameters, + Configuration config) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultWrapper.html b/docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultWrapper.html new file mode 100644 index 00000000..0a805b95 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultWrapper.html @@ -0,0 +1,756 @@ + + + + + +VerifyResultWrapper + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class VerifyResultWrapper

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultsImpl.html b/docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultsImpl.html new file mode 100644 index 00000000..699f6725 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/VerifyResultsImpl.html @@ -0,0 +1,268 @@ + + + + + +VerifyResultsImpl + + + + + + + +
+ + + + + +
+ + + +
+
at.gv.egiz.pdfas.wrapper
+

Class VerifyResultsImpl

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    VerifyResults
    +
    +
    +
    +
    public class VerifyResultsImpl
    +extends java.lang.Object
    +implements VerifyResults
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.ListgetResults() +
      Returns the List of VerifyResult objects, one for each verified signature.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        VerifyResultsImpl

        +
        public VerifyResultsImpl(java.util.List<VerifyResult> list)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getResults

        +
        public java.util.List getResults()
        +
        Description copied from interface: VerifyResults
        +
        Returns the List of VerifyResult objects, one for each verified signature.
        +
        +
        Specified by:
        +
        getResults in interface VerifyResults
        +
        Returns:
        Returns the List of VerifyResult objects, one for each verified + signature.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/package-frame.html b/docs/full/at/gv/egiz/pdfas/wrapper/package-frame.html new file mode 100644 index 00000000..24475f17 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/package-frame.html @@ -0,0 +1,31 @@ + + + + + +at.gv.egiz.pdfas.wrapper + + + + +

at.gv.egiz.pdfas.wrapper

+
+

Classes

+ +
+ + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/package-summary.html b/docs/full/at/gv/egiz/pdfas/wrapper/package-summary.html new file mode 100644 index 00000000..62c0368d --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/package-summary.html @@ -0,0 +1,179 @@ + + + + + +at.gv.egiz.pdfas.wrapper + + + + + + + +
+ + + + + +
+ + +
+

Package at.gv.egiz.pdfas.wrapper

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/docs/full/at/gv/egiz/pdfas/wrapper/package-tree.html b/docs/full/at/gv/egiz/pdfas/wrapper/package-tree.html new file mode 100644 index 00000000..e5634215 --- /dev/null +++ b/docs/full/at/gv/egiz/pdfas/wrapper/package-tree.html @@ -0,0 +1,138 @@ + + + + + +at.gv.egiz.pdfas.wrapper Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package at.gv.egiz.pdfas.wrapper

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3