I propose that the server properties for the Jetty connectors be dynamically set via refllection instead of hard coding the setter calls into the Http(s)ServerHelper.
As it stands now, the helper classes are prone to an "arms race" with Jetty because Restlet need to be updated every time new parameters are added to the Jetty connectors. This problem was made clear by the lack of support for the various trust store properties. This opens up the door for users to be able to specify their own connectors via a "connectorClass" property or something similar. All of the necessary properties are either Strings, booleans or ints so doing a conversion would not be a huge issue. Sincerely, Kevin Conaway

