Added in API level 1

KeyStoreBuilderParameters

public class KeyStoreBuilderParameters
extends Object implements ManagerFactoryParameters

java.lang.Object
   ↳ javax.net.ssl.KeyStoreBuilderParameters


A parameters object for X509KeyManagers that encapsulates a List of KeyStore.Builders.

Summary

Public constructors

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.

Public methods

List<KeyStore.Builder> getParameters()

Return the unmodifiable List of the KeyStore.Builders encapsulated by this object.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

KeyStoreBuilderParameters

Added in API level 1
public KeyStoreBuilderParameters (KeyStore.Builder builder)

Construct new KeyStoreBuilderParameters from the specified KeyStore.Builder.

Parameters
builder KeyStore.Builder: the Builder object

Throws
NullPointerException if builder is null

KeyStoreBuilderParameters

Added in API level 1
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 List: the List of Builder objects

Throws
NullPointerException if parameters is null
IllegalArgumentException if parameters is an empty list

Public methods

getParameters

Added in API level 1
public List<KeyStore.Builder> getParameters ()

Return the unmodifiable List of the KeyStore.Builders encapsulated by this object.

Returns
List<KeyStore.Builder> the unmodifiable List of the KeyStore.Builders encapsulated by this object.