Boolean matchOnUriPrefix = getAndRemoveParameter(parameters, "matchOnUriPrefix", Boolean.class);
Boolean enableJmx = getAndRemoveParameter(parameters, "enableJmx", Boolean.class);
// configure http client if we have url configuration for it
// http client is only used for jetty http producer (hence not very commonly used)
HttpClient client = null;
if (IntrospectionSupport.hasProperties(parameters, "httpClient.")) {
// set additional parameters on http client
// only create client when needed
client = getHttpClient();
IntrospectionSupport.setProperties(client, parameters, "httpClient.");