Class ContentSignerBC
java.lang.Object
com.itextpdf.bouncycastle.operator.ContentSignerBC
- All Implemented Interfaces:
-
IContentSigner
Wrapper class for
ContentSigner
.
-
Constructor Summary
ConstructorDescriptionContentSignerBC
(org.bouncycastle.operator.ContentSigner contentSigner) Creates new wrapper instance forContentSigner
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether some other object is "equal to" this one.org.bouncycastle.operator.ContentSigner
Gets actual org.bouncycastle object being wrapped.int
hashCode()
Returns a hash code value based on the wrapped object.toString()
DelegatestoString
method call to the wrapped object.
-
Constructor Details
-
ContentSignerBC
public ContentSignerBC(org.bouncycastle.operator.ContentSigner contentSigner) Creates new wrapper instance forContentSigner
.- 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
Indicates whether some other object is "equal to" this one. Compares wrapped objects. -
hashCode
public int hashCode()Returns a hash code value based on the wrapped object. -
toString
DelegatestoString
method call to the wrapped object.
-