This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 0e8ae0a Regen
0e8ae0a is described below
commit 0e8ae0af09c2e4af8e3330aae4edec3ffcb008ba
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat May 9 14:57:40 2020 +0200
Regen
---
.../camel/main/MainConfigurationPropertiesConfigurer.java | 10 ++++++++++
.../resources/META-INF/camel-main-configuration-metadata.json | 2 ++
2 files changed, 12 insertions(+)
diff --git
a/core/camel-main/src/generated/java/org/apache/camel/main/MainConfigurationPropertiesConfigurer.java
b/core/camel-main/src/generated/java/org/apache/camel/main/MainConfigurationPropertiesConfigurer.java
index b19c4e1..87f6333 100644
---
a/core/camel-main/src/generated/java/org/apache/camel/main/MainConfigurationPropertiesConfigurer.java
+++
b/core/camel-main/src/generated/java/org/apache/camel/main/MainConfigurationPropertiesConfigurer.java
@@ -117,6 +117,10 @@ public class MainConfigurationPropertiesConfigurer extends
org.apache.camel.supp
case "RouteControllerBackOffMultiplier":
target.setRouteControllerBackOffMultiplier(property(camelContext, double.class,
value)); return true;
case "routecontrollerenabled":
case "RouteControllerEnabled":
target.setRouteControllerEnabled(property(camelContext, boolean.class, value));
return true;
+ case "routecontrollerexcluderoutes":
+ case "RouteControllerExcludeRoutes":
target.setRouteControllerExcludeRoutes(property(camelContext,
java.lang.String.class, value)); return true;
+ case "routecontrollerincluderoutes":
+ case "RouteControllerIncludeRoutes":
target.setRouteControllerIncludeRoutes(property(camelContext,
java.lang.String.class, value)); return true;
case "routecontrollerinitialdelay":
case "RouteControllerInitialDelay":
target.setRouteControllerInitialDelay(property(camelContext, long.class,
value)); return true;
case "routecontrollerthreadpoolsize":
@@ -233,6 +237,8 @@ public class MainConfigurationPropertiesConfigurer extends
org.apache.camel.supp
answer.put("RouteControllerBackOffMaxElapsedTime", long.class);
answer.put("RouteControllerBackOffMultiplier", double.class);
answer.put("RouteControllerEnabled", boolean.class);
+ answer.put("RouteControllerExcludeRoutes", java.lang.String.class);
+ answer.put("RouteControllerIncludeRoutes", java.lang.String.class);
answer.put("RouteControllerInitialDelay", long.class);
answer.put("RouteControllerThreadPoolSize", int.class);
answer.put("RouteFilterExcludePattern", java.lang.String.class);
@@ -368,6 +374,10 @@ public class MainConfigurationPropertiesConfigurer extends
org.apache.camel.supp
case "RouteControllerBackOffMultiplier": return
target.getRouteControllerBackOffMultiplier();
case "routecontrollerenabled":
case "RouteControllerEnabled": return
target.isRouteControllerEnabled();
+ case "routecontrollerexcluderoutes":
+ case "RouteControllerExcludeRoutes": return
target.getRouteControllerExcludeRoutes();
+ case "routecontrollerincluderoutes":
+ case "RouteControllerIncludeRoutes": return
target.getRouteControllerIncludeRoutes();
case "routecontrollerinitialdelay":
case "RouteControllerInitialDelay": return
target.getRouteControllerInitialDelay();
case "routecontrollerthreadpoolsize":
diff --git
a/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json
b/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json
index 94e1bfe..84236ae 100644
---
a/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json
+++
b/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json
@@ -56,6 +56,8 @@
{ "name": "camel.main.routeControllerBackOffMaxElapsedTime",
"description": "Backoff maximum elapsed time in millis, after which the backoff
should be considered exhausted and no more attempts should be made.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type":
"integer", "javaType": "long" },
{ "name": "camel.main.routeControllerBackOffMultiplier", "description":
"Backoff multiplier to use for exponential backoff. This is used to extend the
delay between restart attempts.", "sourceType":
"org.apache.camel.main.DefaultConfigurationProperties", "type": "number",
"javaType": "double" },
{ "name": "camel.main.routeControllerEnabled", "description": "To enable
using supervising route controller which allows Camel to startup and then the
controller takes care of starting the routes in a safe manner. This can be used
when you want to startup Camel despite a route may otherwise fail fast during
startup and cause Camel to fail to startup as well. By delegating the route
startup to the supervising route controller then its manages the startup using
a background thread. The [...]
+ { "name": "camel.main.routeControllerExcludeRoutes", "description":
"Pattern for filtering routes to be included as supervised. The pattern is
matching on route id, and endpoint uri for the route. Multiple patterns can be
separated by comma. For example to include all kafka routes, you can say
kafka:. And to include routes with specific route ids myRoute,myOtherRoute. The
pattern supports wildcards and uses the matcher from
org.apache.camel.support.PatternHelper#matchPattern.", "sour [...]
+ { "name": "camel.main.routeControllerIncludeRoutes", "description":
"Pattern for filtering routes to be excluded as supervised. The pattern is
matching on route id, and endpoint uri for the route. Multiple patterns can be
separated by comma. For example to exclude all JMS routes, you can say jms:.
And to exclude routes with specific route ids
mySpecialRoute,myOtherSpecialRoute. The pattern supports wildcards and uses the
matcher from org.apache.camel.support.PatternHelper#matchPatter [...]
{ "name": "camel.main.routeControllerInitialDelay", "description":
"Initial delay in milli seconds before the route controller starts, after
CamelContext has been started.", "sourceType":
"org.apache.camel.main.DefaultConfigurationProperties", "type": "integer",
"javaType": "long" },
{ "name": "camel.main.routeControllerThreadPoolSize", "description": "The
number of threads used by the route controller scheduled thread pool that are
used for restarting routes. The pool uses 1 thread by default, but you can
increase this to allow the controller to concurrently attempt to restart
multiple routes in case more than one route has problems starting.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type":
"integer", "javaType": "int" },
{ "name": "camel.main.routeFilterExcludePattern", "description": "Used for
filtering routes routes matching the given pattern, which follows the following
rules: - Match by route id - Match by route input endpoint uri The matching is
using exact match, by wildcard and regular expression as documented by
PatternHelper#matchPattern(String,String) . For example to only include routes
which starts with foo in their route id's, use: include=foo* And to exclude
routes which starts from [...]