Package org.bouncycastle.x509
Class X509CollectionStoreParameters
- java.lang.Object
-
- org.bouncycastle.x509.X509CollectionStoreParameters
-
- All Implemented Interfaces:
X509StoreParameters
public class X509CollectionStoreParameters extends java.lang.Object implements X509StoreParameters
This class contains a collection for collection based X509Stores.- See Also:
X509Store
-
-
Constructor Summary
Constructors Constructor Description X509CollectionStoreParameters(java.util.Collection collection)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()Returns a shallow clone.java.util.CollectiongetCollection()Returns a copy of the Collection.java.lang.StringtoString()Returns a formatted string describing the parameters.
-
-
-
Method Detail
-
clone
public java.lang.Object clone()
Returns a shallow clone. The returned contents are not copied, so adding or removing objects will effect this.- Overrides:
clonein classjava.lang.Object- Returns:
- a shallow clone.
-
getCollection
public java.util.Collection getCollection()
Returns a copy of the Collection.- Returns:
- The Collection. Is never null.
-
toString
public java.lang.String toString()
Returns a formatted string describing the parameters.- Overrides:
toStringin classjava.lang.Object- Returns:
- a formatted string describing the parameters
-
-