Interface IRecipientInformationStore
-
- All Known Implementing Classes:
RecipientInformationStoreBC
public interface IRecipientInformationStore
This interface represents the wrapper for RecipientInformationStore that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IRecipientInformation
get(IRecipientId var1)
Calls actualget
method for the wrapped RecipientInformationStore object.java.util.Collection<IRecipientInformation>
getRecipients()
Calls actualgetRecipients
method for the wrapped RecipientInformationStore object.
-
-
-
Method Detail
-
getRecipients
java.util.Collection<IRecipientInformation> getRecipients()
Calls actualgetRecipients
method for the wrapped RecipientInformationStore object.- Returns:
- a collection of wrapped recipients.
-
get
IRecipientInformation get(IRecipientId var1)
Calls actualget
method for the wrapped RecipientInformationStore object.- Parameters:
var1
- RecipientId wrapper- Returns:
IRecipientInformation
the wrapper for received RecipientInformation object.
-
-