|
After upgrade Netty binding supports new options:
- ssl (boolean)
- sslHandler (bean reference)
These two allows to turn on SSL for Netty endpoint and use custom handler.
- passphrase (bean reference)
- securityProvider (string)
- keyStoreFormat (string eg JKS)
- keyStoreFile (bean reference)
- trustStoreFile (bean reference)
OR
- sslContextParametersRef (bean reference)
The sslContextParametersRef allows to specify an reference to 'org.apache.camel.util.jsse.SSLContextParameters' which lets to set all parameters in one bean.
|