Class KeyStore.Builder
- Enclosing class:
KeyStore
KeyStore object.An instance of this class encapsulates the information needed to instantiate and initialize aKeyStore object. That process is triggered when thegetKeyStore() method is called.
This makes it possible to decouple configuration fromKeyStore object creation and e.g. delay a password prompt until it is needed.
- Since:
- 1.5
- See Also:
Constructor Summary
ConstructorsMethod Summary
Modifier and TypeMethodDescriptionabstractKeyStoreReturns theKeyStoredescribed by this object.abstractKeyStore.ProtectionParametergetProtectionParameter(String alias) Returns theProtectionParameterthat should be used to obtain theEntrywith the given alias.staticKeyStore.BuildernewInstance(File file,KeyStore.ProtectionParameter protection) Returns a newBuilderobject.staticKeyStore.BuildernewInstance(String type,Provider provider,File file,KeyStore.ProtectionParameter protection) Returns a newBuilderobject.staticKeyStore.BuildernewInstance(String type,Provider provider,KeyStore.ProtectionParameter protection) Returns a newBuilderobject.staticKeyStore.BuildernewInstance(KeyStore keyStore,KeyStore.ProtectionParameter protectionParameter) Returns a newBuilderthat encapsulates the givenKeyStore.
Constructor Details
Builder
protected Builder()Construct a newBuilder.
Method Details
getKeyStore
Returns theKeyStoredescribed by this object.- Returns:
- the
KeyStoredescribed by this object - Throws:
KeyStoreException- if an error occurred during the operation, for example if theKeyStorecould not be instantiated or loaded
getProtectionParameter
public abstract KeyStore.ProtectionParameter getProtectionParameter(String alias) throwsKeyStoreException Returns theProtectionParameterthat should be used to obtain theEntrywith the given alias. ThegetKeyStoremethod must be invoked before this method may be called.- Parameters:
alias- the alias of theKeyStoreentry- Returns:
- the
ProtectionParameterthat should be used to obtain theEntrywith the given alias. - Throws:
NullPointerException- if alias isnullKeyStoreException- if an error occurred during the operationIllegalStateException- if thegetKeyStoremethod has not been invoked prior to calling this method
newInstance
public static KeyStore.Builder newInstance(KeyStore keyStore,KeyStore.ProtectionParameter protectionParameter) Returns a newBuilderthat encapsulates the givenKeyStore. ThegetKeyStore() method of the returned object will returnkeyStore, thegetProtectionParameter() method will returnprotectionParameters.This is useful if an existing
KeyStoreobject needs to be used with builder-based APIs.- Parameters:
keyStore- theKeyStoreto be encapsulatedprotectionParameter- theProtectionParameterused to protect theKeyStoreentries- Returns:
- a new
Builderobject - Throws:
NullPointerException- ifkeyStoreorprotectionParameterisnullIllegalArgumentException- if thekeyStorehas not been initialized
newInstance
public static KeyStore.Builder newInstance(String type,Provider provider,File file,KeyStore.ProtectionParameter protection) Returns a newBuilderobject.The first call to the
getKeyStore()method on the returned builder will create aKeyStoreof typetypeand call itsload()method. TheinputStreamargument is constructed fromfile. Ifprotectionis aPasswordProtection, the password is obtained by calling thegetPasswordmethod. Otherwise, ifprotectionis aCallbackHandlerProtection, the password is obtained by invoking the CallbackHandler.Subsequent calls to
getKeyStore()return the same object as the initial call. If the initial call failed with aKeyStoreException, subsequent calls also throw aKeyStoreException.The
KeyStoreis instantiated fromproviderif non-null. Otherwise, all installed providers are searched.Calls to
getProtectionParameter()will return aPasswordProtectionobject encapsulating the password that was used to invoke theloadmethod.- Parameters:
type- the type ofKeyStoreto be constructedprovider- the provider from which theKeyStoreis to be instantiated (ornull)file- the File that contains theKeyStoredataprotection- theProtectionParametersecuring theKeyStoredata- Returns:
- a new
Builderobject - Throws:
NullPointerException- if type, file or protection isnullIllegalArgumentException- if protection is not an instance of either PasswordProtection or CallbackHandlerProtection; or if file does not exist or does not refer to a normal file
newInstance
Returns a newBuilderobject.The first call to the
getKeyStore()method on the returned builder will create aKeyStoreusingfileto detect the keystore type and then call itsload()method. It uses the same algorithm to determine the keystore type as described inKeyStore.getInstance(File, LoadStoreParameter). TheinputStreamargument is constructed fromfile. Ifprotectionis aPasswordProtection, the password is obtained by calling thegetPasswordmethod. Otherwise, ifprotectionis aCallbackHandlerProtection, the password is obtained by invoking the CallbackHandler.Subsequent calls to
getKeyStore()return the same object as the initial call. If the initial call failed with aKeyStoreException, subsequent calls also throw aKeyStoreException.Calls to
getProtectionParameter()will return aPasswordProtectionobject encapsulating the password that was used to invoke theloadmethod.- Parameters:
file- the File that contains theKeyStoredataprotection- theProtectionParametersecuring theKeyStoredata- Returns:
- a new
Builderobject - Throws:
NullPointerException- if file or protection isnullIllegalArgumentException- if protection is not an instance of either PasswordProtection or CallbackHandlerProtection; or if file does not exist or does not refer to a normal file- Since:
- 9
newInstance
public static KeyStore.Builder newInstance(String type,Provider provider,KeyStore.ProtectionParameter protection) Returns a newBuilderobject.Each call to the
getKeyStore()method on the returned builder will return a newKeyStoreobject of typetype. Itsload()method is invoked using aLoadStoreParameterthat encapsulatesprotection.The
KeyStoreis instantiated fromproviderif non-null. Otherwise, all installed providers are searched.Calls to
getProtectionParameter()will returnprotection.- Parameters:
type- the type ofKeyStoreto be constructedprovider- the provider from which theKeyStoreis to be instantiated (ornull)protection- theProtectionParametersecuring theKeystore- Returns:
- a new
Builderobject - Throws:
NullPointerException- if type or protection isnull