Class ContentSignerBC

java.lang.Object
com.itextpdf.bouncycastle.operator.ContentSignerBC
All Implemented Interfaces:
IContentSigner

public class ContentSignerBC extends Object implements IContentSigner
Wrapper class for ContentSigner.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ContentSignerBC(org.bouncycastle.operator.ContentSigner contentSigner)
    Creates new wrapper instance for ContentSigner.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Indicates whether some other object is "equal to" this one.
    org.bouncycastle.operator.ContentSigner
    Gets actual org.bouncycastle object being wrapped.
    int
    Returns a hash code value based on the wrapped object.
    Delegates toString method call to the wrapped object.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ContentSignerBC

      public ContentSignerBC (org.bouncycastle.operator.ContentSigner contentSigner)
      Creates new wrapper instance for ContentSigner.
      Parameters:
      contentSigner - ContentSigner to be wrapped
  • Method Details

    • getContentSigner

      public org.bouncycastle.operator.ContentSigner getContentSigner()
      Gets actual org.bouncycastle object being wrapped.
      Returns:
      wrapped ContentSigner.
    • equals

      public boolean equals (Object o)
      Indicates whether some other object is "equal to" this one. Compares wrapped objects.
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Returns a hash code value based on the wrapped object.
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Delegates toString method call to the wrapped object.
      Overrides:
      toString in class Object