blob: 834e13d7e965ad594fab8392d8f378aee415b7e1 [file] [log] [blame]
{
"groups": [
{
"name": "camel.main",
"description": "camel-main configurations.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties"
},
{
"name": "camel.hystrix",
"description": "camel-hystrix configurations.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties"
},
{
"name": "camel.resilience4j",
"description": "camel-resilience4j configurations.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties"
},
{
"name": "camel.rest",
"description": "camel-rest configurations.",
"sourceType": "org.apache.camel.spi.RestConfiguration"
},
{
"name": "camel.component.bean",
"description": "The bean component is for invoking Java beans from Camel.",
"sourceType": "org.apache.camel.component.bean.BeanComponent"
},
{
"name": "camel.component.class",
"description": "The Class component is for invoking Java classes (Java beans) from Camel.",
"sourceType": "org.apache.camel.component.beanclass.ClassComponent"
},
{
"name": "camel.component.timer",
"description": "The timer component is used for generating message exchanges when a timer fires.",
"sourceType": "org.apache.camel.component.timer.TimerComponent"
}
],
"properties": [
{
"name": "camel.main.allowUseOriginalMessage",
"description": "Sets whether to allow access to the original message from Camel's error handler, or from org.apache.camel.spi.UnitOfWork.getOriginalInMessage(). Turning this off can optimize performance, as defensive copy of the original message is not needed. Default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.autoConfigurationEnabled",
"description": "Whether auto configuration of components, dataformats, languages is enabled or not. When enabled the configuration parameters are loaded from the properties component and optionally from the classpath file META-INF\/services\/org\/apache\/camel\/autowire.properties. You can prefix the parameters in the properties file with: - camel.component.name.option1=value1 - camel.component.name.option2=value2 - camel.dataformat.name.option1=value1 - camel.dataformat.name.option2=value2 - camel.language.name.option1=value1 - camel.language.name.option2=value2 Where name is the name of the component, dataformat or language such as seda,direct,jaxb. The auto configuration also works for any options on components that is a complex type (not standard Java type) and there has been an explicit single bean instance registered to the Camel registry via the org.apache.camel.spi.Registry#bind(String,Object) method or by using the org.apache.camel.BindToRegistry annotation style. This option is default enabled.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.autoConfigurationEnvironmentVariablesEnabled",
"description": "Whether auto configuration should include OS environment variables as well. When enabled this allows to overrule any configuration using an OS environment variable. For example to set a shutdown timeout of 5 seconds: CAMEL_MAIN_SHUTDOWNTIMEOUT=5. This option is default enabled.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.autoConfigurationFailFast",
"description": "Whether auto configuration should fail fast when configuring one ore more properties fails for whatever reason such as a invalid property name, etc. This option is default enabled.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.autoConfigurationLogSummary",
"description": "Whether auto configuration should log a summary with the configured properties. This option is default enabled.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.autoStartup",
"description": "Sets whether the object should automatically start when Camel starts. Important: Currently only routes can be disabled, as CamelContext's are always started. Note: When setting auto startup false on CamelContext then that takes precedence and no routes is started. You would need to start CamelContext explicit using the org.apache.camel.CamelContext.start() method, to start the context, and then you would need to start the routes manually using CamelContext.getRouteController().startRoute(String). Default is true to always start up.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.autowireComponentProperties",
"description": "Whether autowiring components with properties that are of same type, which has been added to the Camel registry, as a singleton instance. This is used for convention over configuration to inject DataSource, AmazonLogin instances to the components. This option is default enabled.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.autowireComponentPropertiesAllowPrivateSetter",
"description": "Whether autowiring components allows to use private setter method when setting the value. This may be needed in some rare situations when some configuration classes may configure via constructors over setters. But constructor configuration is more cumbersome to use via .properties files etc.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.autowireComponentPropertiesDeep",
"description": "Whether autowiring components (with deep nesting by attempting to walk as deep down the object graph by creating new empty objects on the way if needed) with properties that are of same type, which has been added to the Camel registry, as a singleton instance. This is used for convention over configuration to inject DataSource, AmazonLogin instances to the components. This option is default disabled.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.autowireComponentPropertiesNonNullOnly",
"description": "Whether to only autowire if the property has no default value or has not been configured explicit. This option is default disabled.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.backlogTracing",
"description": "Sets whether backlog tracing is enabled or not. Default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.beanIntrospectionExtendedStatistics",
"description": "Sets whether bean introspection uses extended statistics. The default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.beanIntrospectionLoggingLevel",
"description": "Sets the logging level used by bean introspection, logging activity of its usage. The default is TRACE.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "object",
"javaType": "org.apache.camel.LoggingLevel",
"enum": [
"ERROR",
"WARN",
"INFO",
"DEBUG",
"TRACE",
"OFF"
]
},
{
"name": "camel.main.caseInsensitiveHeaders",
"description": "Whether to use case sensitive or insensitive headers. Important: When using case sensitive (this is set to false). Then the map is case sensitive which means headers such as content-type and Content-Type are two different keys which can be a problem for some protocols such as HTTP based, which rely on case insensitive headers. However case sensitive implementations can yield faster performance. Therefore use case sensitive implementation with care. Default is true.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.consumerTemplateCacheSize",
"description": "Consumer template endpoints cache size.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int",
"defaultValue": 1000
},
{
"name": "camel.main.durationHitExitCode",
"description": "Sets the exit code for the application if duration was hit",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.main.durationMaxIdleSeconds",
"description": "To specify for how long time in seconds Camel can be idle before automatic terminating the JVM. You can use this to run Camel for a short while.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.main.durationMaxMessages",
"description": "To specify how many messages to process by Camel before automatic terminating the JVM. You can use this to run Camel for a short while.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.main.durationMaxSeconds",
"description": "To specify for how long time in seconds to keep running the JVM before automatic terminating the JVM. You can use this to run Camel for a short while.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.main.endpointBasicPropertyBinding",
"description": "Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities. The default value is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.endpointBridgeErrorHandler",
"description": "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. 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.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.endpointLazyStartProducer",
"description": "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 then creating and starting the producer may take a little time and prolong the total processing time of the processing. The default value is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.endpointRuntimeStatisticsEnabled",
"description": "Sets whether endpoint runtime statistics is enabled (gathers runtime usage of each incoming and outgoing endpoints). The default value is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.fileConfigurations",
"description": "Directory to load additional configuration files that contains configuration values that takes precedence over any other configuration. This can be used to refer to files that may have secret configuration that has been mounted on the file system for containers. You can specify a pattern to load from sub directories and a name pattern such as \/var\/app\/secret\/.properties, multiple directories can be separated by comma.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.hangupInterceptorEnabled",
"description": "Whether to use graceful hangup when Camel is stopping or when the JVM terminates.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.inflightRepositoryBrowseEnabled",
"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.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.javaRoutesExcludePattern",
"description": "Used for exclusive filtering component scanning of RouteBuilder classes with Component annotation. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to exclude all classes starting with Bar use: **\/Bar* To exclude all routes form a specific package use: com\/mycompany\/bar\/* To exclude all routes form a specific package and its sub-packages use double wildcards: com\/mycompany\/bar\/** And to exclude all routes from two specific packages use: com\/mycompany\/bar\/*,com\/mycompany\/stuff\/*",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.javaRoutesIncludePattern",
"description": "Used for inclusive filtering component scanning of RouteBuilder classes with Component annotation. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to include all classes starting with Foo use: **\/Foo To include all routes form a specific package use: com\/mycompany\/foo\/* To include all routes form a specific package and its sub-packages use double wildcards: com\/mycompany\/foo\/** And to include all routes from two specific packages use: com\/mycompany\/foo\/*,com\/mycompany\/stuff\/*",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.jmxEnabled",
"description": "Enable JMX in your Camel application.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.jmxManagementNamePattern",
"description": "The naming pattern for creating the CamelContext JMX management name. The default pattern is #name#",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String",
"defaultValue": "#name#"
},
{
"name": "camel.main.jmxManagementStatisticsLevel",
"description": "Sets the JMX statistics level The level can be set to Extended to gather additional information The default value is Default.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "object",
"javaType": "org.apache.camel.ManagementStatisticsLevel",
"defaultValue": "ManagementStatisticsLevel.Default",
"enum": [
"Extended",
"Default",
"RoutesOnly",
"Off"
]
},
{
"name": "camel.main.lightweight",
"description": "Configure the context to be lightweight. This will trigger some optimizations and memory reduction options. Lightweight context have some limitations. At this moment, dynamic endpoint destinations are not supported.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.loadTypeConverters",
"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(loader = true) on your custom type converter classes.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.logDebugMaxChars",
"description": "Is used to limit the maximum length of the logging Camel message bodies. If the message body is longer than the limit, the log message is clipped. Use -1 to have unlimited length. Use for example 1000 to log at most 1000 characters.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.main.logExhaustedMessageBody",
"description": "Sets whether to log exhausted message body with message history. Default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.logMask",
"description": "Sets whether log mask is enabled or not. Default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.mdcLoggingKeysPattern",
"description": "Sets the pattern used for determine which custom MDC keys to propagate during message routing when the routing engine continues routing asynchronously for the given message. Setting this pattern to will propagate all custom keys. Or setting the pattern to foo,bar will propagate any keys starting with either foo or bar. Notice that a set of standard Camel MDC keys are always propagated which starts with camel. as key name. The match rules are applied in this order (case insensitive): 1. exact match, returns true 2. wildcard match (pattern ends with a and the name starts with the pattern), returns true 3. regular expression match, returns true 4. otherwise returns false",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.messageHistory",
"description": "Sets whether message history is enabled or not. Default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.name",
"description": "Sets the name of the CamelContext.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.packageScanRouteBuilders",
"description": "Sets package names for scanning for org.apache.camel.builder.RouteBuilder classes as candidates to be included. If you are using Spring Boot then its instead recommended to use Spring Boots component scanning and annotate your route builder classes with Component. In other words only use this for Camel Main in standalone mode.",
"sourceType": "org.apache.camel.main.MainConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.producerTemplateCacheSize",
"description": "Producer template endpoints cache size.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int",
"defaultValue": 1000
},
{
"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 JMS endpoints, use: exclude=jms:* Multiple patterns can be separated by comma, for example to exclude both foo and bar routes, use: exclude=foo*,bar* Exclude takes precedence over include.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.routeFilterIncludePattern",
"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 JMS endpoints, use: exclude=jms:* Multiple patterns can be separated by comma, for example to exclude both foo and bar routes, use: exclude=foo*,bar* Exclude takes precedence over include.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.routesCollectorEnabled",
"description": "Whether the routes collector is enabled or not. When enabled Camel will auto-discover routes (RouteBuilder instances from the registry and also load additional XML routes from the file system. The routes collector is default enabled.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.shutdownLogInflightExchangesOnTimeout",
"description": "Sets whether to log information about the inflight Exchanges which are still running during a shutdown which didn't complete without the given timeout. This requires to enable the option inflightRepositoryBrowseEnabled.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.shutdownNowOnTimeout",
"description": "Sets whether to force shutdown of all consumers when a timeout occurred and thus not all consumers was shutdown within that period. You should have good reasons to set this option to false as it means that the routes keep running and is halted abruptly when CamelContext has been shutdown.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.shutdownRoutesInReverseOrder",
"description": "Sets whether routes should be shutdown in reverse or the same order as they where started.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.shutdownSuppressLoggingOnTimeout",
"description": "Whether Camel should try to suppress logging during shutdown and timeout was triggered, meaning forced shutdown is happening. And during forced shutdown we want to avoid logging errors\/warnings et all in the logs as a side-effect of the forced timeout. Notice the suppress is a best effort as there may still be some logs coming from 3rd party libraries and whatnot, which Camel cannot control. This option is default false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.shutdownTimeout",
"description": "Timeout in seconds to graceful shutdown Camel.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int",
"defaultValue": 45
},
{
"name": "camel.main.streamCachingAnySpoolRules",
"description": "Sets whether if just any of the org.apache.camel.spi.StreamCachingStrategy.SpoolRule rules returns true then shouldSpoolCache(long) returns true, to allow spooling to disk. If this option is false, then all the org.apache.camel.spi.StreamCachingStrategy.SpoolRule must return true. The default value is false which means that all the rules must return true.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.streamCachingBufferSize",
"description": "Sets the stream caching buffer size to use when allocating in-memory buffers used for in-memory stream caches. The default size is 4096.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.main.streamCachingEnabled",
"description": "Sets whether stream caching is enabled or not. Default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.streamCachingRemoveSpoolDirectoryWhenStopping",
"description": "Whether to remove stream caching temporary directory when stopping. This option is default true.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.main.streamCachingSpoolCipher",
"description": "Sets a stream caching cipher name to use when spooling to disk to write with encryption. By default the data is not encrypted.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.streamCachingSpoolDirectory",
"description": "Sets the stream caching spool (temporary) directory to use for overflow and spooling to disk. If no spool directory has been explicit configured, then a temporary directory is created in the java.io.tmpdir directory.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.streamCachingSpoolThreshold",
"description": "Stream caching threshold in bytes when overflow to disk is activated. The default threshold is 128kb. Use -1 to disable overflow to disk.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "long"
},
{
"name": "camel.main.streamCachingSpoolUsedHeapMemoryLimit",
"description": "Sets what the upper bounds should be when streamCachingSpoolUsedHeapMemoryThreshold is in use.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.streamCachingSpoolUsedHeapMemoryThreshold",
"description": "Sets a percentage (1-99) of used heap memory threshold to activate stream caching spooling to disk.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.main.streamCachingStatisticsEnabled",
"description": "Sets whether stream caching statistics is enabled.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.threadNamePattern",
"description": "Sets the thread name pattern used for creating the full thread name. The default pattern is: Camel (#camelId#) thread ##counter# - #name# Where #camelId# is the name of the CamelContext. and #counter# is a unique incrementing counter. and #name# is the regular thread name. You can also use #longName# which is the long thread name which can includes endpoint parameters etc.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.tracing",
"description": "Sets whether tracing is enabled or not. Default is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.tracingPattern",
"description": "Tracing pattern to match which node EIPs to trace. For example to match all To EIP nodes, use to. The pattern matches by node and route id's Multiple patterns can be separated by comma.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.main.useBreadcrumb",
"description": "Set whether breadcrumb is enabled. The default value is false.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.useDataType",
"description": "Whether to enable using data type on Camel messages. Data type are automatic turned on if one ore more routes has been explicit configured with input and output types. Otherwise data type is default off.",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.useMdcLogging",
"description": "To turn on MDC logging",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.main.xmlRests",
"description": "Directory to scan for adding additional XML rests. You can turn this off by setting the value to false. Files can be loaded from either classpath or file by prefixing with classpath: or file: Wildcards is supported using a ANT pattern style paths, such as classpath:**\/*camel*.xml Notice when using wildcards, then there is additional overhead as the classpath is scanned, where as if you specific the exact name for each XML file is faster as no classpath scanning is needed. Multiple directories can be specified and separated by comma, such as: file:\/myapp\/mycamel\/*.xml,file:\/myapp\/myothercamel\/*.xml",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String",
"defaultValue": "classpath:camel-rest\/*.xml"
},
{
"name": "camel.main.xmlRoutes",
"description": "Directory to scan for adding additional XML routes. You can turn this off by setting the value to false. Files can be loaded from either classpath or file by prefixing with classpath: or file: Wildcards is supported using a ANT pattern style paths, such as classpath:**\/*camel*.xml Notice when using wildcards, then there is additional overhead as the classpath is scanned, where as if you specific the exact name for each XML file is faster as no classpath scanning is needed. Multiple directories can be specified and separated by comma, such as: file:\/myapp\/mycamel\/*.xml,file:\/myapp\/myothercamel\/*.xml",
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties",
"type": "string",
"javaType": "java.lang.String",
"defaultValue": "classpath:camel\/*.xml"
},
{
"name": "camel.hystrix.allowMaximumSizeToDivergeFromCoreSize",
"description": "Allows the configuration for maximumSize to take effect. That value can then be equal to, or higher, than coreSize",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.circuitBreakerEnabled",
"description": "Whether to use a HystrixCircuitBreaker or not. If false no circuit-breaker logic will be used and all requests permitted. This is similar in effect to circuitBreakerForceClosed() except that continues tracking metrics and knowing whether it should be open\/closed, this property results in not even instantiating a circuit-breaker.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.circuitBreakerErrorThresholdPercentage",
"description": "Error percentage threshold (as whole number such as 50) at which point the circuit breaker will trip open and reject requests. It will stay tripped for the duration defined in circuitBreakerSleepWindowInMilliseconds; The error percentage this is compared against comes from HystrixCommandMetrics.getHealthCounts().",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.circuitBreakerForceClosed",
"description": "If true the HystrixCircuitBreaker#allowRequest() will always return true to allow requests regardless of the error percentage from HystrixCommandMetrics.getHealthCounts(). The circuitBreakerForceOpen() property takes precedence so if it set to true this property does nothing.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.circuitBreakerForceOpen",
"description": "If true the HystrixCircuitBreaker.allowRequest() will always return false, causing the circuit to be open (tripped) and reject all requests. This property takes precedence over circuitBreakerForceClosed();",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.circuitBreakerRequestVolumeThreshold",
"description": "Minimum number of requests in the metricsRollingStatisticalWindowInMilliseconds() that must exist before the HystrixCircuitBreaker will trip. If below this number the circuit will not trip regardless of error percentage.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.circuitBreakerSleepWindowInMilliseconds",
"description": "The time in milliseconds after a HystrixCircuitBreaker trips open that it should wait before trying requests again.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.corePoolSize",
"description": "Core thread-pool size that gets passed to java.util.concurrent.ThreadPoolExecutor#setCorePoolSize(int)",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.executionIsolationSemaphoreMaxConcurrentRequests",
"description": "Number of concurrent requests permitted to HystrixCommand.run(). Requests beyond the concurrent limit will be rejected. Applicable only when executionIsolationStrategy == SEMAPHORE.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.executionIsolationStrategy",
"description": "What isolation strategy HystrixCommand.run() will be executed with. If THREAD then it will be executed on a separate thread and concurrent requests limited by the number of threads in the thread-pool. If SEMAPHORE then it will be executed on the calling thread and concurrent requests limited by the semaphore count.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.hystrix.executionIsolationThreadInterruptOnTimeout",
"description": "Whether the execution thread should attempt an interrupt (using Future#cancel ) when a thread times out. Applicable only when executionIsolationStrategy() == THREAD.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.executionTimeoutEnabled",
"description": "Whether the timeout mechanism is enabled for this command",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.executionTimeoutInMilliseconds",
"description": "Time in milliseconds at which point the command will timeout and halt execution. If executionIsolationThreadInterruptOnTimeout == true and the command is thread-isolated, the executing thread will be interrupted. If the command is semaphore-isolated and a HystrixObservableCommand, that command will get unsubscribed.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.fallbackEnabled",
"description": "Whether HystrixCommand.getFallback() should be attempted when failure occurs.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.fallbackIsolationSemaphoreMaxConcurrentRequests",
"description": "Number of concurrent requests permitted to HystrixCommand.getFallback(). Requests beyond the concurrent limit will fail-fast and not attempt retrieving a fallback.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.groupKey",
"description": "Sets the group key to use. The default value is CamelHystrix.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.hystrix.keepAliveTime",
"description": "Keep-alive time in minutes that gets passed to ThreadPoolExecutor#setKeepAliveTime(long,TimeUnit)",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.maximumSize",
"description": "Maximum thread-pool size that gets passed to ThreadPoolExecutor#setMaximumPoolSize(int) . This is the maximum amount of concurrency that can be supported without starting to reject HystrixCommands. Please note that this setting only takes effect if you also set allowMaximumSizeToDivergeFromCoreSize",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.maxQueueSize",
"description": "Max queue size that gets passed to BlockingQueue in HystrixConcurrencyStrategy.getBlockingQueue(int) This should only affect the instantiation of a threadpool - it is not eliglible to change a queue size on the fly. For that, use queueSizeRejectionThreshold().",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.metricsHealthSnapshotIntervalInMilliseconds",
"description": "Time in milliseconds to wait between allowing health snapshots to be taken that calculate success and error percentages and affect HystrixCircuitBreaker.isOpen() status. On high-volume circuits the continual calculation of error percentage can become CPU intensive thus this controls how often it is calculated.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.metricsRollingPercentileBucketSize",
"description": "Maximum number of values stored in each bucket of the rolling percentile. This is passed into HystrixRollingPercentile inside HystrixCommandMetrics.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.metricsRollingPercentileEnabled",
"description": "Whether percentile metrics should be captured using HystrixRollingPercentile inside HystrixCommandMetrics.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.metricsRollingPercentileWindowBuckets",
"description": "Number of buckets the rolling percentile window is broken into. This is passed into HystrixRollingPercentile inside HystrixCommandMetrics.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.metricsRollingPercentileWindowInMilliseconds",
"description": "Duration of percentile rolling window in milliseconds. This is passed into HystrixRollingPercentile inside HystrixCommandMetrics.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.metricsRollingStatisticalWindowBuckets",
"description": "Number of buckets the rolling statistical window is broken into. This is passed into HystrixRollingNumber inside HystrixCommandMetrics.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.metricsRollingStatisticalWindowInMilliseconds",
"description": "This property sets the duration of the statistical rolling window, in milliseconds. This is how long metrics are kept for the thread pool. The window is divided into buckets and rolls by those increments.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.queueSizeRejectionThreshold",
"description": "Queue size rejection threshold is an artificial max size at which rejections will occur even if maxQueueSize has not been reached. This is done because the maxQueueSize of a BlockingQueue can not be dynamically changed and we want to support dynamically changing the queue size that affects rejections. This is used by HystrixCommand when queuing a thread for execution.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.requestLogEnabled",
"description": "Whether HystrixCommand execution and events should be logged to HystrixRequestLog.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.hystrix.threadPoolKey",
"description": "Sets the thread pool key to use. Will by default use the same value as groupKey has been configured to use.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.hystrix.threadPoolRollingNumberStatisticalWindowBuckets",
"description": "Number of buckets the rolling statistical window is broken into. This is passed into HystrixRollingNumber inside each HystrixThreadPoolMetrics instance.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.hystrix.threadPoolRollingNumberStatisticalWindowInMilliseconds",
"description": "Duration of statistical rolling window in milliseconds. This is passed into HystrixRollingNumber inside each HystrixThreadPoolMetrics instance.",
"sourceType": "org.apache.camel.main.HystrixConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.automaticTransitionFromOpenToHalfOpenEnabled",
"description": "Enables automatic transition from OPEN to HALF_OPEN state once the waitDurationInOpenState has passed.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.resilience4j.bulkheadEnabled",
"description": "Whether bulkhead is enabled or not on the circuit breaker.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.resilience4j.bulkheadMaxConcurrentCalls",
"description": "Configures the max amount of concurrent calls the bulkhead will support.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.bulkheadMaxWaitDuration",
"description": "Configures a maximum amount of time which the calling thread will wait to enter the bulkhead. If bulkhead has space available, entry is guaranteed and immediate. If bulkhead is full, calling threads will contest for space, if it becomes available. maxWaitDuration can be set to 0. Note: for threads running on an event-loop or equivalent (rx computation pool, etc), setting maxWaitDuration to 0 is highly recommended. Blocking an event-loop thread will most likely have a negative effect on application throughput.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.circuitBreakerRef",
"description": "Refers to an existing io.github.resilience4j.circuitbreaker.CircuitBreaker instance to lookup and use from the registry. When using this, then any other circuit breaker options are not in use.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.resilience4j.configRef",
"description": "Refers to an existing io.github.resilience4j.circuitbreaker.CircuitBreakerConfig instance to lookup and use from the registry.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.resilience4j.failureRateThreshold",
"description": "Configures the failure rate threshold in percentage. If the failure rate is equal or greater than the threshold the CircuitBreaker transitions to open and starts short-circuiting calls. The threshold must be greater than 0 and not greater than 100. Default value is 50 percentage.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "number",
"javaType": "java.lang.Float"
},
{
"name": "camel.resilience4j.minimumNumberOfCalls",
"description": "Configures configures the minimum number of calls which are required (per sliding window period) before the CircuitBreaker can calculate the error rate. For example, if minimumNumberOfCalls is 10, then at least 10 calls must be recorded, before the failure rate can be calculated. If only 9 calls have been recorded the CircuitBreaker will not transition to open even if all 9 calls have failed. Default minimumNumberOfCalls is 100",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.permittedNumberOfCallsInHalfOpenState",
"description": "Configures the number of permitted calls when the CircuitBreaker is half open. The size must be greater than 0. Default size is 10.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.slidingWindowSize",
"description": "Configures the size of the sliding window which is used to record the outcome of calls when the CircuitBreaker is closed. slidingWindowSize configures the size of the sliding window. Sliding window can either be count-based or time-based. If slidingWindowType is COUNT_BASED, the last slidingWindowSize calls are recorded and aggregated. If slidingWindowType is TIME_BASED, the calls of the last slidingWindowSize seconds are recorded and aggregated. The slidingWindowSize must be greater than 0. The minimumNumberOfCalls must be greater than 0. If the slidingWindowType is COUNT_BASED, the minimumNumberOfCalls cannot be greater than slidingWindowSize . If the slidingWindowType is TIME_BASED, you can pick whatever you want. Default slidingWindowSize is 100.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.slidingWindowType",
"description": "Configures the type of the sliding window which is used to record the outcome of calls when the CircuitBreaker is closed. Sliding window can either be count-based or time-based. If slidingWindowType is COUNT_BASED, the last slidingWindowSize calls are recorded and aggregated. If slidingWindowType is TIME_BASED, the calls of the last slidingWindowSize seconds are recorded and aggregated. Default slidingWindowType is COUNT_BASED.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.resilience4j.slowCallDurationThreshold",
"description": "Configures the duration threshold (seconds) above which calls are considered as slow and increase the slow calls percentage. Default value is 60 seconds.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.slowCallRateThreshold",
"description": "Configures a threshold in percentage. The CircuitBreaker considers a call as slow when the call duration is greater than slowCallDurationThreshold(Duration. When the percentage of slow calls is equal or greater the threshold, the CircuitBreaker transitions to open and starts short-circuiting calls. The threshold must be greater than 0 and not greater than 100. Default value is 100 percentage which means that all recorded calls must be slower than slowCallDurationThreshold.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "number",
"javaType": "java.lang.Float"
},
{
"name": "camel.resilience4j.timeoutCancelRunningFuture",
"description": "Configures whether cancel is called on the running future. Defaults to true.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.resilience4j.timeoutDuration",
"description": "Configures the thread execution timeout (millis). Default value is 1000 millis (1 second).",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.timeoutEnabled",
"description": "Whether timeout is enabled or not on the circuit breaker. Default is false.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.resilience4j.timeoutExecutorServiceRef",
"description": "References to a custom thread pool to use when timeout is enabled (uses ForkJoinPool#commonPool() by default)",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.resilience4j.waitDurationInOpenState",
"description": "Configures the wait duration (in seconds) which specifies how long the CircuitBreaker should stay open, before it switches to half open. Default value is 60 seconds.",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "integer",
"javaType": "java.lang.Integer"
},
{
"name": "camel.resilience4j.writableStackTraceEnabled",
"description": "Enables writable stack traces. When set to false, Exception.getStackTrace returns a zero length array. This may be used to reduce log spam when the circuit breaker is open as the cause of the exceptions is already known (the circuit breaker is short-circuiting calls).",
"sourceType": "org.apache.camel.main.Resilience4jConfigurationProperties",
"type": "boolean",
"javaType": "java.lang.Boolean"
},
{
"name": "camel.rest.apiComponent",
"description": "Sets the name of the Camel component to use as the REST API (such as swagger)",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.apiContextIdPattern",
"description": "Optional CamelContext id pattern to only allow Rest APIs from rest services within CamelContext's which name matches the pattern. The pattern #name# refers to the CamelContext name, to match on the current CamelContext only. For any other value, the pattern uses the rules from org.apache.camel.support.EndpointHelper#matchPattern(String,String)",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.apiContextListing",
"description": "Sets whether listing of all available CamelContext's with REST services in the JVM is enabled. If enabled it allows to discover these contexts, if false then only the current CamelContext is in use.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.rest.apiContextPath",
"description": "Sets a leading API context-path the REST API services will be using. This can be used when using components such as camel-servlet where the deployed web application is deployed using a context-path.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.apiContextRouteId",
"description": "Sets the route id to use for the route that services the REST API. The route will by default use an auto assigned route id.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.apiHost",
"description": "To use an specific hostname for the API documentation (eg swagger) This can be used to override the generated host with this configured hostname",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.apiProperties",
"description": "Sets additional options on api level",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "java.util.Map"
},
{
"name": "camel.rest.apiVendorExtension",
"description": "Whether vendor extension is enabled in the Rest APIs. If enabled then Camel will include additional information as vendor extension (eg keys starting with x-) such as route ids, class names etc. Not all 3rd party API gateways and tools supports vendor-extensions when importing your API docs.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.rest.bindingMode",
"description": "Sets the binding mode to be used by the REST consumer",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "org.apache.camel.spi.RestBindingMode",
"defaultValue": "RestBindingMode.off",
"enum": [
"auto",
"off",
"json",
"xml",
"json_xml"
]
},
{
"name": "camel.rest.clientRequestValidation",
"description": "Whether to enable validation of the client request to check whether the Content-Type and Accept headers from the client is supported by the Rest-DSL configuration of its consumes\/produces settings. This can be turned on, to enable this check. In case of validation error, then HTTP Status codes 415 or 406 is returned. The default value is false.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.rest.component",
"description": "Sets the name of the Camel component to use as the REST consumer",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.componentProperties",
"description": "Sets additional options on component level",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "java.util.Map"
},
{
"name": "camel.rest.consumerProperties",
"description": "Sets additional options on consumer level",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "java.util.Map"
},
{
"name": "camel.rest.contextPath",
"description": "Sets a leading context-path the REST services will be using. This can be used when using components such as camel-servlet where the deployed web application is deployed using a context-path. Or for components such as camel-jetty or camel-netty-http that includes a HTTP server.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.corsHeaders",
"description": "Sets the CORS headers to use if CORS has been enabled.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "java.util.Map"
},
{
"name": "camel.rest.dataFormatProperties",
"description": "Sets additional options on data format level",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "java.util.Map"
},
{
"name": "camel.rest.enableCORS",
"description": "To specify whether to enable CORS which means Camel will automatic include CORS in the HTTP headers in the response. This option is default false",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "boolean",
"javaType": "boolean"
},
{
"name": "camel.rest.endpointProperties",
"description": "Sets additional options on endpoint level",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "java.util.Map"
},
{
"name": "camel.rest.host",
"description": "Sets the hostname to use by the REST consumer",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.hostNameResolver",
"description": "Sets the resolver to use for resolving hostname",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "object",
"javaType": "org.apache.camel.spi.RestHostNameResolver",
"defaultValue": "RestHostNameResolver.allLocalIp",
"enum": [
"allLocalIp",
"localIp",
"localHostName"
]
},
{
"name": "camel.rest.jsonDataFormat",
"description": "Sets a custom json data format to be used Important: This option is only for setting a custom name of the data format, not to refer to an existing data format instance.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.port",
"description": "Sets the port to use by the REST consumer",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "integer",
"javaType": "int"
},
{
"name": "camel.rest.producerApiDoc",
"description": "Sets the location of the api document (swagger api) the REST producer will use to validate the REST uri and query parameters are valid accordingly to the api document. This requires adding camel-swagger-java to the classpath, and any miss configuration will let Camel fail on startup and report the error(s). The location of the api document is loaded from classpath by default, but you can use file: or http: to refer to resources to load from file or http url.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.producerComponent",
"description": "Sets the name of the Camel component to use as the REST producer",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.scheme",
"description": "Sets the scheme to use by the REST consumer",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.rest.skipBindingOnErrorCode",
"description": "Whether to skip binding output if there is a custom HTTP error code, and instead use the response body as-is. This option is default true.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.rest.useXForwardHeaders",
"description": "WWhether to use X-Forward headers to set host etc. for Swagger. This option is default true.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "boolean",
"javaType": "boolean",
"defaultValue": true
},
{
"name": "camel.rest.xmlDataFormat",
"description": "Sets a custom xml data format to be used. Important: This option is only for setting a custom name of the data format, not to refer to an existing data format instance.",
"sourceType": "org.apache.camel.spi.RestConfiguration",
"type": "string",
"javaType": "java.lang.String"
},
{
"name": "camel.component.bean.cache",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.bean.BeanComponent",
"description": "Use singleton option instead.",
"defaultValue": "true",
"deprecated": true,
"deprecation": {
}
},
{
"name": "camel.component.bean.lazy-start-producer",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.bean.BeanComponent",
"description": "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 then creating and starting the producer may take a little time and prolong the total processing time of the processing.",
"defaultValue": "false"
},
{
"name": "camel.component.bean.scope",
"type": "org.apache.camel.BeanScope",
"sourceType": "org.apache.camel.component.bean.BeanComponent",
"description": "Scope of bean. When using singleton scope (default) the bean is created or looked up only once and reused for the lifetime of the endpoint. The bean should be thread-safe in case concurrent threads is calling the bean at the same time. When using request scope the bean is created or looked up once per request (exchange). This can be used if you want to store state on a bean while processing a request and you want to call the same bean instance multiple times while processing the request. The bean does not have to be thread-safe as the instance is only called from the same request. When using delegate scope, then the bean will be looked up or created per call. However in case of lookup then this is delegated to the bean registry such as Spring or CDI (if in use), which depends on their configuration can act as either singleton or prototype scope. so when using prototype then this depends on the delegated registry.",
"defaultValue": "Singleton"
},
{
"name": "camel.component.bean.basic-property-binding",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.bean.BeanComponent",
"description": "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities",
"defaultValue": "false"
},
{
"name": "camel.component.class.cache",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.beanclass.ClassComponent",
"description": "Use singleton option instead.",
"defaultValue": "true",
"deprecated": true,
"deprecation": {
}
},
{
"name": "camel.component.class.lazy-start-producer",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.beanclass.ClassComponent",
"description": "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 then creating and starting the producer may take a little time and prolong the total processing time of the processing.",
"defaultValue": "false"
},
{
"name": "camel.component.class.scope",
"type": "org.apache.camel.BeanScope",
"sourceType": "org.apache.camel.component.beanclass.ClassComponent",
"description": "Scope of bean. When using singleton scope (default) the bean is created or looked up only once and reused for the lifetime of the endpoint. The bean should be thread-safe in case concurrent threads is calling the bean at the same time. When using request scope the bean is created or looked up once per request (exchange). This can be used if you want to store state on a bean while processing a request and you want to call the same bean instance multiple times while processing the request. The bean does not have to be thread-safe as the instance is only called from the same request. When using delegate scope, then the bean will be looked up or created per call. However in case of lookup then this is delegated to the bean registry such as Spring or CDI (if in use), which depends on their configuration can act as either singleton or prototype scope. so when using prototype then this depends on the delegated registry.",
"defaultValue": "Singleton"
},
{
"name": "camel.component.class.basic-property-binding",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.beanclass.ClassComponent",
"description": "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities",
"defaultValue": "false"
},
{
"name": "camel.component.timer.bridge-error-handler",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.timer.TimerComponent",
"description": "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. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored.",
"defaultValue": "false"
},
{
"name": "camel.component.timer.basic-property-binding",
"type": "java.lang.Boolean",
"sourceType": "org.apache.camel.component.timer.TimerComponent",
"description": "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities",
"defaultValue": "false"
}
]
}