Package org.wildfly.security.keystore
Interface KeyStoreFactory
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface interface KeyStoreFactory
A factory for creatingKeyStore
instances.- Author:
- Darran Lofthouse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyStore
getInstance()
Construct or otherwise acquire a new instance.
-
-
-
Method Detail
-
getInstance
KeyStore getInstance() throws KeyStoreException
Construct or otherwise acquire a new instance.- Returns:
- the new instance
- Throws:
KeyStoreException
- if instance creation failed for some reason
-
-