Package com.itextpdf.bouncycastle.cms
Class RecipientInformationStoreBC
java.lang.Object
com.itextpdf.bouncycastle.cms.RecipientInformationStoreBC
- All Implemented Interfaces:
-
IRecipientInformationStore
Wrapper class for
RecipientInformationStore
.
-
Constructor Summary
ConstructorDescriptionRecipientInformationStoreBC
(org.bouncycastle.cms.RecipientInformationStore recipientInformationStore) Creates new wrapper instance forRecipientInformationStore
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether some other object is "equal to" this one.get
(IRecipientId id) Calls actualget
method for the wrapped RecipientInformationStore object.org.bouncycastle.cms.RecipientInformationStore
Gets actual org.bouncycastle object being wrapped.Calls actualgetRecipients
method for the wrapped RecipientInformationStore object.int
hashCode()
Returns a hash code value based on the wrapped object.toString()
DelegatestoString
method call to the wrapped object.
-
Constructor Details
-
RecipientInformationStoreBC
public RecipientInformationStoreBC(org.bouncycastle.cms.RecipientInformationStore recipientInformationStore) Creates new wrapper instance forRecipientInformationStore
.- Parameters:
-
recipientInformationStore
-RecipientInformationStore
to be wrapped
-
-
Method Details
-
getRecipientInformationStore
public org.bouncycastle.cms.RecipientInformationStore getRecipientInformationStore()Gets actual org.bouncycastle object being wrapped.- Returns:
-
wrapped
RecipientInformationStore
.
-
getRecipients
Calls actualgetRecipients
method for the wrapped RecipientInformationStore object.- Specified by:
-
getRecipients
in interfaceIRecipientInformationStore
- Returns:
- a collection of wrapped recipients.
-
get
Calls actualget
method for the wrapped RecipientInformationStore object.- Specified by:
-
get
in interfaceIRecipientInformationStore
- Parameters:
-
id
- RecipientId wrapper - Returns:
-
IRecipientInformation
the wrapper for received RecipientInformation object.
-
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.
-