javax.net.ssl
Class KeyStoreBuilderParameters
- java.lang.Object
javax.net.ssl.KeyStoreBuilderParameters
All implemented interfaces:
- public class KeyStoreBuilderParameters
- extends Object
- implements ManagerFactoryParameters
Since:
1.5
See Also:
Constructor Summary
Constructor and Description |
---|
KeyStoreBuilderParameters(KeyStore.Builder builder)
Construct new KeyStoreBuilderParameters from the specified
KeyStore.Builder.
|
KeyStoreBuilderParameters(List<KeyStore.Builder> parameters)
Construct new KeyStoreBuilderParameters from a List
of KeyStore.Builders.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
getParameters()
Return the unmodifiable List of the
KeyStore.Builders
encapsulated by this object.
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail
KeyStoreBuilderParameters
- public KeyStoreBuilderParameters( KeyStore.Builder builder)
Construct new KeyStoreBuilderParameters from the specified
KeyStore.Builder.
KeyStoreBuilderParameters
- public KeyStoreBuilderParameters( List<KeyStore.Builder> parameters)
Construct new KeyStoreBuilderParameters from a List
of KeyStore.Builders. Note that the list
is cloned to protect against subsequent modification.
Parameters:
parameters
- the List of Builder objects Throws:
NullPointerException
- if parameters is null IllegalArgumentException
- if parameters is an empty list Method Detail
getParameters
- public List<KeyStore.Builder> getParameters( )
Return the unmodifiable List of the
KeyStore.Builders
encapsulated by this object.
Returns:
the unmodifiable List of the
KeyStore.Builders
encapsulated by this object.