Class SSLContextConfigurator


  • public class SSLContextConfigurator
    extends Object
    Utility class, which helps to configure SSLContext.
    Author:
    Alexey Stashok, Hubert Iwaniuk, Bruno Harbulot
    • Constructor Detail

      • SSLContextConfigurator

        public SSLContextConfigurator​(boolean readSystemProperties)
        Constructor that allows you creating empty configuration.
        Parameters:
        readSystemProperties - If true populates configuration from System.getProperties(), else you have empty configuration.
    • Method Detail

      • setTrustStoreProvider

        public void setTrustStoreProvider​(String trustStoreProvider)
        Sets the trust store provider name.
        Parameters:
        trustStoreProvider - Trust store provider to set.
      • setKeyStoreProvider

        public void setKeyStoreProvider​(String keyStoreProvider)
        Sets the key store provider name.
        Parameters:
        keyStoreProvider - Key store provider to set.
      • setTrustStoreType

        public void setTrustStoreType​(String trustStoreType)
        Type of trust store.
        Parameters:
        trustStoreType - Type of trust store to set.
      • setKeyStoreType

        public void setKeyStoreType​(String keyStoreType)
        Type of key store.
        Parameters:
        keyStoreType - Type of key store to set.
      • setTrustStorePass

        public void setTrustStorePass​(String trustStorePass)
        Password of trust store.
        Parameters:
        trustStorePass - Password of trust store to set.
      • setKeyStorePass

        public void setKeyStorePass​(String keyStorePass)
        Password of key store.
        Parameters:
        keyStorePass - Password of key store to set.
      • setKeyStorePass

        public void setKeyStorePass​(char[] keyStorePass)
        Password of key store.
        Parameters:
        keyStorePass - Password of key store to set.
      • setKeyPass

        public void setKeyPass​(String keyPass)
        Password of the key in the key store.
        Parameters:
        keyPass - Password of key to set.
      • setKeyPass

        public void setKeyPass​(char[] keyPass)
        Password of the key in the key store.
        Parameters:
        keyPass - Password of key to set.
      • setTrustStoreFile

        public void setTrustStoreFile​(String trustStoreFile)
        Sets trust store file name, also makes sure that if other trust store configuration parameters are not set to set them to default values. Method resets trust store bytes if any have been set before via setTrustStoreBytes(byte[]).
        Parameters:
        trustStoreFile - File name of trust store.
      • setTrustStoreBytes

        public void setTrustStoreBytes​(byte[] trustStoreBytes)
        Sets trust store payload as byte array. Method resets trust store file if any has been set before via setTrustStoreFile(java.lang.String).
        Parameters:
        trustStoreBytes - trust store payload.
      • setKeyStoreFile

        public void setKeyStoreFile​(String keyStoreFile)
        Sets key store file name, also makes sure that if other key store configuration parameters are not set to set them to default values. Method resets key store bytes if any have been set before via setKeyStoreBytes(byte[]).
        Parameters:
        keyStoreFile - File name of key store.
      • setKeyStoreBytes

        public void setKeyStoreBytes​(byte[] keyStoreBytes)
        Sets key store payload as byte array. Method resets key store file if any has been set before via setKeyStoreFile(java.lang.String).
        Parameters:
        keyStoreBytes - key store payload.
      • setTrustManagerFactoryAlgorithm

        public void setTrustManagerFactoryAlgorithm​(String trustManagerFactoryAlgorithm)
        Sets the trust manager factory algorithm.
        Parameters:
        trustManagerFactoryAlgorithm - the trust manager factory algorithm.
      • setKeyManagerFactoryAlgorithm

        public void setKeyManagerFactoryAlgorithm​(String keyManagerFactoryAlgorithm)
        Sets the key manager factory algorithm.
        Parameters:
        keyManagerFactoryAlgorithm - the key manager factory algorithm.
      • setSecurityProtocol

        public void setSecurityProtocol​(String securityProtocol)
        Sets the SSLContext protocol. The default value is TLS if this is null.
        Parameters:
        securityProtocol - Protocol for SSLContext.getProtocol().
      • validateConfiguration

        @Deprecated
        public boolean validateConfiguration​(boolean needsKeyStore)
        Deprecated.
        Validates SSLContextConfigurator configuration.
        Parameters:
        needsKeyStore - forces failure if no keystore is specified.
        Returns:
        true if configuration is valid, else false.
      • retrieve

        public void retrieve​(Properties props)