This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0bd2bc4b82bab47d19585e91d412f1f75414057c Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Jul 18 13:22:40 2018 +0200 Regen --- .../camel-kubernetes/src/main/docs/kubernetes-job-component.adoc | 5 +++-- components/readme.adoc | 5 ++++- docs/user-manual/en/SUMMARY.md | 1 + .../camel/component/ahc/ws/springboot/WsComponentConfiguration.java | 2 +- .../camel/component/bean/springboot/BeanComponentConfiguration.java | 3 ++- .../component/beanclass/springboot/ClassComponentConfiguration.java | 3 ++- .../binding/springboot/BindingNameComponentConfiguration.java | 3 ++- .../component/browse/springboot/BrowseComponentConfiguration.java | 3 ++- .../controlbus/springboot/ControlBusComponentConfiguration.java | 3 ++- .../dataformat/springboot/DataFormatComponentConfiguration.java | 3 ++- .../component/dataset/springboot/DataSetComponentConfiguration.java | 3 ++- .../component/direct/springboot/DirectComponentConfiguration.java | 3 ++- .../directvm/springboot/DirectVmComponentConfiguration.java | 3 ++- .../camel/component/file/springboot/FileComponentConfiguration.java | 3 ++- .../language/springboot/LanguageComponentConfiguration.java | 3 ++- .../camel/component/log/springboot/LogComponentConfiguration.java | 3 ++- .../camel/component/mock/springboot/MockComponentConfiguration.java | 3 ++- .../properties/springboot/PropertiesComponentConfiguration.java | 3 ++- .../camel/component/ref/springboot/RefComponentConfiguration.java | 3 ++- .../component/rest/springboot/RestApiComponentConfiguration.java | 3 ++- .../camel/component/rest/springboot/RestComponentConfiguration.java | 3 ++- .../camel/component/saga/springboot/SagaComponentConfiguration.java | 3 ++- .../scheduler/springboot/SchedulerComponentConfiguration.java | 3 ++- .../camel/component/seda/springboot/SedaComponentConfiguration.java | 3 ++- .../camel/component/stub/springboot/StubComponentConfiguration.java | 3 ++- .../camel/component/test/springboot/TestComponentConfiguration.java | 3 ++- .../component/timer/springboot/TimerComponentConfiguration.java | 3 ++- .../validator/springboot/ValidatorComponentConfiguration.java | 3 ++- .../camel/component/vm/springboot/VmComponentConfiguration.java | 3 ++- .../camel/component/xslt/springboot/XsltComponentConfiguration.java | 3 ++- .../camel/component/http/springboot/HttpComponentConfiguration.java | 2 +- .../camel/component/http4/springboot/HttpComponentConfiguration.java | 2 +- .../job/springboot/KubernetesJobComponentConfiguration.java | 5 +++++ .../camel/component/mail/springboot/MailComponentConfiguration.java | 2 +- .../camel/component/sip/springboot/SipComponentConfiguration.java | 2 +- 35 files changed, 70 insertions(+), 34 deletions(-) diff --git a/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc b/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc index 156bba6..1a6a4bb 100644 --- a/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc +++ b/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc @@ -83,8 +83,9 @@ The component supports 2 options, which are listed below. [width="100%",cols="2,5,^1,2",options="header"] |=== | Name | Description | Default | Type -| *camel.component.kubernetes-hpa.enabled* | | | Boolean -| *camel.component.kubernetes-hpa.resolve-property-placeholders* | Whether the component should resolve property placeholders on itself when +| *camel.component.kubernetes-job.enabled* | Whether to enable auto configuration of the kubernetes-job component. + This is enabled by default. | | Boolean +| *camel.component.kubernetes-job.resolve-property-placeholders* | Whether the component should resolve property placeholders on itself when starting. Only properties which are of String type can use property placeholders. | true | Boolean |=== diff --git a/components/readme.adoc b/components/readme.adoc index 4bd21fe..6317e4e 100644 --- a/components/readme.adoc +++ b/components/readme.adoc @@ -2,7 +2,7 @@ Components ^^^^^^^^^^ // components: START -Number of Components: 298 in 203 JAR artifacts (21 deprecated) +Number of Components: 299 in 203 JAR artifacts (21 deprecated) [width="100%",cols="4,1,5",options="header"] |=== @@ -482,6 +482,9 @@ Number of Components: 298 in 203 JAR artifacts (21 deprecated) | link:camel-kubernetes/src/main/docs/kubernetes-hpa-component.adoc[Kubernetes HPA] (camel-kubernetes) + `kubernetes-hpa:masterUrl` | 2.23 | The Kubernetes HPA component provides a producer to execute kubernetes hpa operations and a consumer to consume pod events. +| link:camel-kubernetes/src/main/docs/kubernetes-job-component.adoc[Kubernetes Job] (camel-kubernetes) + +`kubernetes-job:masterUrl` | 2.23 | The Kubernetes Jobs component provides a producer to execute kubernetes job operations + | link:camel-kubernetes/src/main/docs/kubernetes-namespaces-component.adoc[Kubernetes Namespaces] (camel-kubernetes) + `kubernetes-namespaces:masterUrl` | 2.17 | The Kubernetes Namespaces component provides a producer to execute kubernetes namespace operations and a consumer to consume namespace events. diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md index f648d26..cf3f652 100644 --- a/docs/user-manual/en/SUMMARY.md +++ b/docs/user-manual/en/SUMMARY.md @@ -272,6 +272,7 @@ * [Kubernetes ConfigMap](kubernetes-config-maps-component.adoc) * [Kubernetes Deployments](kubernetes-deployments-component.adoc) * [Kubernetes HPA](kubernetes-hpa-component.adoc) + * [Kubernetes Job](kubernetes-job-component.adoc) * [Kubernetes Namespaces](kubernetes-namespaces-component.adoc) * [Kubernetes Nodes](kubernetes-nodes-component.adoc) * [Kubernetes Persistent Volume](kubernetes-persistent-volumes-component.adoc) diff --git a/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java index 4a4e73c..c547a68 100644 --- a/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java @@ -32,7 +32,7 @@ public class WsComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the ahc-wss component. This is + * Whether to enable auto configuration of the ahc-ws component. This is * enabled by default. */ private Boolean enabled; diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentConfiguration.java index 23ba409..cc8c2fb 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentConfiguration.java @@ -32,7 +32,8 @@ public class BeanComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the bean component + * Whether to enable auto configuration of the bean component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentConfiguration.java index 856d787..7a49145 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentConfiguration.java @@ -32,7 +32,8 @@ public class ClassComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the class component + * Whether to enable auto configuration of the class component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentConfiguration.java index e252898..0fa054b 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentConfiguration.java @@ -33,7 +33,8 @@ public class BindingNameComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the binding component + * Whether to enable auto configuration of the binding component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentConfiguration.java index 761ccce..17cda1c 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentConfiguration.java @@ -33,7 +33,8 @@ public class BrowseComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the browse component + * Whether to enable auto configuration of the browse component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentConfiguration.java index b731bda..fafe5ad 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentConfiguration.java @@ -33,7 +33,8 @@ public class ControlBusComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the controlbus component + * Whether to enable auto configuration of the controlbus component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentConfiguration.java index 6debd4f..766d896 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentConfiguration.java @@ -33,7 +33,8 @@ public class DataFormatComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the dataformat component + * Whether to enable auto configuration of the dataformat component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentConfiguration.java index 71de1c3..f402e3e 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentConfiguration.java @@ -33,7 +33,8 @@ public class DataSetComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the dataset component + * Whether to enable auto configuration of the dataset component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java index caa695f..cdbe035 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java @@ -33,7 +33,8 @@ public class DirectComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the direct component + * Whether to enable auto configuration of the direct component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java index bd89cda..78bee16 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java @@ -33,7 +33,8 @@ public class DirectVmComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the direct-vm component + * Whether to enable auto configuration of the direct-vm component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentConfiguration.java index c057353..7d8aac1 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentConfiguration.java @@ -32,7 +32,8 @@ public class FileComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the file component + * Whether to enable auto configuration of the file component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentConfiguration.java index 1743837..79c7eb7 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentConfiguration.java @@ -33,7 +33,8 @@ public class LanguageComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the language component + * Whether to enable auto configuration of the language component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java index b8fbd92..4649d41 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java @@ -32,7 +32,8 @@ public class LogComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the log component + * Whether to enable auto configuration of the log component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentConfiguration.java index ff149e8..7f43ba0 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentConfiguration.java @@ -33,7 +33,8 @@ public class MockComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the mock component + * Whether to enable auto configuration of the mock component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java index e1741c9..73ed057 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java @@ -35,7 +35,8 @@ public class PropertiesComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the properties component + * Whether to enable auto configuration of the properties component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentConfiguration.java index e2ae2f6..6f206f0 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentConfiguration.java @@ -33,7 +33,8 @@ public class RefComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the ref component + * Whether to enable auto configuration of the ref component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentConfiguration.java index 436f4ea..4942665 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentConfiguration.java @@ -33,7 +33,8 @@ public class RestApiComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the rest-api component + * Whether to enable auto configuration of the rest-api component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java index d3e8f0b..05090ae 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java @@ -33,7 +33,8 @@ public class RestComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the rest component + * Whether to enable auto configuration of the rest component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/saga/springboot/SagaComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/saga/springboot/SagaComponentConfiguration.java index 375f6a8..889ced0 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/saga/springboot/SagaComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/saga/springboot/SagaComponentConfiguration.java @@ -33,7 +33,8 @@ public class SagaComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the saga component + * Whether to enable auto configuration of the saga component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java index 9672aa5..c9c2bfa 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java @@ -33,7 +33,8 @@ public class SchedulerComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the scheduler component + * Whether to enable auto configuration of the scheduler component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java index cdf528b..82ccd66 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java @@ -33,7 +33,8 @@ public class SedaComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the seda component + * Whether to enable auto configuration of the seda component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java index 2633216..afffc11 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java @@ -33,7 +33,8 @@ public class StubComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the stub component + * Whether to enable auto configuration of the stub component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentConfiguration.java index 6f9355d..2f62d3d 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentConfiguration.java @@ -33,7 +33,8 @@ public class TestComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the test component + * Whether to enable auto configuration of the test component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentConfiguration.java index 0d903e8..84cd0c1 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentConfiguration.java @@ -33,7 +33,8 @@ public class TimerComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the timer component + * Whether to enable auto configuration of the timer component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java index 22318ef..82c1e92 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java @@ -32,7 +32,8 @@ public class ValidatorComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the validator component + * Whether to enable auto configuration of the validator component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java index 83ca18e..ff81b0f 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java @@ -33,7 +33,8 @@ public class VmComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the vm component + * Whether to enable auto configuration of the vm component. This is enabled + * by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java index 751d6a7..fabb30d 100644 --- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java @@ -34,7 +34,8 @@ public class XsltComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the xslt component + * Whether to enable auto configuration of the xslt component. This is + * enabled by default. */ private Boolean enabled; /** diff --git a/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java index ea00bd5..9df4074 100644 --- a/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java @@ -32,7 +32,7 @@ public class HttpComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the https component. This is + * Whether to enable auto configuration of the http component. This is * enabled by default. */ private Boolean enabled; diff --git a/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java index c71dd5b..4c9399c 100644 --- a/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java @@ -32,7 +32,7 @@ public class HttpComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the https4 component. This is + * Whether to enable auto configuration of the http4 component. This is * enabled by default. */ private Boolean enabled; diff --git a/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/job/springboot/KubernetesJobComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/job/springboot/KubernetesJobComponentConfiguration.java index 9524594..6088d05 100644 --- a/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/job/springboot/KubernetesJobComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/job/springboot/KubernetesJobComponentConfiguration.java @@ -33,6 +33,11 @@ public class KubernetesJobComponentConfiguration ComponentConfigurationPropertiesCommon { /** + * Whether to enable auto configuration of the kubernetes-job component. + * This is enabled by default. + */ + private Boolean enabled; + /** * Whether the component should resolve property placeholders on itself when * starting. Only properties which are of String type can use property * placeholders. diff --git a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java index b71aba9..4be098d 100644 --- a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java @@ -38,7 +38,7 @@ public class MailComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the pop3s component. This is + * Whether to enable auto configuration of the imap component. This is * enabled by default. */ private Boolean enabled; diff --git a/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentConfiguration.java index 512b77d..add23b9 100644 --- a/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentConfiguration.java @@ -33,7 +33,7 @@ public class SipComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * Whether to enable auto configuration of the sips component. This is + * Whether to enable auto configuration of the sip component. This is * enabled by default. */ private Boolean enabled;