This is an automated email from the ASF dual-hosted git repository. gzurowski pushed a commit to branch release/4.7.0 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 27f988c71f79de862d8f2f4293291d20549f2d61 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Jul 8 10:18:06 2024 +0200 CAMEL-20952: javadoc build issue --- .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd | 5 +---- .../resources/META-INF/org/apache/camel/spring/xml/camelContext.json | 2 +- .../java/org/apache/camel/spring/xml/CamelContextFactoryBean.java | 4 ---- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd index 307c30ddd19..312a8806c21 100644 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd @@ -17820,10 +17820,7 @@ converter classes. Default value: false <xs:documentation xml:lang="en"> <![CDATA[ Sets whether or not type converter statistics is enabled. By default the type converter utilization statistics is -disabled. Notice: If enabled then there is a slight performance impact under very heavy load. You can enable/disable the -statistics at runtime using the -org.apache.camel.spi.TypeConverterRegistry#getStatistics()#setTypeConverterStatisticsEnabled(Boolean) method, or from -JMX on the org.apache.camel.api.management.mbean.ManagedTypeConverterRegistryMBean mbean. +disabled. Notice: If enabled then there is a slight performance impact under very heavy load. ]]> </xs:documentation> </xs:annotation> diff --git a/components/camel-spring-xml/src/generated/resources/META-INF/org/apache/camel/spring/xml/camelContext.json b/components/camel-spring-xml/src/generated/resources/META-INF/org/apache/camel/spring/xml/camelContext.json index dc4024bedde..83cc8648995 100644 --- a/components/camel-spring-xml/src/generated/resources/META-INF/org/apache/camel/spring/xml/camelContext.json +++ b/components/camel-spring-xml/src/generated/resources/META-INF/org/apache/camel/spring/xml/camelContext.json @@ -44,7 +44,7 @@ "shutdownRoute": { "index": 29, "kind": "attribute", "displayName": "Shutdown Route", "group": "common", "required": false, "type": "enum", "javaType": "org.apache.camel.ShutdownRoute", "enum": [ "Default", "Defer" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "Default", "description": "Sets the ShutdownRoute option for routes." }, "shutdownRunningTask": { "index": 30, "kind": "attribute", "displayName": "Shutdown Running Task", "group": "common", "required": false, "type": "enum", "javaType": "org.apache.camel.ShutdownRunningTask", "enum": [ "CompleteAllTasks", "CompleteCurrentTaskOnly" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "CompleteCurrentTaskOnly", "description": "Sets the ShutdownRunningTask option to use when shutting down a route." }, "loadTypeConverters": { "index": 31, "kind": "attribute", "displayName": "Load Type Converters", "group": "common", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "defaultValue": "false", "description": "Whether to load custom type converters by scanning classpath. This is used for backwards compatibility with Camel 2.x. Its recommended to migrate to use fast type converter loading by setting Converter(lo [...] - "typeConverterStatisticsEnabled": { "index": 32, "kind": "attribute", "displayName": "Type Converter Statistics Enabled", "group": "common", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Sets whether or not type converter statistics is enabled. By default the type converter utilization statistics is disabled. Notice: If enabled then there is a slight performance impact under very heavy lo [...] + "typeConverterStatisticsEnabled": { "index": 32, "kind": "attribute", "displayName": "Type Converter Statistics Enabled", "group": "common", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Sets whether or not type converter statistics is enabled. By default the type converter utilization statistics is disabled. Notice: If enabled then there is a slight performance impact under very heavy load." }, "loadHealthChecks": { "index": 33, "kind": "attribute", "displayName": "Load Health Checks", "group": "common", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "defaultValue": "false", "description": "Whether to load custom health checks by scanning classpath." }, "inflightRepositoryBrowseEnabled": { "index": 34, "kind": "attribute", "displayName": "Inflight Repository Browse Enabled", "group": "common", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Sets whether the inflight repository should allow browsing each inflight exchange. This is by default disabled as there is a very slight performance overhead when enabled." }, "typeConverterExists": { "index": 35, "kind": "attribute", "displayName": "Type Converter Exists", "group": "common", "required": false, "type": "enum", "javaType": "org.apache.camel.TypeConverterExists", "enum": [ "Fail", "Ignore", "Override" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "Ignore", "description": "What should happen when attempting to add a duplicate type converter. The default behavior is to ignore the duplicate." }, diff --git a/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/CamelContextFactoryBean.java b/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/CamelContextFactoryBean.java index 03727ab38ab..2fc37c03e3b 100644 --- a/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/CamelContextFactoryBean.java +++ b/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/CamelContextFactoryBean.java @@ -1240,10 +1240,6 @@ public class CamelContextFactoryBean extends AbstractCamelContextFactoryBean<Spr * <p/> * By default the type converter utilization statistics is disabled. <b>Notice:</b> If enabled then there is a * slight performance impact under very heavy load. - * <p/> - * You can enable/disable the statistics at runtime using the - * {@link org.apache.camel.spi.TypeConverterRegistry#getStatistics()#setTypeConverterStatisticsEnabled(Boolean)} - * method, or from JMX on the {@link org.apache.camel.api.management.mbean.ManagedTypeConverterRegistryMBean} mbean. */ public void setTypeConverterStatisticsEnabled(String typeConverterStatisticsEnabled) { this.typeConverterStatisticsEnabled = typeConverterStatisticsEnabled;