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-spring-boot.git
The following commit(s) were added to refs/heads/master by this push: new e873d06 Polished e873d06 is described below commit e873d062b90b3debb76063ca76c3cd82e869001b Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Jul 4 11:14:47 2020 +0200 Polished --- .../spring/boot/CamelConfigurationProperties.java | 38 +++++++++++----------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java index 4dd0f35..6a4c17d 100644 --- a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java +++ b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java @@ -28,25 +28,6 @@ public class CamelConfigurationProperties extends DefaultConfigurationProperties // --------------------------- /** - * Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while - * the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and - * handled by the routing Error Handler. - * <p/> - * By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, - * that will be logged at WARN/ERROR level and ignored. - * - * The default value is false. - */ - public boolean endpointBridgeErrorHandler; - - /** - * Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities. - * - * The default value is false. - */ - public boolean endpointBasicPropertyBinding; - - /** * Whether to use the main run controller to ensure the Spring-Boot application * keeps running until being stopped or the JVM terminated. * You typically only need this if you run Spring-Boot standalone. @@ -366,6 +347,25 @@ public class CamelConfigurationProperties extends DefaultConfigurationProperties private boolean endpointRuntimeStatisticsEnabled; /** + * Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while + * the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and + * handled by the routing Error Handler. + * <p/> + * By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, + * that will be logged at WARN/ERROR level and ignored. + * + * The default value is false. + */ + public boolean endpointBridgeErrorHandler; + + /** + * Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities. + * + * The default value is false. + */ + public boolean endpointBasicPropertyBinding; + + /** * Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup * in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then * the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed