Class KeyStoreFactoryBean

  • All Implemented Interfaces:
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.FactoryBean<KeyStore>, org.springframework.beans.factory.InitializingBean

    @Deprecated(forRemoval=true)
    public class KeyStoreFactoryBean
    extends org.springframework.beans.factory.config.AbstractFactoryBean<KeyStore>
    Deprecated, for removal: This API element is subject to removal in a future version.
    use se.swedenconnect.security.credential.factory.KeyStoreFactoryBean from the credentials-support library instead
    An implementation of a Spring FactoryBean that reads a keystore file.
    Author:
    Martin Lindström (martin@litsec.se)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected org.springframework.core.io.Resource storeLocation
      Deprecated, for removal: This API element is subject to removal in a future version.
      The resource holding the keystore.
      protected char[] storePassword
      Deprecated, for removal: This API element is subject to removal in a future version.
      The keystore password.
      protected String storeType
      Deprecated, for removal: This API element is subject to removal in a future version.
      The type of keystore.
      • Fields inherited from class org.springframework.beans.factory.config.AbstractFactoryBean

        logger
      • Fields inherited from interface org.springframework.beans.factory.FactoryBean

        OBJECT_TYPE_ATTRIBUTE
    • Constructor Summary

      Constructors 
      Constructor Description
      KeyStoreFactoryBean​(org.springframework.core.io.Resource storeLocation, char[] storePassword)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Constructor that takes a resource reference to a JKS-file and the password to unlock this file.
      KeyStoreFactoryBean​(org.springframework.core.io.Resource storeLocation, char[] storePassword, String storeType)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Constructor that takes a resource reference to a keystore file, the password to unlock this file and the store type ("jks", "pkcs12", ...).
    • Field Detail

      • storeLocation

        protected org.springframework.core.io.Resource storeLocation
        Deprecated, for removal: This API element is subject to removal in a future version.
        The resource holding the keystore.
      • storePassword

        protected char[] storePassword
        Deprecated, for removal: This API element is subject to removal in a future version.
        The keystore password.
      • storeType

        protected String storeType
        Deprecated, for removal: This API element is subject to removal in a future version.
        The type of keystore.
    • Constructor Detail

      • KeyStoreFactoryBean

        public KeyStoreFactoryBean​(org.springframework.core.io.Resource storeLocation,
                                   char[] storePassword)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Constructor that takes a resource reference to a JKS-file and the password to unlock this file.
        Parameters:
        storeLocation - path to the JKS-file
        storePassword - the password for unlocking the keystore
      • KeyStoreFactoryBean

        public KeyStoreFactoryBean​(org.springframework.core.io.Resource storeLocation,
                                   char[] storePassword,
                                   String storeType)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Constructor that takes a resource reference to a keystore file, the password to unlock this file and the store type ("jks", "pkcs12", ...).
        Parameters:
        storeLocation - path to the keystore file
        storePassword - the password for unlocking the keystore
        storeType - the type of keystore
    • Method Detail

      • createInstance

        protected KeyStore createInstance()
                                   throws Exception
        Deprecated, for removal: This API element is subject to removal in a future version.
        Specified by:
        createInstance in class org.springframework.beans.factory.config.AbstractFactoryBean<KeyStore>
        Throws:
        Exception
      • getObjectType

        public Class<?> getObjectType()
        Deprecated, for removal: This API element is subject to removal in a future version.
        Specified by:
        getObjectType in interface org.springframework.beans.factory.FactoryBean<KeyStore>
        Specified by:
        getObjectType in class org.springframework.beans.factory.config.AbstractFactoryBean<KeyStore>
      • destroy

        public void destroy()
                     throws Exception
        Deprecated, for removal: This API element is subject to removal in a future version.
        Specified by:
        destroy in interface org.springframework.beans.factory.DisposableBean
        Overrides:
        destroy in class org.springframework.beans.factory.config.AbstractFactoryBean<KeyStore>
        Throws:
        Exception