Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

KeyStoreBuilderParameters

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

Class Overview

The parameters for KeyManager s. The parameters are a list of KeyStore.Builder s.

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.Builder s.
Public Methods
List < KeyStore.Builder > getParameters ()
Returns the unmodifiable list of KeyStore.Builder s 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.Builder s.

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.Builder s associated with this parameters instance.

Returns
  • the unmodifiable list of KeyStore.Builder s.