| |
|
| java.lang.Object org.bouncycastle.cms.SignerInformationStore
SignerInformationStore | public class SignerInformationStore (Code) | | |
Method Summary | |
public SignerInformation | get(SignerId selector) Return the first SignerInformation object that matches the
passed in selector. | public Collection | getSigners() | public Collection | getSigners(SignerId selector) Return possible empty collection with signers matching the passed in SignerId
Parameters: selector - a signer id to select against. | public int | size() Return the number of signers in the collection. |
SignerInformationStore | public SignerInformationStore(Collection signerInfos)(Code) | | |
get | public SignerInformation get(SignerId selector)(Code) | | Return the first SignerInformation object that matches the
passed in selector. Null if there are no matches.
Parameters: selector - to identify a signer a single SignerInformation object. Null if none matches. |
getSigners | public Collection getSigners()(Code) | | Return all signers in the collection
a collection of signers. |
getSigners | public Collection getSigners(SignerId selector)(Code) | | Return possible empty collection with signers matching the passed in SignerId
Parameters: selector - a signer id to select against. a collection of SignerInformation objects. |
size | public int size()(Code) | | Return the number of signers in the collection.
number of signers identified. |
|
|
|