public class

KeyStoreBuilderParameters

extends Object
implements ManagerFactoryParameters
java.lang.Object
   ↳ javax.net.ssl.KeyStoreBuilderParameters

Class Overview

The parameters for KeyManagers. The parameters are a list of KeyStore.Builders.

Summary

Public Constructors
KeyStoreBuilderParameters(KeyStore.Builder builder)
Creates a new KeyStoreBuilderParameters with the specified key store builder.
KeyStoreBuilderParameters(List parameters)
Creates a new KeyStoreBuilderParameters with the specified list of KeyStore.Builders.
Public Methods
List getParameters()
Returns the unmodifiable list of KeyStore.Builders associated with this parameters instance.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public KeyStoreBuilderParameters (KeyStore.Builder builder)

Creates a new KeyStoreBuilderParameters with the specified key store builder.

Parameters
builder the key store builder.

public KeyStoreBuilderParameters (List parameters)

Creates a new KeyStoreBuilderParameters with the specified list of KeyStore.Builders.

Parameters
parameters the list of key store builders
Throws
IllegalArgumentException if the specified list is empty.

Public Methods

public List getParameters ()

Returns the unmodifiable list of KeyStore.Builders associated with this parameters instance.

Returns
  • the unmodifiable list of KeyStore.Builders.