Java org.springframework.amqp.rabbit.connection RabbitConnectionFactoryBean fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.amqp.rabbit.connection RabbitConnectionFactoryBean fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.amqp.rabbit.connection RabbitConnectionFactoryBean.

The text is from its open source code.

Constructor

Method

voidafterPropertiesSet()
StringgetKeyStoreType()
Get the key store type - this defaults to PKCS12 if not overridden by #setSslPropertiesLocation(Resource) or #setKeyStoreType .
StringgetTrustStoreType()
Get the trust store type - this defaults to JKS if not overridden by #setSslPropertiesLocation(Resource) or #setTrustStoreType .
voidsetClientProperties(Map clientProperties)
Add custom client properties.
voidsetKeyStore(String keyStore)
Set the key store resource (e.g.
voidsetKeyStorePassphrase(String keyStorePassphrase)
Set the key store pass phrase - overrides the property in #setSslPropertiesLocation(Resource) .
voidsetKeyStoreResource(Resource keyStoreResource)
Set a Resource pointing to the key store.
voidsetKeyStoreType(String keyStoreType)
Set the key store type - overrides the property in #setSslPropertiesLocation(Resource) .
voidsetSecureRandom(SecureRandom secureRandom)
Set the secure random to use when initializing the SSLContext .
voidsetSslAlgorithm(String sslAlgorithm)
Set the algorithm to use; default TLSv1.1.
voidsetSslPropertiesLocation(Resource sslPropertiesLocation)
When #setUseSSL(boolean) is true, the SSL properties to use (optional).
voidsetTrustStore(String trustStore)
Set the key store resource (e.g.
voidsetTrustStorePassphrase(String trustStorePassphrase)
Set the trust store pass phrase - overrides the property in #setSslPropertiesLocation(Resource) .
voidsetTrustStoreResource(Resource trustStoreResource)
Set a Resource pointing to the trust store.
voidsetTrustStoreType(String trustStoreType)
Set the trust store type - overrides the property in #setSslPropertiesLocation(Resource) .
voidsetUpSSL()
Override this method to take complete control over the SSL setup.
voidsetUseSSL(boolean useSSL)
Whether or not the factory should be configured to use SSL.