currently, I'm using camel-jetty for setting up the rest DSL, it's pretty much straightforward, I create an SSLContextParameters object, and then pass it like this:
JettyHttpComponent jetty = context.getComponent("jetty", JettyHttpComponent.class);
jetty.setSslContextParameters(sslContextParameters);
and that's it, but in Undertow, there is no method whatsoever to do that, the only thing that is mentioned once in the documentation is that it supports the sslContextParameters option, but there's no method or anything to set such option.
How do I assign my sslContextParameters object to the Undertow component so that I can use SSL connections with the rest DSL?
By the way, I have tried setting an UndertowComponent object and adding the option as a component parameter, and also tried adding the option in EndpointProperties through restConfiguration() to no avail.
I have also browsed the github source code for 2.16.1, which is the latest in maven central, and I only see a reference to an ssl context in UndertowRegistry and the setSslContext setter is never even used anywhere!