to top
Android APIs
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.

See Also

Summary

Public Constructors
KeyStoreBuilderParameters(KeyStore.Builder builder)
Creates a new KeyStoreBuilderParameters with the specified key store builder.
KeyStoreBuilderParameters(List<KeyStore.Builder> parameters)
Creates a new KeyStoreBuilderParameters with the specified list of KeyStore.Builders.
Public Methods
List<KeyStore.Builder> 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)

Added in API level 1

Creates a new KeyStoreBuilderParameters with the specified key store builder.

Parameters
builder the key store builder.

public KeyStoreBuilderParameters (List<KeyStore.Builder> parameters)

Added in API level 9

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<KeyStore.Builder> getParameters ()

Added in API level 1

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

Returns
  • the unmodifiable list of KeyStore.Builders.