gitextract_48t35rhg/ ├── .asf.yaml ├── .gitattributes ├── .github/ │ ├── actions/ │ │ └── incremental-build/ │ │ ├── exclusions.sh │ │ └── parse_errors.sh │ ├── asf-deploy-settings.xml │ ├── dependabot.yml │ └── workflows/ │ ├── automatic-sync-main.yml │ ├── depsreview.yaml │ ├── generate-sbom-main.yml │ ├── pr-build-main.yml │ └── pr-doc-validation.yml ├── .gitignore ├── .mvn/ │ ├── extensions.xml │ ├── jvm.config │ └── wrapper/ │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Jenkinsfile.sb ├── Jenkinsfile.sb.deploy ├── Jenkinsfile.sb.ppc64le ├── KEYS ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── archetypes/ │ ├── camel-archetype-spring-boot/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ ├── META-INF/ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── NOTICE.txt │ │ │ │ │ └── archetype-post-generate.groovy │ │ │ │ └── archetype-resources/ │ │ │ │ ├── README.adoc │ │ │ │ ├── pom.xml │ │ │ │ └── src/ │ │ │ │ ├── main/ │ │ │ │ │ ├── java/ │ │ │ │ │ │ ├── MySpringBean.java │ │ │ │ │ │ ├── MySpringBootApplication.java │ │ │ │ │ │ └── MySpringBootRouter.java │ │ │ │ │ └── resources/ │ │ │ │ │ ├── META-INF/ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── NOTICE.txt │ │ │ │ │ └── application.properties │ │ │ │ └── test/ │ │ │ │ └── java/ │ │ │ │ └── MySpringBootApplicationTest.java │ │ │ └── resources-filtered/ │ │ │ └── META-INF/ │ │ │ └── maven/ │ │ │ └── archetype-metadata.xml │ │ └── test/ │ │ └── resources/ │ │ ├── projects/ │ │ │ ├── build-it/ │ │ │ │ ├── archetype.properties │ │ │ │ └── goal.txt │ │ │ └── run-it/ │ │ │ ├── archetype.properties │ │ │ └── goal.txt │ │ └── settings.xml │ └── pom.xml ├── camel-spring-boot-sbom/ │ ├── camel-spring-boot-sbom.json │ ├── camel-spring-boot-sbom.vex.json │ └── camel-spring-boot-sbom.xml ├── catalog/ │ ├── camel-catalog-provider-springboot/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── springboot/ │ │ │ │ └── catalog/ │ │ │ │ └── SpringBootRuntimeProvider.java │ │ │ └── resources/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── springboot/ │ │ │ └── catalog/ │ │ │ ├── beans/ │ │ │ │ ├── CaffeineAggregationRepository.json │ │ │ │ ├── CaffeineIdempotentRepository.json │ │ │ │ ├── CassandraAggregationRepository.json │ │ │ │ ├── CassandraIdempotentRepository.json │ │ │ │ ├── ConsulClusterService.json │ │ │ │ ├── CronScheduledRoutePolicy.json │ │ │ │ ├── EhcacheAggregationRepository.json │ │ │ │ ├── EhcacheIdempotentRepository.json │ │ │ │ ├── ElasticsearchBulkRequestAggregationStrategy.json │ │ │ │ ├── Etcd3AggregationRepository.json │ │ │ │ ├── FileLockClusterService.json │ │ │ │ ├── HazelcastAggregationRepository.json │ │ │ │ ├── HazelcastIdempotentRepository.json │ │ │ │ ├── InfinispanEmbeddedAggregationRepository.json │ │ │ │ ├── InfinispanEmbeddedClusterService.json │ │ │ │ ├── InfinispanEmbeddedIdempotentRepository.json │ │ │ │ ├── InfinispanRemoteAggregationRepository.json │ │ │ │ ├── InfinispanRemoteClusterService.json │ │ │ │ ├── InfinispanRemoteIdempotentRepository.json │ │ │ │ ├── JCacheAggregationRepository.json │ │ │ │ ├── JCacheIdempotentRepository.json │ │ │ │ ├── JGroupsRaftClusterService.json │ │ │ │ ├── JdbcAggregationRepository.json │ │ │ │ ├── JdbcMessageIdRepository.json │ │ │ │ ├── KafkaIdempotentRepository.json │ │ │ │ ├── KubernetesClusterService.json │ │ │ │ ├── LevelDBAggregationRepository.json │ │ │ │ ├── LoggingHttpActivityListener.json │ │ │ │ ├── MongoDbIdempotentRepository.json │ │ │ │ ├── OpensearchBulkRequestAggregationStrategy.json │ │ │ │ ├── SimpleScheduledRoutePolicy.json │ │ │ │ ├── SpringCacheIdempotentRepository.json │ │ │ │ ├── SpringRedisIdempotentRepository.json │ │ │ │ ├── TarAggregationStrategy.json │ │ │ │ ├── XsltAggregationStrategy.json │ │ │ │ ├── XsltSaxonAggregationStrategy.json │ │ │ │ ├── ZipAggregationStrategy.json │ │ │ │ └── ZooKeeperClusterService.json │ │ │ ├── beans.properties │ │ │ ├── components/ │ │ │ │ ├── activemq.json │ │ │ │ ├── activemq6.json │ │ │ │ ├── amqp.json │ │ │ │ ├── arangodb.json │ │ │ │ ├── as2.json │ │ │ │ ├── asterisk.json │ │ │ │ ├── atmosphere-websocket.json │ │ │ │ ├── atom.json │ │ │ │ ├── avro.json │ │ │ │ ├── aws-bedrock-agent-runtime.json │ │ │ │ ├── aws-bedrock-agent.json │ │ │ │ ├── aws-bedrock.json │ │ │ │ ├── aws-cloudtrail.json │ │ │ │ ├── aws-config.json │ │ │ │ ├── aws-parameter-store.json │ │ │ │ ├── aws-secrets-manager.json │ │ │ │ ├── aws-security-hub.json │ │ │ │ ├── aws2-athena.json │ │ │ │ ├── aws2-comprehend.json │ │ │ │ ├── aws2-cw.json │ │ │ │ ├── aws2-ddb.json │ │ │ │ ├── aws2-ddbstream.json │ │ │ │ ├── aws2-ec2.json │ │ │ │ ├── aws2-ecs.json │ │ │ │ ├── aws2-eks.json │ │ │ │ ├── aws2-eventbridge.json │ │ │ │ ├── aws2-iam.json │ │ │ │ ├── aws2-kinesis-firehose.json │ │ │ │ ├── aws2-kinesis.json │ │ │ │ ├── aws2-kms.json │ │ │ │ ├── aws2-lambda.json │ │ │ │ ├── aws2-mq.json │ │ │ │ ├── aws2-msk.json │ │ │ │ ├── aws2-polly.json │ │ │ │ ├── aws2-redshift-data.json │ │ │ │ ├── aws2-rekognition.json │ │ │ │ ├── aws2-s3-vectors.json │ │ │ │ ├── aws2-s3.json │ │ │ │ ├── aws2-ses.json │ │ │ │ ├── aws2-sns.json │ │ │ │ ├── aws2-sqs.json │ │ │ │ ├── aws2-step-functions.json │ │ │ │ ├── aws2-sts.json │ │ │ │ ├── aws2-textract.json │ │ │ │ ├── aws2-timestream.json │ │ │ │ ├── aws2-transcribe.json │ │ │ │ ├── aws2-translate.json │ │ │ │ ├── azure-cosmosdb.json │ │ │ │ ├── azure-eventgrid.json │ │ │ │ ├── azure-eventhubs.json │ │ │ │ ├── azure-files.json │ │ │ │ ├── azure-functions.json │ │ │ │ ├── azure-key-vault.json │ │ │ │ ├── azure-servicebus.json │ │ │ │ ├── azure-storage-blob.json │ │ │ │ ├── azure-storage-datalake.json │ │ │ │ ├── azure-storage-queue.json │ │ │ │ ├── bean-validator.json │ │ │ │ ├── bean.json │ │ │ │ ├── bonita.json │ │ │ │ ├── box.json │ │ │ │ ├── braintree.json │ │ │ │ ├── browse.json │ │ │ │ ├── caffeine-cache.json │ │ │ │ ├── caffeine-loadcache.json │ │ │ │ ├── chatscript.json │ │ │ │ ├── chunk.json │ │ │ │ ├── class.json │ │ │ │ ├── clickup.json │ │ │ │ ├── cm-sms.json │ │ │ │ ├── coap+tcp.json │ │ │ │ ├── coap.json │ │ │ │ ├── coaps+tcp.json │ │ │ │ ├── coaps.json │ │ │ │ ├── cometd.json │ │ │ │ ├── cometds.json │ │ │ │ ├── consul.json │ │ │ │ ├── controlbus.json │ │ │ │ ├── couchbase.json │ │ │ │ ├── couchdb.json │ │ │ │ ├── cql.json │ │ │ │ ├── cron.json │ │ │ │ ├── crypto.json │ │ │ │ ├── cxf.json │ │ │ │ ├── cxfrs.json │ │ │ │ ├── cyberark-vault.json │ │ │ │ ├── dapr.json │ │ │ │ ├── dataformat.json │ │ │ │ ├── dataset-test.json │ │ │ │ ├── dataset.json │ │ │ │ ├── debezium-db2.json │ │ │ │ ├── debezium-mongodb.json │ │ │ │ ├── debezium-mysql.json │ │ │ │ ├── debezium-oracle.json │ │ │ │ ├── debezium-postgres.json │ │ │ │ ├── debezium-sqlserver.json │ │ │ │ ├── dfdl.json │ │ │ │ ├── dhis2.json │ │ │ │ ├── digitalocean.json │ │ │ │ ├── direct.json │ │ │ │ ├── disruptor-vm.json │ │ │ │ ├── disruptor.json │ │ │ │ ├── djl.json │ │ │ │ ├── dns.json │ │ │ │ ├── docker.json │ │ │ │ ├── docling.json │ │ │ │ ├── drill.json │ │ │ │ ├── dropbox.json │ │ │ │ ├── dynamic-router-control.json │ │ │ │ ├── dynamic-router.json │ │ │ │ ├── ehcache.json │ │ │ │ ├── elasticsearch-rest-client.json │ │ │ │ ├── elasticsearch.json │ │ │ │ ├── etcd3.json │ │ │ │ ├── exec.json │ │ │ │ ├── fhir.json │ │ │ │ ├── file-watch.json │ │ │ │ ├── file.json │ │ │ │ ├── flatpack.json │ │ │ │ ├── flink.json │ │ │ │ ├── flowable.json │ │ │ │ ├── fop.json │ │ │ │ ├── freemarker.json │ │ │ │ ├── ftp.json │ │ │ │ ├── ftps.json │ │ │ │ ├── geocoder.json │ │ │ │ ├── git.json │ │ │ │ ├── github.json │ │ │ │ ├── github2.json │ │ │ │ ├── google-bigquery-sql.json │ │ │ │ ├── google-bigquery.json │ │ │ │ ├── google-calendar-stream.json │ │ │ │ ├── google-calendar.json │ │ │ │ ├── google-drive.json │ │ │ │ ├── google-firestore.json │ │ │ │ ├── google-functions.json │ │ │ │ ├── google-mail-stream.json │ │ │ │ ├── google-mail.json │ │ │ │ ├── google-pubsub.json │ │ │ │ ├── google-secret-manager.json │ │ │ │ ├── google-sheets-stream.json │ │ │ │ ├── google-sheets.json │ │ │ │ ├── google-speech-to-text.json │ │ │ │ ├── google-storage.json │ │ │ │ ├── google-text-to-speech.json │ │ │ │ ├── google-vertexai.json │ │ │ │ ├── google-vision.json │ │ │ │ ├── graphql.json │ │ │ │ ├── grpc.json │ │ │ │ ├── hashicorp-vault.json │ │ │ │ ├── hazelcast-atomicvalue.json │ │ │ │ ├── hazelcast-instance.json │ │ │ │ ├── hazelcast-list.json │ │ │ │ ├── hazelcast-map.json │ │ │ │ ├── hazelcast-multimap.json │ │ │ │ ├── hazelcast-pncounter.json │ │ │ │ ├── hazelcast-queue.json │ │ │ │ ├── hazelcast-replicatedmap.json │ │ │ │ ├── hazelcast-ringbuffer.json │ │ │ │ ├── hazelcast-seda.json │ │ │ │ ├── hazelcast-set.json │ │ │ │ ├── hazelcast-topic.json │ │ │ │ ├── http.json │ │ │ │ ├── https.json │ │ │ │ ├── huggingface.json │ │ │ │ ├── hwcloud-dms.json │ │ │ │ ├── hwcloud-frs.json │ │ │ │ ├── hwcloud-functiongraph.json │ │ │ │ ├── hwcloud-iam.json │ │ │ │ ├── hwcloud-imagerecognition.json │ │ │ │ ├── hwcloud-obs.json │ │ │ │ ├── hwcloud-smn.json │ │ │ │ ├── ibm-cos.json │ │ │ │ ├── ibm-secrets-manager.json │ │ │ │ ├── ibm-watson-discovery.json │ │ │ │ ├── ibm-watson-language.json │ │ │ │ ├── ibm-watson-speech-to-text.json │ │ │ │ ├── ibm-watson-text-to-speech.json │ │ │ │ ├── ibm-watsonx-ai.json │ │ │ │ ├── iec60870-client.json │ │ │ │ ├── iec60870-server.json │ │ │ │ ├── iggy.json │ │ │ │ ├── ignite-cache.json │ │ │ │ ├── ignite-compute.json │ │ │ │ ├── ignite-events.json │ │ │ │ ├── ignite-idgen.json │ │ │ │ ├── ignite-messaging.json │ │ │ │ ├── ignite-queue.json │ │ │ │ ├── ignite-set.json │ │ │ │ ├── imap.json │ │ │ │ ├── imaps.json │ │ │ │ ├── infinispan-embedded.json │ │ │ │ ├── infinispan.json │ │ │ │ ├── influxdb.json │ │ │ │ ├── influxdb2.json │ │ │ │ ├── irc.json │ │ │ │ ├── ironmq.json │ │ │ │ ├── jcache.json │ │ │ │ ├── jcr.json │ │ │ │ ├── jdbc.json │ │ │ │ ├── jetty.json │ │ │ │ ├── jgroups-raft.json │ │ │ │ ├── jgroups.json │ │ │ │ ├── jira.json │ │ │ │ ├── jms.json │ │ │ │ ├── jmx.json │ │ │ │ ├── jolt.json │ │ │ │ ├── jooq.json │ │ │ │ ├── jpa.json │ │ │ │ ├── jslt.json │ │ │ │ ├── json-patch.json │ │ │ │ ├── json-validator.json │ │ │ │ ├── jsonata.json │ │ │ │ ├── jt400.json │ │ │ │ ├── jte.json │ │ │ │ ├── kafka.json │ │ │ │ ├── kamelet.json │ │ │ │ ├── keycloak.json │ │ │ │ ├── knative.json │ │ │ │ ├── kserve.json │ │ │ │ ├── kubernetes-config-maps.json │ │ │ │ ├── kubernetes-cronjob.json │ │ │ │ ├── kubernetes-custom-resources.json │ │ │ │ ├── kubernetes-deployments.json │ │ │ │ ├── kubernetes-events.json │ │ │ │ ├── kubernetes-hpa.json │ │ │ │ ├── kubernetes-job.json │ │ │ │ ├── kubernetes-namespaces.json │ │ │ │ ├── kubernetes-nodes.json │ │ │ │ ├── kubernetes-persistent-volumes-claims.json │ │ │ │ ├── kubernetes-persistent-volumes.json │ │ │ │ ├── kubernetes-pods.json │ │ │ │ ├── kubernetes-replication-controllers.json │ │ │ │ ├── kubernetes-resources-quota.json │ │ │ │ ├── kubernetes-secrets.json │ │ │ │ ├── kubernetes-service-accounts.json │ │ │ │ ├── kubernetes-services.json │ │ │ │ ├── kudu.json │ │ │ │ ├── langchain4j-agent.json │ │ │ │ ├── langchain4j-chat.json │ │ │ │ ├── langchain4j-embeddings.json │ │ │ │ ├── langchain4j-embeddingstore.json │ │ │ │ ├── langchain4j-tools.json │ │ │ │ ├── langchain4j-web-search.json │ │ │ │ ├── language.json │ │ │ │ ├── ldap.json │ │ │ │ ├── ldif.json │ │ │ │ ├── log.json │ │ │ │ ├── lpr.json │ │ │ │ ├── lucene.json │ │ │ │ ├── lumberjack.json │ │ │ │ ├── mapstruct.json │ │ │ │ ├── master.json │ │ │ │ ├── metrics.json │ │ │ │ ├── micrometer.json │ │ │ │ ├── milo-browse.json │ │ │ │ ├── milo-client.json │ │ │ │ ├── milo-server.json │ │ │ │ ├── milvus.json │ │ │ │ ├── mina-sftp.json │ │ │ │ ├── mina.json │ │ │ │ ├── minio.json │ │ │ │ ├── mllp.json │ │ │ │ ├── mock.json │ │ │ │ ├── mongodb-gridfs.json │ │ │ │ ├── mongodb.json │ │ │ │ ├── mustache.json │ │ │ │ ├── mvel.json │ │ │ │ ├── mybatis-bean.json │ │ │ │ ├── mybatis.json │ │ │ │ ├── nats.json │ │ │ │ ├── neo4j.json │ │ │ │ ├── netty-http.json │ │ │ │ ├── netty.json │ │ │ │ ├── oaipmh.json │ │ │ │ ├── olingo2.json │ │ │ │ ├── olingo4.json │ │ │ │ ├── once.json │ │ │ │ ├── openai.json │ │ │ │ ├── opensearch.json │ │ │ │ ├── openshift-build-configs.json │ │ │ │ ├── openshift-builds.json │ │ │ │ ├── openshift-deploymentconfigs.json │ │ │ │ ├── openstack-cinder.json │ │ │ │ ├── openstack-glance.json │ │ │ │ ├── openstack-keystone.json │ │ │ │ ├── openstack-neutron.json │ │ │ │ ├── openstack-nova.json │ │ │ │ ├── openstack-swift.json │ │ │ │ ├── opentelemetry-metrics.json │ │ │ │ ├── optaplanner.json │ │ │ │ ├── paho-mqtt5.json │ │ │ │ ├── paho.json │ │ │ │ ├── pdf.json │ │ │ │ ├── pg-replication-slot.json │ │ │ │ ├── pgevent.json │ │ │ │ ├── pinecone.json │ │ │ │ ├── platform-http.json │ │ │ │ ├── plc4x.json │ │ │ │ ├── pop3.json │ │ │ │ ├── pop3s.json │ │ │ │ ├── pqc.json │ │ │ │ ├── pubnub.json │ │ │ │ ├── pulsar.json │ │ │ │ ├── qdrant.json │ │ │ │ ├── quartz.json │ │ │ │ ├── quickfix.json │ │ │ │ ├── reactive-streams.json │ │ │ │ ├── ref.json │ │ │ │ ├── rest-api.json │ │ │ │ ├── rest-openapi.json │ │ │ │ ├── rest.json │ │ │ │ ├── robotframework.json │ │ │ │ ├── rocketmq.json │ │ │ │ ├── rss.json │ │ │ │ ├── saga.json │ │ │ │ ├── salesforce.json │ │ │ │ ├── sap-netweaver.json │ │ │ │ ├── scheduler.json │ │ │ │ ├── schematron.json │ │ │ │ ├── scp.json │ │ │ │ ├── seda.json │ │ │ │ ├── service.json │ │ │ │ ├── servicenow.json │ │ │ │ ├── servlet.json │ │ │ │ ├── sftp.json │ │ │ │ ├── sjms.json │ │ │ │ ├── sjms2.json │ │ │ │ ├── slack.json │ │ │ │ ├── smb.json │ │ │ │ ├── smooks.json │ │ │ │ ├── smpp.json │ │ │ │ ├── smpps.json │ │ │ │ ├── smtp.json │ │ │ │ ├── smtps.json │ │ │ │ ├── snmp.json │ │ │ │ ├── solr.json │ │ │ │ ├── solrCloud.json │ │ │ │ ├── solrs.json │ │ │ │ ├── splunk-hec.json │ │ │ │ ├── splunk.json │ │ │ │ ├── spring-ai-chat.json │ │ │ │ ├── spring-ai-embeddings.json │ │ │ │ ├── spring-ai-image.json │ │ │ │ ├── spring-ai-tools.json │ │ │ │ ├── spring-ai-vector-store.json │ │ │ │ ├── spring-batch.json │ │ │ │ ├── spring-event.json │ │ │ │ ├── spring-jdbc.json │ │ │ │ ├── spring-ldap.json │ │ │ │ ├── spring-rabbitmq.json │ │ │ │ ├── spring-redis.json │ │ │ │ ├── spring-ws.json │ │ │ │ ├── sql-stored.json │ │ │ │ ├── sql.json │ │ │ │ ├── ssh.json │ │ │ │ ├── stax.json │ │ │ │ ├── stitch.json │ │ │ │ ├── stream.json │ │ │ │ ├── string-template.json │ │ │ │ ├── stripe.json │ │ │ │ ├── stub.json │ │ │ │ ├── tahu-edge.json │ │ │ │ ├── tahu-host.json │ │ │ │ ├── telegram.json │ │ │ │ ├── tensorflow-serving.json │ │ │ │ ├── thrift.json │ │ │ │ ├── thymeleaf.json │ │ │ │ ├── tika.json │ │ │ │ ├── timer.json │ │ │ │ ├── twilio.json │ │ │ │ ├── twitter-directmessage.json │ │ │ │ ├── twitter-search.json │ │ │ │ ├── twitter-timeline.json │ │ │ │ ├── undertow.json │ │ │ │ ├── validator.json │ │ │ │ ├── velocity.json │ │ │ │ ├── vertx-http.json │ │ │ │ ├── vertx-websocket.json │ │ │ │ ├── vertx.json │ │ │ │ ├── wasm.json │ │ │ │ ├── weather.json │ │ │ │ ├── weaviate.json │ │ │ │ ├── web3j.json │ │ │ │ ├── webhook.json │ │ │ │ ├── whatsapp.json │ │ │ │ ├── wordpress.json │ │ │ │ ├── workday.json │ │ │ │ ├── xchange.json │ │ │ │ ├── xj.json │ │ │ │ ├── xmlsecurity-sign.json │ │ │ │ ├── xmlsecurity-verify.json │ │ │ │ ├── xmpp.json │ │ │ │ ├── xquery.json │ │ │ │ ├── xslt-saxon.json │ │ │ │ ├── xslt.json │ │ │ │ ├── zeebe.json │ │ │ │ ├── zendesk.json │ │ │ │ ├── zookeeper-master.json │ │ │ │ └── zookeeper.json │ │ │ ├── components.properties │ │ │ ├── dataformats/ │ │ │ │ ├── asn1.json │ │ │ │ ├── avro.json │ │ │ │ ├── avroJackson.json │ │ │ │ ├── barcode.json │ │ │ │ ├── base64.json │ │ │ │ ├── beanio.json │ │ │ │ ├── bindyCsv.json │ │ │ │ ├── bindyFixed.json │ │ │ │ ├── bindyKvp.json │ │ │ │ ├── cbor.json │ │ │ │ ├── crypto.json │ │ │ │ ├── csv.json │ │ │ │ ├── dfdl.json │ │ │ │ ├── fastjson.json │ │ │ │ ├── fhirJson.json │ │ │ │ ├── fhirXml.json │ │ │ │ ├── flatpack.json │ │ │ │ ├── fory.json │ │ │ │ ├── grok.json │ │ │ │ ├── groovyJson.json │ │ │ │ ├── groovyXml.json │ │ │ │ ├── gson.json │ │ │ │ ├── gzipDeflater.json │ │ │ │ ├── hl7.json │ │ │ │ ├── ical.json │ │ │ │ ├── iso8583.json │ │ │ │ ├── jackson.json │ │ │ │ ├── jacksonXml.json │ │ │ │ ├── jaxb.json │ │ │ │ ├── jsonApi.json │ │ │ │ ├── jsonb.json │ │ │ │ ├── lzf.json │ │ │ │ ├── mimeMultipart.json │ │ │ │ ├── ocsf.json │ │ │ │ ├── parquetAvro.json │ │ │ │ ├── pgp.json │ │ │ │ ├── pqc.json │ │ │ │ ├── protobuf.json │ │ │ │ ├── protobufJackson.json │ │ │ │ ├── rss.json │ │ │ │ ├── smooks.json │ │ │ │ ├── snakeYaml.json │ │ │ │ ├── soap.json │ │ │ │ ├── swiftMt.json │ │ │ │ ├── swiftMx.json │ │ │ │ ├── syslog.json │ │ │ │ ├── tarFile.json │ │ │ │ ├── thrift.json │ │ │ │ ├── univocityCsv.json │ │ │ │ ├── univocityFixed.json │ │ │ │ ├── univocityTsv.json │ │ │ │ ├── xmlSecurity.json │ │ │ │ ├── zipDeflater.json │ │ │ │ └── zipFile.json │ │ │ ├── dataformats.properties │ │ │ ├── dev-consoles/ │ │ │ │ ├── aws-secrets.json │ │ │ │ ├── aws2-s3.json │ │ │ │ ├── azure-secrets.json │ │ │ │ ├── bean.json │ │ │ │ ├── blocked.json │ │ │ │ ├── browse.json │ │ │ │ ├── circuit-breaker.json │ │ │ │ ├── consumer.json │ │ │ │ ├── context.json │ │ │ │ ├── debug.json │ │ │ │ ├── endpoint.json │ │ │ │ ├── errors.json │ │ │ │ ├── eval-language.json │ │ │ │ ├── event.json │ │ │ │ ├── gc.json │ │ │ │ ├── gcp-secrets.json │ │ │ │ ├── groovy.json │ │ │ │ ├── hashicorp-secrets.json │ │ │ │ ├── health.json │ │ │ │ ├── inflight.json │ │ │ │ ├── internal-tasks.json │ │ │ │ ├── java-security.json │ │ │ │ ├── jvm.json │ │ │ │ ├── kafka.json │ │ │ │ ├── kubernetes-configmaps.json │ │ │ │ ├── kubernetes-secrets.json │ │ │ │ ├── log.json │ │ │ │ ├── memory.json │ │ │ │ ├── message-history.json │ │ │ │ ├── micrometer.json │ │ │ │ ├── platform-http.json │ │ │ │ ├── processor.json │ │ │ │ ├── producer.json │ │ │ │ ├── properties.json │ │ │ │ ├── quartz.json │ │ │ │ ├── receive.json │ │ │ │ ├── reload.json │ │ │ │ ├── resilience4j.json │ │ │ │ ├── rest.json │ │ │ │ ├── route-controller.json │ │ │ │ ├── route-dump.json │ │ │ │ ├── route-group.json │ │ │ │ ├── route-structure.json │ │ │ │ ├── route.json │ │ │ │ ├── send.json │ │ │ │ ├── service.json │ │ │ │ ├── sftp.json │ │ │ │ ├── simple-language.json │ │ │ │ ├── source.json │ │ │ │ ├── startup-recorder.json │ │ │ │ ├── stub.json │ │ │ │ ├── system-properties.json │ │ │ │ ├── thread.json │ │ │ │ ├── top.json │ │ │ │ ├── trace.json │ │ │ │ ├── transformers.json │ │ │ │ ├── type-converters.json │ │ │ │ ├── variables.json │ │ │ │ └── vertx-websocket.json │ │ │ ├── dev-consoles.properties │ │ │ ├── languages/ │ │ │ │ ├── bean.json │ │ │ │ ├── constant.json │ │ │ │ ├── csimple.json │ │ │ │ ├── datasonnet.json │ │ │ │ ├── exchangeProperty.json │ │ │ │ ├── file.json │ │ │ │ ├── groovy.json │ │ │ │ ├── header.json │ │ │ │ ├── hl7terser.json │ │ │ │ ├── java.json │ │ │ │ ├── joor.json │ │ │ │ ├── jq.json │ │ │ │ ├── js.json │ │ │ │ ├── jsonpath.json │ │ │ │ ├── mvel.json │ │ │ │ ├── ognl.json │ │ │ │ ├── python.json │ │ │ │ ├── ref.json │ │ │ │ ├── simple.json │ │ │ │ ├── spel.json │ │ │ │ ├── tokenize.json │ │ │ │ ├── variable.json │ │ │ │ ├── wasm.json │ │ │ │ ├── xpath.json │ │ │ │ ├── xquery.json │ │ │ │ └── xtokenize.json │ │ │ ├── languages.properties │ │ │ ├── others/ │ │ │ │ ├── cli-connector.json │ │ │ │ ├── cli-debug.json │ │ │ │ ├── cloudevents.json │ │ │ │ ├── componentdsl.json │ │ │ │ ├── console.json │ │ │ │ ├── core-engine.json │ │ │ │ ├── csimple-joor.json │ │ │ │ ├── cxf-transport.json │ │ │ │ ├── debug.json │ │ │ │ ├── dsl-modeline.json │ │ │ │ ├── endpointdsl.json │ │ │ │ ├── github2.json │ │ │ │ ├── jandex.json │ │ │ │ ├── jasypt.json │ │ │ │ ├── java-joor-dsl.json │ │ │ │ ├── jfr.json │ │ │ │ ├── jsoup.json │ │ │ │ ├── keycloak.json │ │ │ │ ├── langchain4j-tokenizer.json │ │ │ │ ├── leveldb.json │ │ │ │ ├── lra.json │ │ │ │ ├── mail-microsoft-oauth.json │ │ │ │ ├── management.json │ │ │ │ ├── mdc.json │ │ │ │ ├── micrometer-observability.json │ │ │ │ ├── observability-services.json │ │ │ │ ├── observation.json │ │ │ │ ├── openapi-java.json │ │ │ │ ├── openapi-validator.json │ │ │ │ ├── opentelemetry.json │ │ │ │ ├── opentelemetry2.json │ │ │ │ ├── reactor.json │ │ │ │ ├── resilience4j-micrometer.json │ │ │ │ ├── resilience4j.json │ │ │ │ ├── rxjava.json │ │ │ │ ├── shiro.json │ │ │ │ ├── spring-cloud-config.json │ │ │ │ ├── spring-security.json │ │ │ │ ├── telemetry-dev.json │ │ │ │ ├── undertow-spring-security.json │ │ │ │ ├── xml-io-dsl.json │ │ │ │ ├── xml-jaxb-dsl.json │ │ │ │ ├── xml-jaxb.json │ │ │ │ ├── xml-jaxp.json │ │ │ │ ├── yaml-dsl.json │ │ │ │ └── yaml-io.json │ │ │ ├── others.properties │ │ │ ├── transformers/ │ │ │ │ ├── application-cloudevents+json.json │ │ │ │ ├── application-json.json │ │ │ │ ├── application-x-java-object.json │ │ │ │ ├── application-x-struct.json │ │ │ │ ├── avro-binary.json │ │ │ │ ├── avro-x-java-object.json │ │ │ │ ├── avro-x-struct.json │ │ │ │ ├── aws-cloudtrail-application-cloudevents.json │ │ │ │ ├── aws2-ddb-application-json.json │ │ │ │ ├── aws2-ddb-application-x-struct.json │ │ │ │ ├── aws2-ddbstream-application-cloudevents.json │ │ │ │ ├── aws2-kinesis-application-cloudevents.json │ │ │ │ ├── aws2-s3-application-cloudevents.json │ │ │ │ ├── aws2-sqs-application-cloudevents.json │ │ │ │ ├── azure-cosmosdb-application-cloudevents.json │ │ │ │ ├── azure-eventhubs-application-cloudevents.json │ │ │ │ ├── azure-files-application-cloudevents.json │ │ │ │ ├── azure-servicebus-application-cloudevents.json │ │ │ │ ├── azure-storage-blob-application-cloudevents.json │ │ │ │ ├── azure-storage-datalake-application-cloudevents.json │ │ │ │ ├── azure-storage-queue-application-cloudevents.json │ │ │ │ ├── google-calendar-stream-application-cloudevents.json │ │ │ │ ├── google-mail-draft.json │ │ │ │ ├── google-mail-stream-application-cloudevents.json │ │ │ │ ├── google-mail-update-message-labels.json │ │ │ │ ├── google-pubsub-application-cloudevents.json │ │ │ │ ├── google-sheets-application-x-struct.json │ │ │ │ ├── google-sheets-stream-application-cloudevents.json │ │ │ │ ├── google-storage-application-cloudevents.json │ │ │ │ ├── http-application-cloudevents.json │ │ │ │ ├── infinispan-embeddings.json │ │ │ │ ├── milvus-embeddings.json │ │ │ │ ├── neo4j-embeddings.json │ │ │ │ ├── neo4j-rag.json │ │ │ │ ├── pinecone-embeddings.json │ │ │ │ ├── pinecone-rag.json │ │ │ │ ├── protobuf-binary.json │ │ │ │ ├── protobuf-x-java-object.json │ │ │ │ ├── protobuf-x-struct.json │ │ │ │ ├── qdrant-embeddings.json │ │ │ │ ├── qdrant-rag.json │ │ │ │ ├── slack-application-cloudevents.json │ │ │ │ └── weaviate-embeddings.json │ │ │ └── transformers.properties │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── springboot/ │ │ └── catalog/ │ │ └── SpringBootRuntimeProviderTest.java │ └── pom.xml ├── components-starter/ │ ├── ac-mappings.yml │ ├── antora.yml │ ├── camel-activemq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── activemq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── activemq/ │ │ │ └── springboot/ │ │ │ ├── ActiveMQComponentAutoConfiguration.java │ │ │ ├── ActiveMQComponentConfiguration.java │ │ │ └── ActiveMQComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-activemq6-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── activemq6.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── activemq6/ │ │ │ └── springboot/ │ │ │ ├── ActiveMQComponentAutoConfiguration.java │ │ │ ├── ActiveMQComponentConfiguration.java │ │ │ └── ActiveMQComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-amqp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── amqp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── amqp/ │ │ │ └── springboot/ │ │ │ ├── AMQPComponentAutoConfiguration.java │ │ │ ├── AMQPComponentConfiguration.java │ │ │ └── AMQPComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-arangodb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── arangodb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── arangodb/ │ │ │ └── springboot/ │ │ │ ├── ArangoDbComponentAutoConfiguration.java │ │ │ ├── ArangoDbComponentConfiguration.java │ │ │ └── ArangoDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-as2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── as2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── as2/ │ │ │ └── springboot/ │ │ │ ├── AS2ComponentAutoConfiguration.java │ │ │ ├── AS2ComponentConfiguration.java │ │ │ └── AS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-asn1-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── asn1.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── asn1/ │ │ │ └── springboot/ │ │ │ ├── ASN1DataFormatAutoConfiguration.java │ │ │ └── ASN1DataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-asterisk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── asterisk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── asterisk/ │ │ │ └── springboot/ │ │ │ ├── AsteriskComponentAutoConfiguration.java │ │ │ └── AsteriskComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-atmosphere-websocket-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── atmosphere-websocket.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── atmosphere/ │ │ │ └── websocket/ │ │ │ └── springboot/ │ │ │ ├── WebsocketComponentAutoConfiguration.java │ │ │ ├── WebsocketComponentConfiguration.java │ │ │ └── WebsocketComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-atom-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── atom.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── atom/ │ │ │ └── springboot/ │ │ │ ├── AtomComponentAutoConfiguration.java │ │ │ └── AtomComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-avro-rpc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── avro-rpc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ ├── AvroComponentAutoConfiguration.java │ │ │ ├── AvroComponentConfiguration.java │ │ │ └── AvroComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-avro-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── avro.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── dataformat/ │ │ │ │ └── avro/ │ │ │ │ └── springboot/ │ │ │ │ ├── AvroDataFormatAutoConfiguration.java │ │ │ │ └── AvroDataFormatConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ ├── AvroGenericMarshaAndUnmarshaTest.java │ │ │ ├── AvroMarshalAndUnmarshallTest.java │ │ │ ├── AvroMarshalAndUnmarshallXmlTest.java │ │ │ └── Value.java │ │ └── resources/ │ │ ├── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ └── user.avsc │ │ └── routes/ │ │ └── springDataFormat.xml │ ├── camel-aws-bedrock-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-bedrock.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── bedrock/ │ │ │ ├── agent/ │ │ │ │ └── springboot/ │ │ │ │ ├── BedrockAgentComponentAutoConfiguration.java │ │ │ │ ├── BedrockAgentComponentConfiguration.java │ │ │ │ └── BedrockAgentComponentConverter.java │ │ │ ├── agentruntime/ │ │ │ │ └── springboot/ │ │ │ │ ├── BedrockAgentRuntimeComponentAutoConfiguration.java │ │ │ │ ├── BedrockAgentRuntimeComponentConfiguration.java │ │ │ │ └── BedrockAgentRuntimeComponentConverter.java │ │ │ └── runtime/ │ │ │ └── springboot/ │ │ │ ├── BedrockComponentAutoConfiguration.java │ │ │ ├── BedrockComponentConfiguration.java │ │ │ └── BedrockComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-cloudtrail-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-cloudtrail.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── cloudtrail/ │ │ │ └── springboot/ │ │ │ ├── CloudtrailComponentAutoConfiguration.java │ │ │ ├── CloudtrailComponentConfiguration.java │ │ │ └── CloudtrailComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-config-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-config.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── config/ │ │ │ └── springboot/ │ │ │ ├── AWSConfigComponentAutoConfiguration.java │ │ │ ├── AWSConfigComponentConfiguration.java │ │ │ └── AWSConfigComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-parameter-store-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-parameter-store.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── parameterstore/ │ │ │ └── springboot/ │ │ │ ├── ParameterStoreComponentAutoConfiguration.java │ │ │ ├── ParameterStoreComponentConfiguration.java │ │ │ └── ParameterStoreComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-secrets-manager-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws-secrets-manager.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws/ │ │ │ │ └── secretsmanager/ │ │ │ │ └── springboot/ │ │ │ │ ├── SecretsManagerComponentAutoConfiguration.java │ │ │ │ ├── SecretsManagerComponentConfiguration.java │ │ │ │ ├── SecretsManagerComponentConverter.java │ │ │ │ └── SpringBootAwsSecretsManagerPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── secretsmanager/ │ │ │ └── springboot/ │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-aws-security-hub-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-security-hub.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── securityhub/ │ │ │ └── springboot/ │ │ │ ├── SecurityHubComponentAutoConfiguration.java │ │ │ ├── SecurityHubComponentConfiguration.java │ │ │ └── SecurityHubComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-athena-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-athena.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── athena/ │ │ │ └── springboot/ │ │ │ ├── Athena2ComponentAutoConfiguration.java │ │ │ ├── Athena2ComponentConfiguration.java │ │ │ └── Athena2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-comprehend-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-comprehend.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── comprehend/ │ │ │ └── springboot/ │ │ │ ├── Comprehend2ComponentAutoConfiguration.java │ │ │ ├── Comprehend2ComponentConfiguration.java │ │ │ └── Comprehend2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-cw-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-cw.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── cw/ │ │ │ │ └── springboot/ │ │ │ │ ├── Cw2ComponentAutoConfiguration.java │ │ │ │ ├── Cw2ComponentConfiguration.java │ │ │ │ └── Cw2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── cw/ │ │ ├── BaseCw.java │ │ └── CwComponentTest.java │ ├── camel-aws2-ddb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-ddb.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ ├── ddb/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── Ddb2ComponentAutoConfiguration.java │ │ │ │ │ ├── Ddb2ComponentConfiguration.java │ │ │ │ │ └── Ddb2ComponentConverter.java │ │ │ │ └── ddbstream/ │ │ │ │ └── springboot/ │ │ │ │ ├── Ddb2StreamComponentAutoConfiguration.java │ │ │ │ ├── Ddb2StreamComponentConfiguration.java │ │ │ │ └── Ddb2StreamComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ ├── BaseDdb2.java │ │ ├── ddb/ │ │ │ ├── Ddb2BatchGetItemsTest.java │ │ │ ├── Ddb2DeleteItemTest.java │ │ │ ├── Ddb2DeleteTableTest.java │ │ │ ├── Ddb2DescribeTableRuleIT.java │ │ │ ├── Ddb2GetItemTest.java │ │ │ ├── Ddb2QueryTest.java │ │ │ ├── Ddb2ScanTest.java │ │ │ ├── Ddb2UpdateItemTest.java │ │ │ └── Ddb2UpdateTableByIdTest.java │ │ └── ddbstream/ │ │ └── Ddb2StreamTest.java │ ├── camel-aws2-ec2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-ec2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── ec2/ │ │ │ └── springboot/ │ │ │ ├── AWS2EC2ComponentAutoConfiguration.java │ │ │ ├── AWS2EC2ComponentConfiguration.java │ │ │ └── AWS2EC2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-ecs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-ecs.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── ecs/ │ │ │ └── springboot/ │ │ │ ├── ECS2ComponentAutoConfiguration.java │ │ │ ├── ECS2ComponentConfiguration.java │ │ │ └── ECS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-eks-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-eks.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── eks/ │ │ │ └── springboot/ │ │ │ ├── EKS2ComponentAutoConfiguration.java │ │ │ ├── EKS2ComponentConfiguration.java │ │ │ └── EKS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-eventbridge-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-eventbridge.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── eventbridge/ │ │ │ └── springboot/ │ │ │ ├── EventbridgeComponentAutoConfiguration.java │ │ │ ├── EventbridgeComponentConfiguration.java │ │ │ └── EventbridgeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-iam-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-iam.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── iam/ │ │ │ └── springboot/ │ │ │ ├── IAM2ComponentAutoConfiguration.java │ │ │ ├── IAM2ComponentConfiguration.java │ │ │ └── IAM2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-kinesis-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-kinesis.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ ├── firehose/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KinesisFirehose2ComponentAutoConfiguration.java │ │ │ │ │ ├── KinesisFirehose2ComponentConfiguration.java │ │ │ │ │ └── KinesisFirehose2ComponentConverter.java │ │ │ │ └── kinesis/ │ │ │ │ └── springboot/ │ │ │ │ ├── Kinesis2ComponentAutoConfiguration.java │ │ │ │ ├── Kinesis2ComponentConfiguration.java │ │ │ │ └── Kinesis2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── kinesis/ │ │ ├── BaseKinesis.java │ │ └── KinesisComponentTest.java │ ├── camel-aws2-kms-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-kms.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── kms/ │ │ │ └── springboot/ │ │ │ ├── KMS2ComponentAutoConfiguration.java │ │ │ ├── KMS2ComponentConfiguration.java │ │ │ └── KMS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-lambda-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-lambda.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── lambda/ │ │ │ └── springboot/ │ │ │ ├── Lambda2ComponentAutoConfiguration.java │ │ │ ├── Lambda2ComponentConfiguration.java │ │ │ └── Lambda2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-mq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-mq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── mq/ │ │ │ └── springboot/ │ │ │ ├── MQ2ComponentAutoConfiguration.java │ │ │ ├── MQ2ComponentConfiguration.java │ │ │ └── MQ2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-msk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-msk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── msk/ │ │ │ └── springboot/ │ │ │ ├── MSK2ComponentAutoConfiguration.java │ │ │ ├── MSK2ComponentConfiguration.java │ │ │ └── MSK2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-polly-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-polly.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── polly/ │ │ │ └── springboot/ │ │ │ ├── Polly2ComponentAutoConfiguration.java │ │ │ ├── Polly2ComponentConfiguration.java │ │ │ └── Polly2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-redshift-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-redshift.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── redshift/ │ │ │ └── data/ │ │ │ └── springboot/ │ │ │ ├── RedshiftData2ComponentAutoConfiguration.java │ │ │ ├── RedshiftData2ComponentConfiguration.java │ │ │ └── RedshiftData2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-rekognition-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-rekognition.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── rekognition/ │ │ │ └── springboot/ │ │ │ ├── Rekognition2ComponentAutoConfiguration.java │ │ │ ├── Rekognition2ComponentConfiguration.java │ │ │ └── Rekognition2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-s3-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-s3.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── s3/ │ │ │ │ └── springboot/ │ │ │ │ ├── AWS2S3ComponentAutoConfiguration.java │ │ │ │ ├── AWS2S3ComponentConfiguration.java │ │ │ │ └── AWS2S3ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── s3/ │ │ │ ├── BaseS3.java │ │ │ ├── S3BatchConsumerTest.java │ │ │ ├── S3ComponentTest.java │ │ │ ├── S3CopyObjectCustomerKeyTest.java │ │ │ ├── S3CopyObjectOperationTest.java │ │ │ ├── S3CreateDownloadLinkOperationTest.java │ │ │ ├── S3ListObjectsOperationTest.java │ │ │ ├── S3MoveAfterReadConsumerTest.java │ │ │ ├── S3MultipartUploadOperationTest.java │ │ │ ├── S3ObjectRangeOperationTest.java │ │ │ ├── S3PojoAsBodyTest.java │ │ │ ├── S3SimpleEncryptedUploadOperationTest.java │ │ │ └── S3StreamUploadOperationTest.java │ │ └── resources/ │ │ └── empty.txt │ ├── camel-aws2-s3-vectors-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-s3-vectors.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── s3vectors/ │ │ │ └── springboot/ │ │ │ ├── AWS2S3VectorsComponentAutoConfiguration.java │ │ │ ├── AWS2S3VectorsComponentConfiguration.java │ │ │ └── AWS2S3VectorsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-ses-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-ses.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── ses/ │ │ │ └── springboot/ │ │ │ ├── Ses2ComponentAutoConfiguration.java │ │ │ ├── Ses2ComponentConfiguration.java │ │ │ └── Ses2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-sns-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-sns.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── sns/ │ │ │ │ └── springboot/ │ │ │ │ ├── Sns2ComponentAutoConfiguration.java │ │ │ │ ├── Sns2ComponentConfiguration.java │ │ │ │ └── Sns2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── sns/ │ │ ├── BaseSns.java │ │ ├── EmptyTestSnsConfiguration.java │ │ ├── SnsAdvancedConfigurationTest.java │ │ ├── SnsComponentFifoTest.java │ │ ├── SnsTopicProducerCustomConfigTest.java │ │ ├── SnsTopicProducerTest.java │ │ ├── SnsTopicProducerWithSubscriptionTest.java │ │ ├── SnsTopicWithKmsEncryptionTest.java │ │ └── TestSnsConfiguration.java │ ├── camel-aws2-sqs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-sqs.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── sqs/ │ │ │ │ └── springboot/ │ │ │ │ ├── Sqs2ComponentAutoConfiguration.java │ │ │ │ ├── Sqs2ComponentConfiguration.java │ │ │ │ └── Sqs2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── sqs/ │ │ │ ├── BaseSqs.java │ │ │ ├── JmsStyleSelectorTest.java │ │ │ ├── SqsComponentTest.java │ │ │ ├── SqsDeadletterTest.java │ │ │ ├── SqsDelayedQueueTest.java │ │ │ ├── SqsOperationsTest.java │ │ │ └── SqsProducerAutoCreateQueueTest.java │ │ └── resources/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── sqs/ │ │ └── policy.txt │ ├── camel-aws2-step-functions-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-step-functions.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── stepfunctions/ │ │ │ └── springboot/ │ │ │ ├── StepFunctions2ComponentAutoConfiguration.java │ │ │ ├── StepFunctions2ComponentConfiguration.java │ │ │ └── StepFunctions2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-sts-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-sts.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── sts/ │ │ │ └── springboot/ │ │ │ ├── STS2ComponentAutoConfiguration.java │ │ │ ├── STS2ComponentConfiguration.java │ │ │ └── STS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-textract-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-textract.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── textract/ │ │ │ └── springboot/ │ │ │ ├── Textract2ComponentAutoConfiguration.java │ │ │ ├── Textract2ComponentConfiguration.java │ │ │ └── Textract2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-timestream-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-timestream.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── timestream/ │ │ │ └── springboot/ │ │ │ ├── Timestream2ComponentAutoConfiguration.java │ │ │ ├── Timestream2ComponentConfiguration.java │ │ │ └── Timestream2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-transcribe-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-transcribe.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── transcribe/ │ │ │ └── springboot/ │ │ │ ├── Transcribe2ComponentAutoConfiguration.java │ │ │ ├── Transcribe2ComponentConfiguration.java │ │ │ └── Transcribe2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-translate-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-translate.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── translate/ │ │ │ └── springboot/ │ │ │ ├── Translate2ComponentAutoConfiguration.java │ │ │ ├── Translate2ComponentConfiguration.java │ │ │ └── Translate2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-cosmosdb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-cosmosdb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── cosmosdb/ │ │ │ └── springboot/ │ │ │ ├── CosmosDbComponentAutoConfiguration.java │ │ │ ├── CosmosDbComponentConfiguration.java │ │ │ └── CosmosDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-eventgrid-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-eventgrid.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── eventgrid/ │ │ │ └── springboot/ │ │ │ ├── EventGridComponentAutoConfiguration.java │ │ │ ├── EventGridComponentConfiguration.java │ │ │ └── EventGridComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-eventhubs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-eventhubs.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── eventhubs/ │ │ │ └── springboot/ │ │ │ ├── EventHubsComponentAutoConfiguration.java │ │ │ ├── EventHubsComponentConfiguration.java │ │ │ └── EventHubsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-files-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-files.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── azure/ │ │ │ └── springboot/ │ │ │ ├── FilesComponentAutoConfiguration.java │ │ │ └── FilesComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-functions-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-functions.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── functions/ │ │ │ └── springboot/ │ │ │ ├── FunctionsComponentAutoConfiguration.java │ │ │ ├── FunctionsComponentConfiguration.java │ │ │ └── FunctionsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-key-vault-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── azure-key-vault.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── azure/ │ │ │ │ └── key/ │ │ │ │ └── vault/ │ │ │ │ └── springboot/ │ │ │ │ ├── KeyVaultComponentAutoConfiguration.java │ │ │ │ ├── KeyVaultComponentConfiguration.java │ │ │ │ └── SpringBootAzureKeyVaultPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── key/ │ │ │ └── vault/ │ │ │ └── springboot/ │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-azure-servicebus-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-servicebus.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── servicebus/ │ │ │ └── springboot/ │ │ │ ├── ServiceBusComponentAutoConfiguration.java │ │ │ ├── ServiceBusComponentConfiguration.java │ │ │ └── ServiceBusComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-storage-blob-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-storage-blob.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── storage/ │ │ │ └── blob/ │ │ │ └── springboot/ │ │ │ ├── BlobComponentAutoConfiguration.java │ │ │ ├── BlobComponentConfiguration.java │ │ │ └── BlobComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-storage-datalake-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-storage-datalake.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── storage/ │ │ │ └── datalake/ │ │ │ └── springboot/ │ │ │ ├── DataLakeComponentAutoConfiguration.java │ │ │ ├── DataLakeComponentConfiguration.java │ │ │ └── DataLakeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-storage-queue-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-storage-queue.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── storage/ │ │ │ └── queue/ │ │ │ └── springboot/ │ │ │ ├── QueueComponentAutoConfiguration.java │ │ │ ├── QueueComponentConfiguration.java │ │ │ └── QueueComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-barcode-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── barcode.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── barcode/ │ │ │ └── springboot/ │ │ │ ├── BarcodeDataFormatAutoConfiguration.java │ │ │ └── BarcodeDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-base64-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── base64.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── base64/ │ │ │ └── springboot/ │ │ │ ├── Base64DataFormatAutoConfiguration.java │ │ │ └── Base64DataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bean-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bean.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ ├── bean/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── BeanComponentAutoConfiguration.java │ │ │ │ │ ├── BeanComponentConfiguration.java │ │ │ │ │ └── BeanComponentConverter.java │ │ │ │ └── beanclass/ │ │ │ │ └── springboot/ │ │ │ │ ├── ClassComponentAutoConfiguration.java │ │ │ │ ├── ClassComponentConfiguration.java │ │ │ │ └── ClassComponentConverter.java │ │ │ └── language/ │ │ │ └── bean/ │ │ │ └── springboot/ │ │ │ ├── BeanLanguageAutoConfiguration.java │ │ │ └── BeanLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bean-validator-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bean-validator.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── bean/ │ │ │ └── validator/ │ │ │ └── springboot/ │ │ │ ├── BeanValidatorComponentAutoConfiguration.java │ │ │ ├── BeanValidatorComponentConfiguration.java │ │ │ └── BeanValidatorComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-beanio-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── beanio.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── beanio/ │ │ │ └── springboot/ │ │ │ ├── BeanIODataFormatAutoConfiguration.java │ │ │ └── BeanIODataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bindy-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bindy.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── bindy/ │ │ │ ├── csv/ │ │ │ │ └── springboot/ │ │ │ │ ├── BindyCsvDataFormatAutoConfiguration.java │ │ │ │ └── BindyCsvDataFormatConfiguration.java │ │ │ ├── fixed/ │ │ │ │ └── springboot/ │ │ │ │ ├── BindyFixedLengthDataFormatAutoConfiguration.java │ │ │ │ └── BindyFixedLengthDataFormatConfiguration.java │ │ │ └── kvp/ │ │ │ └── springboot/ │ │ │ ├── BindyKeyValuePairDataFormatAutoConfiguration.java │ │ │ └── BindyKeyValuePairDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bonita-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bonita.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── bonita/ │ │ │ └── springboot/ │ │ │ ├── BonitaComponentAutoConfiguration.java │ │ │ └── BonitaComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-box-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── box.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── box/ │ │ │ └── springboot/ │ │ │ ├── BoxComponentAutoConfiguration.java │ │ │ ├── BoxComponentConfiguration.java │ │ │ └── BoxComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-braintree-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── braintree.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── braintree/ │ │ │ └── springboot/ │ │ │ ├── BraintreeComponentAutoConfiguration.java │ │ │ ├── BraintreeComponentConfiguration.java │ │ │ └── BraintreeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-browse-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── browse.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── browse/ │ │ │ └── springboot/ │ │ │ ├── BrowseComponentAutoConfiguration.java │ │ │ └── BrowseComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-caffeine-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── caffeine.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── caffeine/ │ │ │ ├── cache/ │ │ │ │ └── springboot/ │ │ │ │ ├── CaffeineCacheComponentAutoConfiguration.java │ │ │ │ ├── CaffeineCacheComponentConfiguration.java │ │ │ │ └── CaffeineCacheComponentConverter.java │ │ │ └── load/ │ │ │ └── springboot/ │ │ │ ├── CaffeineLoadCacheComponentAutoConfiguration.java │ │ │ ├── CaffeineLoadCacheComponentConfiguration.java │ │ │ └── CaffeineLoadCacheComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cassandraql-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── cassandraql.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── cassandra/ │ │ │ │ └── springboot/ │ │ │ │ ├── CassandraComponentAutoConfiguration.java │ │ │ │ └── CassandraComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── cassandra/ │ │ │ │ ├── MockLoadBalancingPolicy.java │ │ │ │ ├── integration/ │ │ │ │ │ ├── CassandraComponentBeanRefIT.java │ │ │ │ │ ├── CassandraComponentConsumerIT.java │ │ │ │ │ ├── CassandraComponentProducerIT.java │ │ │ │ │ └── CassandraComponentProducerUnpreparedIT.java │ │ │ │ └── springboot/ │ │ │ │ └── BaseCassandra.java │ │ │ └── processor/ │ │ │ ├── aggregate/ │ │ │ │ ├── cassandra/ │ │ │ │ │ ├── CassandraAggregationIT.java │ │ │ │ │ ├── CassandraAggregationRepositoryIT.java │ │ │ │ │ ├── CassandraAggregationSerializedHeadersIT.java │ │ │ │ │ └── NamedCassandraAggregationRepositoryIT.java │ │ │ │ └── util/ │ │ │ │ └── HeaderDto.java │ │ │ └── idempotent/ │ │ │ └── cassandra/ │ │ │ ├── CassandraIdempotentIT.java │ │ │ ├── CassandraIdempotentRepositoryIT.java │ │ │ └── NamedCassandraIdempotentRepositoryIT.java │ │ └── resources/ │ │ ├── BasicDataSet.cql │ │ ├── IdempotentDataSet.cql │ │ ├── NamedIdempotentDataSet.cql │ │ └── initScript.cql │ ├── camel-cbor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cbor.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cbor/ │ │ │ └── springboot/ │ │ │ ├── CBORDataFormatAutoConfiguration.java │ │ │ └── CBORDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-chatscript-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── chatscript.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── chatscript/ │ │ │ └── springboot/ │ │ │ ├── ChatScriptComponentAutoConfiguration.java │ │ │ └── ChatScriptComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-chunk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── chunk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── chunk/ │ │ │ └── springboot/ │ │ │ ├── ChunkComponentAutoConfiguration.java │ │ │ └── ChunkComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-clickup-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── clickup.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── clickup/ │ │ │ └── springboot/ │ │ │ ├── ClickUpComponentAutoConfiguration.java │ │ │ └── ClickUpComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cloudevents-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-cm-sms-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cm-sms.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cm/ │ │ │ └── springboot/ │ │ │ ├── CMComponentAutoConfiguration.java │ │ │ └── CMComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-coap-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── coap.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── coap/ │ │ │ └── springboot/ │ │ │ ├── CoAPComponentAutoConfiguration.java │ │ │ ├── CoAPComponentConfiguration.java │ │ │ └── CoAPComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cometd-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cometd.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cometd/ │ │ │ └── springboot/ │ │ │ ├── CometdComponentAutoConfiguration.java │ │ │ ├── CometdComponentConfiguration.java │ │ │ └── CometdComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-console-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-consul-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── consul-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── consul/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── ConsulClusterServiceAutoConfiguration.java │ │ │ │ └── ConsulClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── consul/ │ │ │ └── springboot/ │ │ │ └── cluster/ │ │ │ └── ConsulClusterServiceAutoConfigurationTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-consul-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── consul.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── consul/ │ │ │ └── springboot/ │ │ │ ├── ConsulComponentAutoConfiguration.java │ │ │ ├── ConsulComponentConfiguration.java │ │ │ └── ConsulComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-controlbus-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── controlbus.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── controlbus/ │ │ │ └── springboot/ │ │ │ ├── ControlBusComponentAutoConfiguration.java │ │ │ └── ControlBusComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-core-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── core.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── language/ │ │ │ │ ├── constant/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── ConstantLanguageAutoConfiguration.java │ │ │ │ │ └── ConstantLanguageConfiguration.java │ │ │ │ ├── csimple/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── CSimpleLanguageAutoConfiguration.java │ │ │ │ │ └── CSimpleLanguageConfiguration.java │ │ │ │ ├── header/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── HeaderLanguageAutoConfiguration.java │ │ │ │ │ └── HeaderLanguageConfiguration.java │ │ │ │ ├── property/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── ExchangePropertyLanguageAutoConfiguration.java │ │ │ │ │ └── ExchangePropertyLanguageConfiguration.java │ │ │ │ ├── ref/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── RefLanguageAutoConfiguration.java │ │ │ │ │ └── RefLanguageConfiguration.java │ │ │ │ ├── simple/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── FileLanguageAutoConfiguration.java │ │ │ │ │ ├── FileLanguageConfiguration.java │ │ │ │ │ ├── SimpleLanguageAutoConfiguration.java │ │ │ │ │ └── SimpleLanguageConfiguration.java │ │ │ │ ├── tokenizer/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── TokenizeLanguageAutoConfiguration.java │ │ │ │ │ └── TokenizeLanguageConfiguration.java │ │ │ │ └── variable/ │ │ │ │ └── springboot/ │ │ │ │ ├── VariableLanguageAutoConfiguration.java │ │ │ │ └── VariableLanguageConfiguration.java │ │ │ └── model/ │ │ │ ├── cloud/ │ │ │ │ └── springboot/ │ │ │ │ ├── ConsulServiceCallServiceDiscoveryConfigurationCommon.java │ │ │ │ ├── ConsulServiceCallServiceDiscoveryConfigurationProperties.java │ │ │ │ ├── DnsServiceCallServiceDiscoveryConfigurationCommon.java │ │ │ │ ├── DnsServiceCallServiceDiscoveryConfigurationProperties.java │ │ │ │ ├── KubernetesServiceCallServiceDiscoveryConfigurationCommon.java │ │ │ │ └── KubernetesServiceCallServiceDiscoveryConfigurationProperties.java │ │ │ ├── rest/ │ │ │ │ └── springboot/ │ │ │ │ ├── RestConfigurationDefinitionAutoConfiguration.java │ │ │ │ └── RestConfigurationDefinitionProperties.java │ │ │ └── springboot/ │ │ │ ├── Resilience4jConfigurationDefinitionCommon.java │ │ │ └── Resilience4jConfigurationDefinitionProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-couchbase-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── couchbase.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── couchbase/ │ │ │ └── springboot/ │ │ │ ├── CouchbaseComponentAutoConfiguration.java │ │ │ └── CouchbaseComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-couchdb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── couchdb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── couchdb/ │ │ │ └── springboot/ │ │ │ ├── CouchDbComponentAutoConfiguration.java │ │ │ └── CouchDbComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cron-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── cron.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── cron/ │ │ │ │ └── springboot/ │ │ │ │ ├── CronComponentAutoConfiguration.java │ │ │ │ └── CronComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── cron/ │ │ └── springboot/ │ │ ├── CronLoaderTest.java │ │ └── DummyCamelCronService.java │ ├── camel-crypto-pgp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── crypto-pgp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── converter/ │ │ │ └── crypto/ │ │ │ └── springboot/ │ │ │ ├── PGPDataFormatAutoConfiguration.java │ │ │ └── PGPDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-crypto-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── crypto.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── crypto/ │ │ │ │ └── springboot/ │ │ │ │ ├── DigitalSignatureComponentAutoConfiguration.java │ │ │ │ ├── DigitalSignatureComponentConfiguration.java │ │ │ │ └── DigitalSignatureComponentConverter.java │ │ │ └── converter/ │ │ │ └── crypto/ │ │ │ └── springboot/ │ │ │ ├── CryptoDataFormatAutoConfiguration.java │ │ │ ├── CryptoDataFormatConfiguration.java │ │ │ └── CryptoDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-csimple-joor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── csimple-joor.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-csv-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── csv.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── csv/ │ │ │ └── springboot/ │ │ │ ├── CsvDataFormatAutoConfiguration.java │ │ │ └── CsvDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cxf-rest-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cxf-rest.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cxf/ │ │ │ └── jaxrs/ │ │ │ └── springboot/ │ │ │ ├── CxfRsComponentAutoConfiguration.java │ │ │ ├── CxfRsComponentConfiguration.java │ │ │ └── CxfRsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cxf-soap-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cxf-soap.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cxf/ │ │ │ └── jaxws/ │ │ │ └── springboot/ │ │ │ ├── CxfComponentAutoConfiguration.java │ │ │ ├── CxfComponentConfiguration.java │ │ │ └── CxfComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cxf-transport-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cxf-transport.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-cyberark-vault-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── cyberark-vault.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── cyberark/ │ │ │ │ └── vault/ │ │ │ │ └── springboot/ │ │ │ │ ├── CyberArkVaultComponentAutoConfiguration.java │ │ │ │ ├── CyberArkVaultComponentConfiguration.java │ │ │ │ ├── CyberArkVaultComponentConverter.java │ │ │ │ └── SpringBootCyberArkVaultPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── cyberark/ │ │ └── vault/ │ │ └── springboot/ │ │ └── EarlyResolvedPropertiesTest.java │ ├── camel-dapr-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dapr.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dapr/ │ │ │ └── springboot/ │ │ │ ├── DaprComponentAutoConfiguration.java │ │ │ ├── DaprComponentConfiguration.java │ │ │ └── DaprComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dataformat-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dataformat.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dataformat/ │ │ │ └── springboot/ │ │ │ ├── DataFormatComponentAutoConfiguration.java │ │ │ └── DataFormatComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dataset-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dataset.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dataset/ │ │ │ └── springboot/ │ │ │ ├── DataSetComponentAutoConfiguration.java │ │ │ ├── DataSetComponentConfiguration.java │ │ │ ├── DataSetComponentConverter.java │ │ │ ├── DataSetTestComponentAutoConfiguration.java │ │ │ ├── DataSetTestComponentConfiguration.java │ │ │ └── DataSetTestComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-datasonnet-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── datasonnet.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── datasonnet/ │ │ │ └── springboot/ │ │ │ ├── DatasonnetLanguageAutoConfiguration.java │ │ │ └── DatasonnetLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-db2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-db2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── db2/ │ │ │ └── springboot/ │ │ │ ├── DebeziumDb2ComponentAutoConfiguration.java │ │ │ ├── DebeziumDb2ComponentConfiguration.java │ │ │ └── DebeziumDb2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-mongodb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-mongodb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── mongodb/ │ │ │ └── springboot/ │ │ │ ├── DebeziumMongodbComponentAutoConfiguration.java │ │ │ ├── DebeziumMongodbComponentConfiguration.java │ │ │ └── DebeziumMongodbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-mysql-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-mysql.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── mysql/ │ │ │ └── springboot/ │ │ │ ├── DebeziumMySqlComponentAutoConfiguration.java │ │ │ ├── DebeziumMySqlComponentConfiguration.java │ │ │ └── DebeziumMySqlComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-oracle-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-oracle.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── oracle/ │ │ │ └── springboot/ │ │ │ ├── DebeziumOracleComponentAutoConfiguration.java │ │ │ ├── DebeziumOracleComponentConfiguration.java │ │ │ └── DebeziumOracleComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-postgres-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-postgres.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── postgres/ │ │ │ └── springboot/ │ │ │ ├── DebeziumPostgresComponentAutoConfiguration.java │ │ │ ├── DebeziumPostgresComponentConfiguration.java │ │ │ └── DebeziumPostgresComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-sqlserver-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-sqlserver.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── sqlserver/ │ │ │ └── springboot/ │ │ │ ├── DebeziumSqlserverComponentAutoConfiguration.java │ │ │ ├── DebeziumSqlserverComponentConfiguration.java │ │ │ └── DebeziumSqlserverComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debug-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debug.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── spring/ │ │ │ └── boot/ │ │ │ └── debug/ │ │ │ ├── CamelDebugAutoConfiguration.java │ │ │ └── CamelDebugConfigurationProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dfdl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dfdl.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── dfdl/ │ │ │ │ └── springboot/ │ │ │ │ ├── DfdlComponentAutoConfiguration.java │ │ │ │ └── DfdlComponentConfiguration.java │ │ │ └── dataformat/ │ │ │ └── dfdl/ │ │ │ └── springboot/ │ │ │ ├── DfdlDataFormatAutoConfiguration.java │ │ │ └── DfdlDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dhis2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dhis2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dhis2/ │ │ │ └── springboot/ │ │ │ ├── Dhis2ComponentAutoConfiguration.java │ │ │ ├── Dhis2ComponentConfiguration.java │ │ │ └── Dhis2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-digitalocean-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── digitalocean.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── digitalocean/ │ │ │ └── springboot/ │ │ │ ├── DigitalOceanComponentAutoConfiguration.java │ │ │ └── DigitalOceanComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-direct-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── direct.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── direct/ │ │ │ └── springboot/ │ │ │ ├── DirectComponentAutoConfiguration.java │ │ │ └── DirectComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-disruptor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── disruptor.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── disruptor/ │ │ │ ├── springboot/ │ │ │ │ ├── DisruptorComponentAutoConfiguration.java │ │ │ │ ├── DisruptorComponentConfiguration.java │ │ │ │ └── DisruptorComponentConverter.java │ │ │ └── vm/ │ │ │ └── springboot/ │ │ │ ├── DisruptorVmComponentAutoConfiguration.java │ │ │ ├── DisruptorVmComponentConfiguration.java │ │ │ └── DisruptorVmComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-djl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── djl.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── djl/ │ │ │ └── springboot/ │ │ │ ├── DJLComponentAutoConfiguration.java │ │ │ └── DJLComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dns-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dns.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dns/ │ │ │ └── springboot/ │ │ │ ├── DnsComponentAutoConfiguration.java │ │ │ └── DnsComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-docker-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── docker.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── docker/ │ │ │ └── springboot/ │ │ │ ├── DockerComponentAutoConfiguration.java │ │ │ ├── DockerComponentConfiguration.java │ │ │ └── DockerComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-docling-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── docling.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── docling/ │ │ │ └── springboot/ │ │ │ ├── DoclingComponentAutoConfiguration.java │ │ │ ├── DoclingComponentConfiguration.java │ │ │ └── DoclingComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-drill-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── drill.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── drill/ │ │ │ └── springboot/ │ │ │ ├── DrillComponentAutoConfiguration.java │ │ │ └── DrillComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dropbox-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dropbox.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dropbox/ │ │ │ └── springboot/ │ │ │ ├── DropboxComponentAutoConfiguration.java │ │ │ └── DropboxComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dynamic-router-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dynamic-router.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dynamicrouter/ │ │ │ ├── control/ │ │ │ │ └── springboot/ │ │ │ │ ├── DynamicRouterControlComponentAutoConfiguration.java │ │ │ │ └── DynamicRouterControlComponentConfiguration.java │ │ │ └── routing/ │ │ │ └── springboot/ │ │ │ ├── DynamicRouterComponentAutoConfiguration.java │ │ │ └── DynamicRouterComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ehcache-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── ehcache.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── ehcache/ │ │ │ │ └── springboot/ │ │ │ │ ├── EhcacheComponentAutoConfiguration.java │ │ │ │ ├── EhcacheComponentConfiguration.java │ │ │ │ ├── EhcacheComponentConverter.java │ │ │ │ └── customizer/ │ │ │ │ ├── CacheConfigurationCustomizer.java │ │ │ │ ├── CacheConfigurationCustomizerConfiguration.java │ │ │ │ ├── CacheManagerCustomizer.java │ │ │ │ └── CacheManagerCustomizerConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ehcache/ │ │ │ └── springboot/ │ │ │ └── customizer/ │ │ │ ├── CacheConfigurationCustomizerEnabledAppendTest.java │ │ │ ├── CacheConfigurationCustomizerEnabledReplaceTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledGlobalTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledOnComponentTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledTestBase.java │ │ │ ├── CacheManagerCustomizerEnabledOnComponentTest.java │ │ │ ├── CacheManagerCustomizerEnabledTest.java │ │ │ ├── CacheManagerCustomizerEnabledTestBase.java │ │ │ ├── CacheManagerCustomizerNoOverrideTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledGlobalTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledOnComponentTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledTestBase.java │ │ │ ├── CacheManagerCustomizerOverrideTest.java │ │ │ ├── CacheManagerCustomizerTest.java │ │ │ └── CacheManagerCustomizerWithoutCacheManagerTest.java │ │ └── resources/ │ │ ├── application.properties │ │ └── logback.xml │ ├── camel-elasticsearch-rest-client-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── elasticsearch-rest-client.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── elasticsearch/ │ │ │ └── rest/ │ │ │ └── client/ │ │ │ └── springboot/ │ │ │ ├── ElasticsearchRestClientComponentAutoConfiguration.java │ │ │ ├── ElasticsearchRestClientComponentConfiguration.java │ │ │ └── ElasticsearchRestClientComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-elasticsearch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── elasticsearch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── es/ │ │ │ └── springboot/ │ │ │ ├── ElasticsearchComponentAutoConfiguration.java │ │ │ ├── ElasticsearchComponentConfiguration.java │ │ │ └── ElasticsearchComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-exec-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── exec.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── exec/ │ │ │ └── springboot/ │ │ │ ├── ExecComponentAutoConfiguration.java │ │ │ ├── ExecComponentConfiguration.java │ │ │ └── ExecComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fastjson-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── fastjson.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── fastjson/ │ │ │ └── springboot/ │ │ │ ├── FastjsonDataFormatAutoConfiguration.java │ │ │ └── FastjsonDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fhir-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── fhir.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── fhir/ │ │ │ │ └── springboot/ │ │ │ │ ├── FhirComponentAutoConfiguration.java │ │ │ │ ├── FhirComponentConfiguration.java │ │ │ │ ├── FhirComponentConverter.java │ │ │ │ ├── FhirJsonDataFormatAutoConfiguration.java │ │ │ │ ├── FhirJsonDataFormatConfiguration.java │ │ │ │ ├── FhirXmlDataFormatAutoConfiguration.java │ │ │ │ └── FhirXmlDataFormatConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── fhir/ │ │ ├── AbstractFhirTestSupport.java │ │ ├── CustomFhirConfiguration.java │ │ ├── CustomNoFhirServerUrlCamelContext.java │ │ ├── DefaultCamelContext.java │ │ ├── FhirCapabilitiesIT.java │ │ ├── FhirConfigurationIT.java │ │ ├── FhirCreateIT.java │ │ ├── FhirCustomClientConfigurationIT.java │ │ ├── FhirDeleteIT.java │ │ ├── FhirExtraParametersIT.java │ │ ├── FhirHistoryIT.java │ │ ├── FhirLoadPageIT.java │ │ ├── FhirMetaIT.java │ │ ├── FhirOperationIT.java │ │ ├── FhirPatchIT.java │ │ ├── FhirReadIT.java │ │ ├── FhirSearchIT.java │ │ ├── FhirServer.java │ │ ├── FhirSimpleIT.java │ │ ├── FhirTransactionIT.java │ │ ├── FhirUpdateIT.java │ │ ├── FhirValidateIT.java │ │ ├── Hl7v2PatientToFhirPatientIT.java │ │ ├── PatientProcessor.java │ │ └── dataformat/ │ │ ├── FhirJsonDataFormatTest.java │ │ ├── FhirJsonDataformatErrorHandlerTest.java │ │ ├── FhirXmlDataFormatTest.java │ │ └── FhirXmlDataformatErrorHandlerTest.java │ ├── camel-file-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── file-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── file/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── FileLockClusterServiceAutoConfiguration.java │ │ │ │ └── FileLockClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── springboot/ │ │ │ └── cluster/ │ │ │ └── FileClusterServiceAutoConfigurationTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-file-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── file.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── file/ │ │ │ │ └── springboot/ │ │ │ │ ├── FileComponentAutoConfiguration.java │ │ │ │ └── FileComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── file/ │ │ ├── AntPathMatcherGenericFileFilterTest.java │ │ ├── BaseFile.java │ │ ├── FileBeginFailureOneTimeTest.java │ │ ├── FileBridgeErrorHandlerTest.java │ │ ├── FileBrowsableEndpointTest.java │ │ ├── FileChangedReadLockMarkerFileFalseTest.java │ │ ├── FileConsumerAbsolutePathDefaultMoveTest.java │ │ ├── FileConsumerBatchTest.java │ │ ├── FileConsumerFileExpressionTest.java │ │ ├── FileConsumerFileFilterTest.java │ │ ├── FileConsumerIdempotentTest.java │ │ ├── FileConsumerMoveAndMoveFailureTest.java │ │ ├── FileConsumerPreMoveTest.java │ │ ├── FileIdempotentReadLockWithFileIdempRepoTest.java │ │ ├── FileIdempotentReadSameFileAgainTest.java │ │ ├── FileProduceTempPrefixTest.java │ │ ├── FileProducerCharsetUTFtoISOTest.java │ │ ├── FileProducerExpressionTest.java │ │ ├── FileProducerFileExistOverrideTest.java │ │ ├── FileProducerOverruleToDifferentFolderTest.java │ │ ├── FileProducerRecursivelayToDifferentFolderTest.java │ │ ├── FileProducerStreamTest.java │ │ ├── FileSorterRefTest.java │ │ ├── FileToFileWithFlattenTest.java │ │ ├── FilerConsumerDoneFileNamePrefixTest.java │ │ ├── FilerProducerDoneFileNameRouteTest.java │ │ └── FromFileMoveFileIfProcessFailsTest.java │ ├── camel-file-watch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── file-watch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── watch/ │ │ │ └── springboot/ │ │ │ ├── FileWatchComponentAutoConfiguration.java │ │ │ ├── FileWatchComponentConfiguration.java │ │ │ └── FileWatchComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-flatpack-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── flatpack.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── flatpack/ │ │ │ │ └── springboot/ │ │ │ │ ├── FlatpackComponentAutoConfiguration.java │ │ │ │ └── FlatpackComponentConfiguration.java │ │ │ └── dataformat/ │ │ │ └── flatpack/ │ │ │ └── springboot/ │ │ │ ├── FlatpackDataFormatAutoConfiguration.java │ │ │ ├── FlatpackDataFormatConfiguration.java │ │ │ └── FlatpackDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-flink-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── flink.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── flink/ │ │ │ └── springboot/ │ │ │ ├── FlinkComponentAutoConfiguration.java │ │ │ ├── FlinkComponentConfiguration.java │ │ │ └── FlinkComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-flowable-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── flowable.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── flowable/ │ │ │ └── springboot/ │ │ │ ├── FlowableComponentAutoConfiguration.java │ │ │ └── FlowableComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fop-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── fop.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── fop/ │ │ │ └── springboot/ │ │ │ ├── FopComponentAutoConfiguration.java │ │ │ └── FopComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fory-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── fory.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── fory/ │ │ │ └── springboot/ │ │ │ ├── ForyDataFormatAutoConfiguration.java │ │ │ └── ForyDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-freemarker-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── freemarker.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── freemarker/ │ │ │ └── springboot/ │ │ │ ├── FreemarkerComponentAutoConfiguration.java │ │ │ ├── FreemarkerComponentConfiguration.java │ │ │ └── FreemarkerComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ftp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── ftp.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── file/ │ │ │ │ └── remote/ │ │ │ │ └── springboot/ │ │ │ │ ├── FtpComponentAutoConfiguration.java │ │ │ │ ├── FtpComponentConfiguration.java │ │ │ │ ├── FtpsComponentAutoConfiguration.java │ │ │ │ ├── FtpsComponentConfiguration.java │ │ │ │ ├── SftpComponentAutoConfiguration.java │ │ │ │ └── SftpComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── data/ │ │ │ ├── bar.xml │ │ │ └── foo.xml │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── remote/ │ │ │ └── springboot/ │ │ │ ├── AbstractBaseFtp.java │ │ │ ├── ftp/ │ │ │ │ ├── BaseFtp.java │ │ │ │ ├── FromFtpFilterTest.java │ │ │ │ ├── FromFtpMoveFileRecursiveTest.java │ │ │ │ ├── FromFtpToBinaryFileTest.java │ │ │ │ ├── FtpAnonymousTest.java │ │ │ │ ├── FtpConsumerMaxMessagesPerPollTest.java │ │ │ │ ├── FtpEmbeddedService.java │ │ │ │ ├── FtpProducerConcurrentTest.java │ │ │ │ ├── FtpSimpleConsumeStreamingStepwiseFalseTest.java │ │ │ │ ├── FtpSimpleConsumeStreamingStepwiseTrueTest.java │ │ │ │ └── FtpSoTimeoutTest.java │ │ │ ├── ftps/ │ │ │ │ ├── BaseFtpsClientAuth.java │ │ │ │ ├── BaseFtpsImplicitClientAuth.java │ │ │ │ ├── FileToFtpsImplicitSSLWithClientAuthTest.java │ │ │ │ ├── FileToFtpsWithCustomTrustStorePropertiesTest.java │ │ │ │ ├── FtpsEmbeddedService.java │ │ │ │ ├── FtpsImplicitEmbeddedService.java │ │ │ │ └── FtpsTest.java │ │ │ └── sftp/ │ │ │ ├── BaseSftp.java │ │ │ ├── SftpConsumerLocalWorkDirectoryTest.java │ │ │ ├── SftpEmbeddedService.java │ │ │ ├── SftpKeyExchangeProtocolsTest.java │ │ │ ├── SftpSetOperationsTest.java │ │ │ ├── SftpSimpleProduceThroughProxyTest.java │ │ │ └── SftpUseListFalseTest.java │ │ └── resources/ │ │ ├── hostkey.pem │ │ ├── readme.txt │ │ ├── server.jks │ │ └── users.properties │ ├── camel-geocoder-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── geocoder.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── geocoder/ │ │ │ └── springboot/ │ │ │ ├── GeoCoderComponentAutoConfiguration.java │ │ │ ├── GeoCoderComponentConfiguration.java │ │ │ └── GeoCoderComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-git-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── git.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── git/ │ │ │ └── springboot/ │ │ │ ├── GitComponentAutoConfiguration.java │ │ │ └── GitComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-github-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── github.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── github/ │ │ │ └── springboot/ │ │ │ ├── GitHubComponentAutoConfiguration.java │ │ │ └── GitHubComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-github2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── github2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── github2/ │ │ │ └── springboot/ │ │ │ ├── GitHub2ComponentAutoConfiguration.java │ │ │ └── GitHub2ComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-bigquery-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-bigquery.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── bigquery/ │ │ │ ├── springboot/ │ │ │ │ ├── GoogleBigQueryComponentAutoConfiguration.java │ │ │ │ ├── GoogleBigQueryComponentConfiguration.java │ │ │ │ └── GoogleBigQueryComponentConverter.java │ │ │ └── sql/ │ │ │ └── springboot/ │ │ │ ├── GoogleBigQuerySQLComponentAutoConfiguration.java │ │ │ ├── GoogleBigQuerySQLComponentConfiguration.java │ │ │ └── GoogleBigQuerySQLComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-calendar-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-calendar.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── calendar/ │ │ │ ├── springboot/ │ │ │ │ ├── GoogleCalendarComponentAutoConfiguration.java │ │ │ │ ├── GoogleCalendarComponentConfiguration.java │ │ │ │ └── GoogleCalendarComponentConverter.java │ │ │ └── stream/ │ │ │ └── springboot/ │ │ │ ├── GoogleCalendarStreamComponentAutoConfiguration.java │ │ │ ├── GoogleCalendarStreamComponentConfiguration.java │ │ │ └── GoogleCalendarStreamComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-drive-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-drive.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── drive/ │ │ │ └── springboot/ │ │ │ ├── GoogleDriveComponentAutoConfiguration.java │ │ │ ├── GoogleDriveComponentConfiguration.java │ │ │ └── GoogleDriveComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-firestore-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-firestore.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── firestore/ │ │ │ └── springboot/ │ │ │ ├── GoogleFirestoreComponentAutoConfiguration.java │ │ │ ├── GoogleFirestoreComponentConfiguration.java │ │ │ └── GoogleFirestoreComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-functions-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-functions.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── functions/ │ │ │ └── springboot/ │ │ │ ├── GoogleCloudFunctionsComponentAutoConfiguration.java │ │ │ └── GoogleCloudFunctionsComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-mail-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-mail.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── mail/ │ │ │ ├── springboot/ │ │ │ │ ├── GoogleMailComponentAutoConfiguration.java │ │ │ │ ├── GoogleMailComponentConfiguration.java │ │ │ │ └── GoogleMailComponentConverter.java │ │ │ └── stream/ │ │ │ └── springboot/ │ │ │ ├── GoogleMailStreamComponentAutoConfiguration.java │ │ │ ├── GoogleMailStreamComponentConfiguration.java │ │ │ └── GoogleMailStreamComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-pubsub-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-pubsub.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── pubsub/ │ │ │ └── springboot/ │ │ │ ├── GooglePubsubComponentAutoConfiguration.java │ │ │ ├── GooglePubsubComponentConfiguration.java │ │ │ └── GooglePubsubComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-secret-manager-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── google-secret-manager.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── google/ │ │ │ │ └── secret/ │ │ │ │ └── manager/ │ │ │ │ └── springboot/ │ │ │ │ ├── GoogleSecretManagerComponentAutoConfiguration.java │ │ │ │ ├── GoogleSecretManagerComponentConfiguration.java │ │ │ │ └── SpringBootGoogleSecretManagerPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── secret/ │ │ │ └── manager/ │ │ │ └── springboot/ │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-google-sheets-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-sheets.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── sheets/ │ │ │ ├── springboot/ │ │ │ │ ├── GoogleSheetsComponentAutoConfiguration.java │ │ │ │ ├── GoogleSheetsComponentConfiguration.java │ │ │ │ └── GoogleSheetsComponentConverter.java │ │ │ └── stream/ │ │ │ └── springboot/ │ │ │ ├── GoogleSheetsStreamComponentAutoConfiguration.java │ │ │ ├── GoogleSheetsStreamComponentConfiguration.java │ │ │ └── GoogleSheetsStreamComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-speech-to-text-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-speech-to-text.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── speechtotext/ │ │ │ └── springboot/ │ │ │ ├── GoogleCloudSpeechToTextComponentAutoConfiguration.java │ │ │ └── GoogleCloudSpeechToTextComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-storage-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-storage.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── storage/ │ │ │ └── springboot/ │ │ │ ├── GoogleCloudStorageComponentAutoConfiguration.java │ │ │ ├── GoogleCloudStorageComponentConfiguration.java │ │ │ └── GoogleCloudStorageComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-text-to-speech-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-text-to-speech.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── texttospeech/ │ │ │ └── springboot/ │ │ │ ├── GoogleCloudTextToSpeechComponentAutoConfiguration.java │ │ │ └── GoogleCloudTextToSpeechComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-vertexai-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-vertexai.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── vertexai/ │ │ │ └── springboot/ │ │ │ ├── GoogleVertexAIComponentAutoConfiguration.java │ │ │ ├── GoogleVertexAIComponentConfiguration.java │ │ │ └── GoogleVertexAIComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-google-vision-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── google-vision.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── google/ │ │ │ └── vision/ │ │ │ └── springboot/ │ │ │ ├── GoogleCloudVisionComponentAutoConfiguration.java │ │ │ └── GoogleCloudVisionComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-graphql-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── graphql.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── graphql/ │ │ │ └── springboot/ │ │ │ ├── GraphqlComponentAutoConfiguration.java │ │ │ ├── GraphqlComponentConfiguration.java │ │ │ └── GraphqlComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-grok-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── grok.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── grok/ │ │ │ └── springboot/ │ │ │ ├── GrokDataFormatAutoConfiguration.java │ │ │ └── GrokDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-groovy-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── groovy.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── groovy/ │ │ │ │ ├── json/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── GroovyJSonlDataFormatAutoConfiguration.java │ │ │ │ │ └── GroovyJSonlDataFormatConfiguration.java │ │ │ │ └── xml/ │ │ │ │ └── springboot/ │ │ │ │ ├── GroovyXmlDataFormatAutoConfiguration.java │ │ │ │ └── GroovyXmlDataFormatConfiguration.java │ │ │ └── language/ │ │ │ └── groovy/ │ │ │ └── springboot/ │ │ │ ├── GroovyLanguageAutoConfiguration.java │ │ │ └── GroovyLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-grpc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── grpc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── grpc/ │ │ │ └── springboot/ │ │ │ ├── GrpcComponentAutoConfiguration.java │ │ │ └── GrpcComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-gson-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── gson.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── gson/ │ │ │ │ └── springboot/ │ │ │ │ ├── GsonDataFormatAutoConfiguration.java │ │ │ │ └── GsonDataFormatConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── gson/ │ │ │ └── springboot/ │ │ │ ├── ExcludeAge.java │ │ │ ├── ExcludeWeight.java │ │ │ ├── GsonConcurrentTest.java │ │ │ ├── GsonFieldNamePolicyTest.java │ │ │ ├── GsonJsonDataFormatTest.java │ │ │ ├── GsonMarshalExclusionTest.java │ │ │ ├── GsonMarshalListTest.java │ │ │ ├── GsonMarshalTest.java │ │ │ ├── GsonUnmarshalTypeFromHeaderTest.java │ │ │ ├── PersonPojo.java │ │ │ ├── SpringGsonFieldNamePolicyTest.java │ │ │ ├── SpringGsonJsonDataFormatTest.java │ │ │ ├── SpringGsonUnmarshalTypeFromHeaderTest.java │ │ │ ├── TestPojo.java │ │ │ └── TestPojoExclusion.java │ │ └── resources/ │ │ └── routes/ │ │ ├── SpringGsonFieldNamePolicyTest.xml │ │ ├── SpringGsonJsonDataFormatTest.xml │ │ └── SpringGsonUnmarshalTypeFromHeaderTest.xml │ ├── camel-hashicorp-vault-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── hashicorp-vault.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── hashicorp/ │ │ │ │ └── vault/ │ │ │ │ └── springboot/ │ │ │ │ ├── HashicorpVaultComponentAutoConfiguration.java │ │ │ │ ├── HashicorpVaultComponentConfiguration.java │ │ │ │ └── SpringBootHashicorpVaultPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── hashicorp/ │ │ │ └── vault/ │ │ │ └── springboot/ │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-hazelcast-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── hazelcast.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── hazelcast/ │ │ │ ├── atomicnumber/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastAtomicnumberComponentAutoConfiguration.java │ │ │ │ ├── HazelcastAtomicnumberComponentConfiguration.java │ │ │ │ └── HazelcastAtomicnumberComponentConverter.java │ │ │ ├── instance/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastInstanceComponentAutoConfiguration.java │ │ │ │ ├── HazelcastInstanceComponentConfiguration.java │ │ │ │ └── HazelcastInstanceComponentConverter.java │ │ │ ├── list/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastListComponentAutoConfiguration.java │ │ │ │ ├── HazelcastListComponentConfiguration.java │ │ │ │ └── HazelcastListComponentConverter.java │ │ │ ├── map/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastMapComponentAutoConfiguration.java │ │ │ │ ├── HazelcastMapComponentConfiguration.java │ │ │ │ └── HazelcastMapComponentConverter.java │ │ │ ├── multimap/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastMultimapComponentAutoConfiguration.java │ │ │ │ ├── HazelcastMultimapComponentConfiguration.java │ │ │ │ └── HazelcastMultimapComponentConverter.java │ │ │ ├── pncounter/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastPNCounterComponentAutoConfiguration.java │ │ │ │ ├── HazelcastPNCounterComponentConfiguration.java │ │ │ │ └── HazelcastPNCounterComponentConverter.java │ │ │ ├── queue/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastQueueComponentAutoConfiguration.java │ │ │ │ ├── HazelcastQueueComponentConfiguration.java │ │ │ │ └── HazelcastQueueComponentConverter.java │ │ │ ├── replicatedmap/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastReplicatedmapComponentAutoConfiguration.java │ │ │ │ ├── HazelcastReplicatedmapComponentConfiguration.java │ │ │ │ └── HazelcastReplicatedmapComponentConverter.java │ │ │ ├── ringbuffer/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastRingbufferComponentAutoConfiguration.java │ │ │ │ ├── HazelcastRingbufferComponentConfiguration.java │ │ │ │ └── HazelcastRingbufferComponentConverter.java │ │ │ ├── seda/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastSedaComponentAutoConfiguration.java │ │ │ │ ├── HazelcastSedaComponentConfiguration.java │ │ │ │ └── HazelcastSedaComponentConverter.java │ │ │ ├── set/ │ │ │ │ └── springboot/ │ │ │ │ ├── HazelcastSetComponentAutoConfiguration.java │ │ │ │ ├── HazelcastSetComponentConfiguration.java │ │ │ │ └── HazelcastSetComponentConverter.java │ │ │ └── topic/ │ │ │ └── springboot/ │ │ │ ├── HazelcastTopicComponentAutoConfiguration.java │ │ │ ├── HazelcastTopicComponentConfiguration.java │ │ │ └── HazelcastTopicComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-hl7-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── hl7.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── hl7/ │ │ │ │ └── springboot/ │ │ │ │ ├── HL7DataFormatAutoConfiguration.java │ │ │ │ ├── HL7DataFormatConfiguration.java │ │ │ │ ├── HL7DataFormatConverter.java │ │ │ │ ├── Hl7TerserLanguageAutoConfiguration.java │ │ │ │ └── Hl7TerserLanguageConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── hl7/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ ├── AckExpressionTest.java │ │ │ ├── ConvertLineFeedTest.java │ │ │ ├── HL7ByteArrayRouteTest.java │ │ │ ├── HL7DataFormatTest.java │ │ │ ├── HL7MLLPCodecBoundaryTest.java │ │ │ ├── HL7MLLPCodecLongTest.java │ │ │ ├── HL7MLLPCodecMessageFloodingTest.java │ │ │ ├── HL7MLLPCodecPlainStringTest.java │ │ │ ├── HL7MLLPCodecStandAndEndBytesTest.java │ │ │ ├── HL7MLLPCodecTest.java │ │ │ ├── HL7MLLPNettyCodecBoundaryTest.java │ │ │ ├── HL7MLLPNettyCodecByteArrayRouteTest.java │ │ │ ├── HL7MLLPNettyCodecLongTest.java │ │ │ ├── HL7MLLPNettyCodecStandAndEndBytesTest.java │ │ │ ├── HL7MLLPNettyCodecTest.java │ │ │ ├── HL7MLLPNettyDecoderResourceLeakTest.java │ │ │ ├── HL7MLLPNettyRouteToTest.java │ │ │ ├── HL7NettyRouteTest.java │ │ │ ├── HL7RouteTest.java │ │ │ ├── HL7TestSupport.java │ │ │ ├── HL7ValidateTest.java │ │ │ ├── HL7XmlDataFormatTest.java │ │ │ ├── MessageValidatorTest.java │ │ │ └── TerserExpressionTest.java │ │ └── resources/ │ │ ├── mdm_t02-1022.txt │ │ └── mdm_t02.txt │ ├── camel-http-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ ├── http.adoc │ │ │ │ └── http.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── http/ │ │ │ │ └── springboot/ │ │ │ │ ├── HttpComponentAutoConfiguration.java │ │ │ │ ├── HttpComponentConfiguration.java │ │ │ │ ├── HttpComponentConverter.java │ │ │ │ ├── HttpComponentSslBundleAutoConfiguration.java │ │ │ │ ├── HttpComponentSslBundleConfigurationProperties.java │ │ │ │ └── HttpComponentTimeoutConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── additional-spring-configuration-metadata.json │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── http/ │ │ └── springboot/ │ │ ├── HttpComponentSslBundleAutoConfigurationTest.java │ │ ├── HttpComponentSslBundleEdgeCasesTest.java │ │ ├── HttpComponentSslBundleHotReloadDisabledTest.java │ │ └── HttpComponentTimeoutConverterTest.java │ ├── camel-huaweicloud-dms-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huaweicloud-dms.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── huaweicloud/ │ │ │ └── dms/ │ │ │ └── springboot/ │ │ │ ├── DMSComponentAutoConfiguration.java │ │ │ └── DMSComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-huaweicloud-frs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huaweicloud-frs.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── huaweicloud/ │ │ │ └── frs/ │ │ │ └── springboot/ │ │ │ ├── FaceRecognitionComponentAutoConfiguration.java │ │ │ └── FaceRecognitionComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-huaweicloud-functiongraph-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huaweicloud-functiongraph.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── springboot/ │ │ │ ├── FunctionGraphComponentAutoConfiguration.java │ │ │ └── FunctionGraphComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-huaweicloud-iam-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huaweicloud-iam.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── huaweicloud/ │ │ │ └── iam/ │ │ │ └── springboot/ │ │ │ ├── IAMComponentAutoConfiguration.java │ │ │ └── IAMComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-huaweicloud-imagerecognition-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huaweicloud-imagerecognition.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── huaweicloud/ │ │ │ └── image/ │ │ │ └── springboot/ │ │ │ ├── ImageRecognitionComponentAutoConfiguration.java │ │ │ └── ImageRecognitionComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-huaweicloud-obs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huaweicloud-obs.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── huaweicloud/ │ │ │ └── obs/ │ │ │ └── springboot/ │ │ │ ├── OBSComponentAutoConfiguration.java │ │ │ └── OBSComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-huaweicloud-smn-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huaweicloud-smn.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── huaweicloud/ │ │ │ └── smn/ │ │ │ └── springboot/ │ │ │ ├── SimpleNotificationComponentAutoConfiguration.java │ │ │ └── SimpleNotificationComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-huggingface-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── huggingface.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── huggingface/ │ │ │ └── springboot/ │ │ │ ├── HuggingFaceComponentAutoConfiguration.java │ │ │ ├── HuggingFaceComponentConfiguration.java │ │ │ └── HuggingFaceComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ibm-cos-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ibm-cos.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ibm/ │ │ │ └── cos/ │ │ │ └── springboot/ │ │ │ ├── IBMCOSComponentAutoConfiguration.java │ │ │ ├── IBMCOSComponentConfiguration.java │ │ │ └── IBMCOSComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ibm-secrets-manager-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── ibm-secrets-manager.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── ibm/ │ │ │ │ └── secrets/ │ │ │ │ └── manager/ │ │ │ │ └── springboot/ │ │ │ │ ├── IBMSecretsManagerComponentAutoConfiguration.java │ │ │ │ ├── IBMSecretsManagerComponentConfiguration.java │ │ │ │ └── IBMSecretsManagerVaultPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-ibm-watson-discovery-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ibm-watson-discovery.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ibm/ │ │ │ └── watson/ │ │ │ └── discovery/ │ │ │ └── springboot/ │ │ │ ├── WatsonDiscoveryComponentAutoConfiguration.java │ │ │ ├── WatsonDiscoveryComponentConfiguration.java │ │ │ └── WatsonDiscoveryComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ibm-watson-language-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ibm-watson-language.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ibm/ │ │ │ └── watson/ │ │ │ └── language/ │ │ │ └── springboot/ │ │ │ ├── WatsonLanguageComponentAutoConfiguration.java │ │ │ ├── WatsonLanguageComponentConfiguration.java │ │ │ └── WatsonLanguageComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ibm-watson-speech-to-text-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ibm-watson-speech-to-text.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ibm/ │ │ │ └── watson/ │ │ │ └── stt/ │ │ │ └── springboot/ │ │ │ ├── WatsonSpeechToTextComponentAutoConfiguration.java │ │ │ ├── WatsonSpeechToTextComponentConfiguration.java │ │ │ └── WatsonSpeechToTextComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ibm-watson-text-to-speech-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ibm-watson-text-to-speech.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ibm/ │ │ │ └── watson/ │ │ │ └── tts/ │ │ │ └── springboot/ │ │ │ ├── WatsonTextToSpeechComponentAutoConfiguration.java │ │ │ ├── WatsonTextToSpeechComponentConfiguration.java │ │ │ └── WatsonTextToSpeechComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ibm-watsonx-ai-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ibm-watsonx-ai.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ibm/ │ │ │ └── watsonx/ │ │ │ └── ai/ │ │ │ └── springboot/ │ │ │ ├── WatsonxAiComponentAutoConfiguration.java │ │ │ ├── WatsonxAiComponentConfiguration.java │ │ │ └── WatsonxAiComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ical-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ical.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ical/ │ │ │ └── springboot/ │ │ │ ├── ICalDataFormatAutoConfiguration.java │ │ │ └── ICalDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-iec60870-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── iec60870.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── iec60870/ │ │ │ ├── client/ │ │ │ │ └── springboot/ │ │ │ │ ├── ClientComponentAutoConfiguration.java │ │ │ │ ├── ClientComponentConfiguration.java │ │ │ │ └── ClientComponentConverter.java │ │ │ └── server/ │ │ │ └── springboot/ │ │ │ ├── ServerComponentAutoConfiguration.java │ │ │ ├── ServerComponentConfiguration.java │ │ │ └── ServerComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-iggy-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── iggy.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── iggy/ │ │ │ └── springboot/ │ │ │ ├── IggyComponentAutoConfiguration.java │ │ │ ├── IggyComponentConfiguration.java │ │ │ └── IggyComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ignite-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ignite.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ignite/ │ │ │ ├── cache/ │ │ │ │ └── springboot/ │ │ │ │ ├── IgniteCacheComponentAutoConfiguration.java │ │ │ │ ├── IgniteCacheComponentConfiguration.java │ │ │ │ └── IgniteCacheComponentConverter.java │ │ │ ├── compute/ │ │ │ │ └── springboot/ │ │ │ │ ├── IgniteComputeComponentAutoConfiguration.java │ │ │ │ ├── IgniteComputeComponentConfiguration.java │ │ │ │ └── IgniteComputeComponentConverter.java │ │ │ ├── events/ │ │ │ │ └── springboot/ │ │ │ │ ├── IgniteEventsComponentAutoConfiguration.java │ │ │ │ ├── IgniteEventsComponentConfiguration.java │ │ │ │ └── IgniteEventsComponentConverter.java │ │ │ ├── idgen/ │ │ │ │ └── springboot/ │ │ │ │ ├── IgniteIdGenComponentAutoConfiguration.java │ │ │ │ ├── IgniteIdGenComponentConfiguration.java │ │ │ │ └── IgniteIdGenComponentConverter.java │ │ │ ├── messaging/ │ │ │ │ └── springboot/ │ │ │ │ ├── IgniteMessagingComponentAutoConfiguration.java │ │ │ │ ├── IgniteMessagingComponentConfiguration.java │ │ │ │ └── IgniteMessagingComponentConverter.java │ │ │ ├── queue/ │ │ │ │ └── springboot/ │ │ │ │ ├── IgniteQueueComponentAutoConfiguration.java │ │ │ │ ├── IgniteQueueComponentConfiguration.java │ │ │ │ └── IgniteQueueComponentConverter.java │ │ │ └── set/ │ │ │ └── springboot/ │ │ │ ├── IgniteSetComponentAutoConfiguration.java │ │ │ ├── IgniteSetComponentConfiguration.java │ │ │ └── IgniteSetComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-infinispan-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── infinispan-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── infinispan/ │ │ │ │ └── remote/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── InfinispanRemoteClusterServiceAutoConfiguration.java │ │ │ │ └── InfinispanRemoteClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── infinispan/ │ │ │ └── remote/ │ │ │ └── springboot/ │ │ │ └── cluster/ │ │ │ └── InfinispanEmbeddedClusterServiceAutoConfigurationTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-infinispan-embedded-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── infinispan-embedded.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── infinispan/ │ │ │ └── embedded/ │ │ │ └── springboot/ │ │ │ ├── InfinispanEmbeddedComponentAutoConfiguration.java │ │ │ ├── InfinispanEmbeddedComponentConfiguration.java │ │ │ └── InfinispanEmbeddedComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-infinispan-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── infinispan.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── infinispan/ │ │ │ └── remote/ │ │ │ └── springboot/ │ │ │ ├── InfinispanRemoteComponentAutoConfiguration.java │ │ │ ├── InfinispanRemoteComponentConfiguration.java │ │ │ └── InfinispanRemoteComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-influxdb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── influxdb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── influxdb/ │ │ │ └── springboot/ │ │ │ ├── InfluxDbComponentAutoConfiguration.java │ │ │ ├── InfluxDbComponentConfiguration.java │ │ │ └── InfluxDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-influxdb2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── influxdb2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── influxdb2/ │ │ │ └── springboot/ │ │ │ ├── InfluxDb2ComponentAutoConfiguration.java │ │ │ ├── InfluxDb2ComponentConfiguration.java │ │ │ └── InfluxDb2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-irc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── irc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── irc/ │ │ │ └── springboot/ │ │ │ ├── IrcComponentAutoConfiguration.java │ │ │ └── IrcComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ironmq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ironmq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ironmq/ │ │ │ └── springboot/ │ │ │ ├── IronMQComponentAutoConfiguration.java │ │ │ └── IronMQComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-iso8583-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── iso8583.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── iso8583/ │ │ │ └── springboot/ │ │ │ ├── Iso8583DataFormatAutoConfiguration.java │ │ │ └── Iso8583DataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jackson-avro-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── jackson-avro.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── jackson/ │ │ │ │ └── avro/ │ │ │ │ └── springboot/ │ │ │ │ ├── JacksonAvroDataFormatAutoConfiguration.java │ │ │ │ ├── JacksonAvroDataFormatConfiguration.java │ │ │ │ └── JacksonAvroDataFormatConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── jackson/ │ │ └── avro/ │ │ └── springboot/ │ │ └── test/ │ │ ├── JacksonAvroLookupResolverTest.java │ │ ├── JacksonAvroMarshalUnmarshalJsonNodeTest.java │ │ ├── JacksonAvroMarshalUnmarshalPojoListTest.java │ │ └── JacksonAvroMarshalUnmarshalPojoTest.java │ ├── camel-jackson-protobuf-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── jackson-protobuf.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── jackson/ │ │ │ │ └── protobuf/ │ │ │ │ └── springboot/ │ │ │ │ ├── JacksonProtobufDataFormatAutoConfiguration.java │ │ │ │ └── JacksonProtobufDataFormatConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── jackson/ │ │ └── protobuf/ │ │ └── springboot/ │ │ ├── JacksonProtobufLookupResolverTest.java │ │ ├── JacksonProtobufMarshalUnmarshalJsonNodeTest.java │ │ └── JacksonProtobufMarshalUnmarshalPojoTest.java │ ├── camel-jackson-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jackson.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jackson/ │ │ │ └── springboot/ │ │ │ ├── JacksonDataFormatAutoConfiguration.java │ │ │ ├── JacksonDataFormatConfiguration.java │ │ │ └── JacksonDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jackson3-avro-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jackson3-avro.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jackson3/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ ├── JacksonAvroDataFormatAutoConfiguration.java │ │ │ └── JacksonAvroDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jackson3-protobuf-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jackson3-protobuf.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jackson3/ │ │ │ └── protobuf/ │ │ │ └── springboot/ │ │ │ ├── JacksonProtobufDataFormatAutoConfiguration.java │ │ │ └── JacksonProtobufDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jackson3-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jackson3.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jackson3/ │ │ │ └── springboot/ │ │ │ ├── JacksonDataFormatAutoConfiguration.java │ │ │ ├── JacksonDataFormatConfiguration.java │ │ │ └── JacksonDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jackson3xml-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jackson3xml.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jackson3xml/ │ │ │ └── springboot/ │ │ │ ├── JacksonXMLDataFormatAutoConfiguration.java │ │ │ └── JacksonXMLDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jacksonxml-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jacksonxml.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jacksonxml/ │ │ │ └── springboot/ │ │ │ ├── JacksonXMLDataFormatAutoConfiguration.java │ │ │ └── JacksonXMLDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jandex-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-jasypt-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── jasypt.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── jasypt/ │ │ │ │ └── springboot/ │ │ │ │ ├── EncryptablePropertySourcesPlaceholderConfigurer.java │ │ │ │ ├── JasyptEncryptedPropertiesAutoconfiguration.java │ │ │ │ ├── JasyptEncryptedPropertiesConfiguration.java │ │ │ │ ├── JasyptEncryptedPropertiesUtils.java │ │ │ │ ├── JasyptSpringEncryptedPropertiesParser.java │ │ │ │ └── SpringBootJasyptPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jasypt/ │ │ │ └── springboot/ │ │ │ ├── AbstractEncryptedPropertiesIvGeneratorAutoDetectionTest.java │ │ │ ├── Constants.java │ │ │ ├── EarlyEncryptedPropertiesTest.java │ │ │ ├── EncryptedPropertiesBean.java │ │ │ ├── EncryptedPropertiesCustomConfigurationBeansTest.java │ │ │ ├── EncryptedPropertiesDisabledCustomConfigurationBeansTest.java │ │ │ ├── EncryptedPropertiesDisabledTest.java │ │ │ ├── EncryptedPropertiesIvGeneratorAutoDetectionBouncyCastleTest.java │ │ │ ├── EncryptedPropertiesIvGeneratorAutoDetectionTest.java │ │ │ ├── EncryptedPropertiesTest.java │ │ │ ├── EncryptedPropertiesTestBase.java │ │ │ ├── EncryptedPropertiesUtilsTest.java │ │ │ └── Routes.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── logback.xml │ │ └── test.properties │ ├── camel-javascript-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── javascript.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── js/ │ │ │ └── springboot/ │ │ │ ├── JavaScriptLanguageAutoConfiguration.java │ │ │ └── JavaScriptLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jaxb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jaxb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── converter/ │ │ │ └── jaxb/ │ │ │ └── springboot/ │ │ │ ├── JaxbDataFormatAutoConfiguration.java │ │ │ └── JaxbDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jcache-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jcache.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jcache/ │ │ │ └── springboot/ │ │ │ ├── JCacheComponentAutoConfiguration.java │ │ │ ├── JCacheComponentConfiguration.java │ │ │ └── JCacheComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jcr-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jcr.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jcr/ │ │ │ └── springboot/ │ │ │ ├── JcrComponentAutoConfiguration.java │ │ │ └── JcrComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jdbc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jdbc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jdbc/ │ │ │ └── springboot/ │ │ │ ├── JdbcComponentAutoConfiguration.java │ │ │ ├── JdbcComponentConfiguration.java │ │ │ └── JdbcComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jetty-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jetty.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jetty12/ │ │ │ └── springboot/ │ │ │ ├── JettyHttpComponentAutoConfiguration12.java │ │ │ ├── JettyHttpComponentConfiguration12.java │ │ │ └── JettyHttpComponentConverter12.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jfr-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jfr.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-jgroups-raft-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── jgroups-raft-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── jgroups/ │ │ │ │ └── raft/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── JGroupsRaftClusterServiceAutoConfiguration.java │ │ │ │ └── JGroupsRaftClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jgroups/ │ │ │ └── raft/ │ │ │ └── springboot/ │ │ │ └── cluster/ │ │ │ └── JGroupsRaftClusterServiceAutoConfigurationTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-jgroups-raft-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jgroups-raft.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jgroups/ │ │ │ └── raft/ │ │ │ └── springboot/ │ │ │ ├── JGroupsRaftComponentAutoConfiguration.java │ │ │ ├── JGroupsRaftComponentConfiguration.java │ │ │ └── JGroupsRaftComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jgroups-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jgroups.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jgroups/ │ │ │ └── springboot/ │ │ │ ├── JGroupsComponentAutoConfiguration.java │ │ │ ├── JGroupsComponentConfiguration.java │ │ │ └── JGroupsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jira-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── jira.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── jira/ │ │ │ │ └── springboot/ │ │ │ │ ├── JiraComponentAutoConfiguration.java │ │ │ │ ├── JiraComponentConfiguration.java │ │ │ │ └── JiraComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jira/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ ├── AddCommentProducerTest.java │ │ │ ├── AddIssueLinkProducerTest.java │ │ │ ├── AddIssueProducerTest.java │ │ │ ├── AddWorkLogProducerTest.java │ │ │ ├── AttachFileProducerTest.java │ │ │ ├── DeleteIssueProducerTest.java │ │ │ ├── FetchCommentsProducerTest.java │ │ │ ├── FetchIssueProducerTest.java │ │ │ ├── JiraTestConstants.java │ │ │ ├── NewCommentsConsumerTest.java │ │ │ ├── NewIssuesConsumerTest.java │ │ │ ├── TransitionIssueProducerTest.java │ │ │ ├── UpdateIssueProducerTest.java │ │ │ ├── Utils.java │ │ │ ├── WatchUpdatesConsumerTest.java │ │ │ └── WatcherProducerTest.java │ │ └── resources/ │ │ └── jiraauth.properties │ ├── camel-jms-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jms.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jms/ │ │ │ └── springboot/ │ │ │ ├── JmsComponentAutoConfiguration.java │ │ │ ├── JmsComponentConfiguration.java │ │ │ └── JmsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jmx-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jmx.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jmx/ │ │ │ └── springboot/ │ │ │ ├── JMXComponentAutoConfiguration.java │ │ │ └── JMXComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jolokia-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── .gitignore │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── jolokia/ │ │ │ │ └── springboot/ │ │ │ │ ├── JolokiaComponentAutoConfiguration.java │ │ │ │ ├── JolokiaComponentConfiguration.java │ │ │ │ └── restrictor/ │ │ │ │ └── CamelRestrictor.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── jolokia/ │ │ └── springboot/ │ │ ├── JolokiaComponentAutoConfigurationCustomRestrictorTest.java │ │ ├── JolokiaComponentAutoConfigurationDefaultRestrictorTest.java │ │ ├── JolokiaComponentAutoConfigurationDisabledTest.java │ │ ├── JolokiaComponentAutoConfigurationDiscoveryDisabledTest.java │ │ ├── JolokiaComponentAutoConfigurationOnK8SDisabledTest.java │ │ ├── JolokiaComponentAutoConfigurationOnK8STest.java │ │ ├── JolokiaComponentAutoConfigurationPrefersBeanTest.java │ │ ├── JolokiaComponentAutoConfigurationPrefersPropertiesTest.java │ │ ├── JolokiaComponentAutoConfigurationTest.java │ │ ├── JolokiaComponentAutoConfigurationUsingConfigHolderTest.java │ │ ├── JolokiaComponentAutoConfigurationUsingCustomBeansTest.java │ │ ├── JolokiaComponentAutoConfigurationUsingSystemPropertiesTest.java │ │ ├── JolokiaComponentAutoConfigurationWithoutRestrictorTest.java │ │ ├── JolokiaComponentTestBase.java │ │ └── support/ │ │ └── MyRestrictor.java │ ├── camel-jolt-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jolt.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jolt/ │ │ │ └── springboot/ │ │ │ ├── JoltComponentAutoConfiguration.java │ │ │ ├── JoltComponentConfiguration.java │ │ │ └── JoltComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jooq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jooq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jooq/ │ │ │ └── springboot/ │ │ │ ├── JooqComponentAutoConfiguration.java │ │ │ ├── JooqComponentConfiguration.java │ │ │ └── JooqComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-joor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── joor.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── joor/ │ │ │ └── springboot/ │ │ │ ├── JavaLanguageAutoConfiguration.java │ │ │ ├── JavaLanguageConfiguration.java │ │ │ ├── JoorLanguageAutoConfiguration.java │ │ │ └── JoorLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jpa-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jpa.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jpa/ │ │ │ └── springboot/ │ │ │ ├── JpaComponentAutoConfiguration.java │ │ │ ├── JpaComponentConfiguration.java │ │ │ └── JpaComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── jq/ │ │ │ └── springboot/ │ │ │ ├── JqLanguageAutoConfiguration.java │ │ │ └── JqLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jsch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jsch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── scp/ │ │ │ └── springboot/ │ │ │ ├── ScpComponentAutoConfiguration.java │ │ │ └── ScpComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jslt-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jslt.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jslt/ │ │ │ └── springboot/ │ │ │ ├── JsltComponentAutoConfiguration.java │ │ │ ├── JsltComponentConfiguration.java │ │ │ └── JsltComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-json-patch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── json-patch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jsonpatch/ │ │ │ └── springboot/ │ │ │ ├── JsonPatchComponentAutoConfiguration.java │ │ │ └── JsonPatchComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-json-validator-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── json-validator.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jsonvalidator/ │ │ │ └── springboot/ │ │ │ ├── JsonValidatorComponentAutoConfiguration.java │ │ │ └── JsonValidatorComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jsonapi-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jsonapi.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jsonapi/ │ │ │ └── springboot/ │ │ │ ├── JsonApiDataFormatAutoConfiguration.java │ │ │ └── JsonApiDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jsonata-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jsonata.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jsonata/ │ │ │ └── springboot/ │ │ │ ├── JsonataComponentAutoConfiguration.java │ │ │ ├── JsonataComponentConfiguration.java │ │ │ └── JsonataComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jsonb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jsonb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jsonb/ │ │ │ └── springboot/ │ │ │ ├── JsonbDataFormatAutoConfiguration.java │ │ │ └── JsonbDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jsonpath-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── jsonpath.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── jsonpath/ │ │ │ │ └── springboot/ │ │ │ │ ├── JsonPathLanguageAutoConfiguration.java │ │ │ │ └── JsonPathLanguageConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jsonpath/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ ├── EasyJsonPathWithRootSimpleCBRTest.java │ │ │ ├── EasyJsonPathWithSimpleCBRTest.java │ │ │ ├── JsonPathBeanStreamCachingTest.java │ │ │ ├── JsonPathBeanSuppressExceptionsTest.java │ │ │ ├── JsonPathBeanTest.java │ │ │ ├── JsonPathCBRTest.java │ │ │ ├── JsonPathCharsetTest.java │ │ │ ├── JsonPathExchangePropertyTest.java │ │ │ ├── JsonPathHeaderNameTest.java │ │ │ ├── JsonPathLanguageTest.java │ │ │ ├── JsonPathMapTransformTest.java │ │ │ ├── JsonPathMockMatchesTest.java │ │ │ ├── JsonPathPlatformHttpTest.java │ │ │ ├── JsonPathPojoTransformTest.java │ │ │ ├── JsonPathSourceTest.java │ │ │ ├── JsonPathSplitTest.java │ │ │ ├── JsonPathSplitWriteAsStringMapTest.java │ │ │ ├── JsonPathSplitWriteAsStringTest.java │ │ │ ├── JsonPathStreamCachingCBRTest.java │ │ │ ├── JsonPathSuppressTest.java │ │ │ ├── JsonPathTransformHeaderNameTest.java │ │ │ ├── JsonPathTransformONielEscapedTest.java │ │ │ ├── JsonPathTransformONielPlaceholderTest.java │ │ │ ├── JsonPathTransformONielTest.java │ │ │ ├── JsonPathTransformResultTypeTest.java │ │ │ ├── JsonPathTransformTest.java │ │ │ ├── JsonPathWithSimpleCBRTest.java │ │ │ ├── MyPojoType.java │ │ │ ├── SpringJsonPathCBRTest.java │ │ │ ├── SpringJsonPathSplitWriteAsStringTest.java │ │ │ ├── SpringJsonPathSuppressTest.java │ │ │ ├── SpringJsonPathTransformHeaderNameTest.java │ │ │ ├── SpringJsonPathTransformResultTypeTest.java │ │ │ └── SpringJsonPathTransformTest.java │ │ └── resources/ │ │ ├── average.json │ │ ├── books.json │ │ ├── booksUTF16BE.json │ │ ├── booksUTF16LE.json │ │ ├── cheap.json │ │ ├── content-map.json │ │ ├── content.json │ │ ├── expensive.json │ │ ├── germanbooks-iso-8859-1.json │ │ ├── germanbooks-utf8.json │ │ ├── routes/ │ │ │ ├── SpringJsonPathCBTTest.xml │ │ │ ├── SpringJsonPathSplitWriteAsStringTest.xml │ │ │ ├── SpringJsonPathSuppressTest.xml │ │ │ ├── SpringJsonPathTransformHeaderNameTest.xml │ │ │ ├── SpringJsonPathTransformResultTypeTest.xml │ │ │ └── SpringJsonPathTransformTest.xml │ │ └── type.json │ ├── camel-jsoup-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-jt400-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jt400.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jt400/ │ │ │ └── springboot/ │ │ │ ├── Jt400ComponentAutoConfiguration.java │ │ │ ├── Jt400ComponentConfiguration.java │ │ │ └── Jt400ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-jte-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── jte.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── jte/ │ │ │ └── springboot/ │ │ │ ├── JteComponentAutoConfiguration.java │ │ │ └── JteComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-kafka-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── kafka.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── kafka/ │ │ │ │ └── springboot/ │ │ │ │ ├── KafkaComponentAutoConfiguration.java │ │ │ │ ├── KafkaComponentConfiguration.java │ │ │ │ ├── KafkaComponentConverter.java │ │ │ │ └── SpringKafkaPropertiesAutoConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ ├── camel/ │ │ │ │ └── component/ │ │ │ │ └── kafka/ │ │ │ │ ├── integration/ │ │ │ │ │ ├── BaseEmbeddedKafkaTestSupport.java │ │ │ │ │ ├── CustomHeaderDeserializer.java │ │ │ │ │ ├── KafkaConsumerAsyncManualCommitIT.java │ │ │ │ │ ├── KafkaConsumerBatchSizeIT.java │ │ │ │ │ ├── KafkaConsumerFullIT.java │ │ │ │ │ ├── KafkaConsumerLastRecordHeaderIT.java │ │ │ │ │ ├── KafkaConsumerManualCommitIT.java │ │ │ │ │ ├── KafkaConsumerRebalanceIT.java │ │ │ │ │ ├── KafkaConsumerTopicIsPatternIT.java │ │ │ │ │ ├── KafkaProducerFullIT.java │ │ │ │ │ ├── KafkaToDIT.java │ │ │ │ │ ├── MockConsumerInterceptor.java │ │ │ │ │ ├── MockProducerInterceptor.java │ │ │ │ │ └── OffsetStateRepositoryConfiguration.java │ │ │ │ └── springboot/ │ │ │ │ ├── BinderKeyFormatTest.java │ │ │ │ └── SpringKafkaPropertiesBridgeTest.java │ │ │ └── kafka/ │ │ │ └── clients/ │ │ │ └── consumer/ │ │ │ └── KafkaConsumerTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-kamelet-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── kamelet.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── kamelet/ │ │ │ │ └── springboot/ │ │ │ │ ├── KameletComponentAutoConfiguration.java │ │ │ │ ├── KameletComponentConfiguration.java │ │ │ │ └── KameletComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── kamelet/ │ │ │ └── springboot/ │ │ │ ├── KameletBasicTest.java │ │ │ ├── KameletComponentTest.java │ │ │ ├── KameletConsumeOnlyTest.java │ │ │ ├── KameletConsumerUoWIssueTest.java │ │ │ ├── KameletDiscoveryTest.java │ │ │ ├── KameletEipAggregateGroovyTest.java │ │ │ ├── KameletEipAggregateJoorTest.java │ │ │ ├── KameletEipAggregateTest.java │ │ │ ├── KameletEipFilterTest.java │ │ │ ├── KameletEipMulticastTest.java │ │ │ ├── KameletEipNoChildrenTest.java │ │ │ ├── KameletEipTest.java │ │ │ ├── KameletGlobalPropertiesTest.java │ │ │ ├── KameletLocalBeanClassFourTest.java │ │ │ ├── KameletLocalBeanClassTest.java │ │ │ ├── KameletLocalBeanClassThreeTest.java │ │ │ ├── KameletLocalBeanClassTwoTest.java │ │ │ ├── KameletLocalBeanConfigureTest.java │ │ │ ├── KameletLocalBeanGroovyExternalTest.java │ │ │ ├── KameletLocalBeanGroovyTest.java │ │ │ ├── KameletLocalBeanIoCTest.java │ │ │ ├── KameletLocalBeanJoorExternalTest.java │ │ │ ├── KameletLocalBeanLanguageTest.java │ │ │ ├── KameletLocalBeanSupplierTest.java │ │ │ ├── KameletLocalBeanTest.java │ │ │ ├── KameletLocalBeanTypeTest.java │ │ │ ├── KameletLocationTest.java │ │ │ ├── KameletRecipientListTest.java │ │ │ ├── KameletRouteDumpTest.java │ │ │ ├── KameletRouteTest.java │ │ │ ├── KameletToDTest.java │ │ │ ├── KameletUoWIssueTest.java │ │ │ ├── KameletValidationTest.java │ │ │ ├── KameletWireTapTest.java │ │ │ └── MyInjectBar.java │ │ └── resources/ │ │ ├── kamelet.test.properties │ │ ├── log4j2.properties │ │ ├── mybar.groovy │ │ ├── mybar.joor │ │ └── upper-kamelet.xml │ ├── camel-keycloak-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── keycloak.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── keycloak/ │ │ │ └── springboot/ │ │ │ ├── KeycloakComponentAutoConfiguration.java │ │ │ ├── KeycloakComponentConfiguration.java │ │ │ └── KeycloakComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-knative-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── knative.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── knative/ │ │ │ └── springboot/ │ │ │ ├── KnativeComponentAutoConfiguration.java │ │ │ ├── KnativeComponentConfiguration.java │ │ │ └── KnativeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-kserve-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── kserve.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── kserve/ │ │ │ └── springboot/ │ │ │ ├── KServeComponentAutoConfiguration.java │ │ │ ├── KServeComponentConfiguration.java │ │ │ └── KServeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-kubernetes-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── kubernetes-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── kubernetes/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── KubernetesClusterServiceAutoConfiguration.java │ │ │ │ └── KubernetesClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── kubernetes/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ └── cluster/ │ │ │ └── KubernetesClusterServiceAutoConfigurationTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-kubernetes-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── kubernetes.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ ├── kubernetes/ │ │ │ │ ├── config_maps/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesConfigMapsComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesConfigMapsComponentConfiguration.java │ │ │ │ │ └── KubernetesConfigMapsComponentConverter.java │ │ │ │ ├── cronjob/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesCronJobComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesCronJobComponentConfiguration.java │ │ │ │ │ └── KubernetesCronJobComponentConverter.java │ │ │ │ ├── customresources/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesCustomResourcesComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesCustomResourcesComponentConfiguration.java │ │ │ │ │ └── KubernetesCustomResourcesComponentConverter.java │ │ │ │ ├── deployments/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesDeploymentsComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesDeploymentsComponentConfiguration.java │ │ │ │ │ └── KubernetesDeploymentsComponentConverter.java │ │ │ │ ├── events/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesEventsComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesEventsComponentConfiguration.java │ │ │ │ │ └── KubernetesEventsComponentConverter.java │ │ │ │ ├── hpa/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesHPAComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesHPAComponentConfiguration.java │ │ │ │ │ └── KubernetesHPAComponentConverter.java │ │ │ │ ├── job/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesJobComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesJobComponentConfiguration.java │ │ │ │ │ └── KubernetesJobComponentConverter.java │ │ │ │ ├── namespaces/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesNamespacesComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesNamespacesComponentConfiguration.java │ │ │ │ │ └── KubernetesNamespacesComponentConverter.java │ │ │ │ ├── nodes/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesNodesComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesNodesComponentConfiguration.java │ │ │ │ │ └── KubernetesNodesComponentConverter.java │ │ │ │ ├── persistent_volumes/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesPersistentVolumesComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesPersistentVolumesComponentConfiguration.java │ │ │ │ │ └── KubernetesPersistentVolumesComponentConverter.java │ │ │ │ ├── persistent_volumes_claims/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesPersistentVolumesClaimsComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesPersistentVolumesClaimsComponentConfiguration.java │ │ │ │ │ └── KubernetesPersistentVolumesClaimsComponentConverter.java │ │ │ │ ├── pods/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesPodsComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesPodsComponentConfiguration.java │ │ │ │ │ └── KubernetesPodsComponentConverter.java │ │ │ │ ├── replication_controllers/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesReplicationControllersComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesReplicationControllersComponentConfiguration.java │ │ │ │ │ └── KubernetesReplicationControllersComponentConverter.java │ │ │ │ ├── resources_quota/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesResourcesQuotaComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesResourcesQuotaComponentConfiguration.java │ │ │ │ │ └── KubernetesResourcesQuotaComponentConverter.java │ │ │ │ ├── secrets/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesSecretsComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesSecretsComponentConfiguration.java │ │ │ │ │ └── KubernetesSecretsComponentConverter.java │ │ │ │ ├── service_accounts/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KubernetesServiceAccountsComponentAutoConfiguration.java │ │ │ │ │ ├── KubernetesServiceAccountsComponentConfiguration.java │ │ │ │ │ └── KubernetesServiceAccountsComponentConverter.java │ │ │ │ └── services/ │ │ │ │ └── springboot/ │ │ │ │ ├── KubernetesServicesComponentAutoConfiguration.java │ │ │ │ ├── KubernetesServicesComponentConfiguration.java │ │ │ │ └── KubernetesServicesComponentConverter.java │ │ │ └── openshift/ │ │ │ ├── build_configs/ │ │ │ │ └── springboot/ │ │ │ │ ├── OpenshiftBuildConfigsComponentAutoConfiguration.java │ │ │ │ ├── OpenshiftBuildConfigsComponentConfiguration.java │ │ │ │ └── OpenshiftBuildConfigsComponentConverter.java │ │ │ ├── builds/ │ │ │ │ └── springboot/ │ │ │ │ ├── OpenshiftBuildsComponentAutoConfiguration.java │ │ │ │ ├── OpenshiftBuildsComponentConfiguration.java │ │ │ │ └── OpenshiftBuildsComponentConverter.java │ │ │ └── deploymentconfigs/ │ │ │ └── springboot/ │ │ │ ├── OpenshiftDeploymentConfigsComponentAutoConfiguration.java │ │ │ ├── OpenshiftDeploymentConfigsComponentConfiguration.java │ │ │ └── OpenshiftDeploymentConfigsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-kudu-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── kudu.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── kudu/ │ │ │ └── springboot/ │ │ │ ├── KuduComponentAutoConfiguration.java │ │ │ ├── KuduComponentConfiguration.java │ │ │ └── KuduComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-langchain4j-agent-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── langchain4j-agent.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── langchain4j/ │ │ │ └── agent/ │ │ │ └── springboot/ │ │ │ ├── LangChain4jAgentComponentAutoConfiguration.java │ │ │ ├── LangChain4jAgentComponentConfiguration.java │ │ │ └── LangChain4jAgentComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-langchain4j-chat-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── langchain4j-chat.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── langchain4j/ │ │ │ └── chat/ │ │ │ └── springboot/ │ │ │ ├── LangChain4jChatComponentAutoConfiguration.java │ │ │ ├── LangChain4jChatComponentConfiguration.java │ │ │ └── LangChain4jChatComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-langchain4j-embeddings-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── langchain4j-embeddings.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── langchain4j/ │ │ │ └── embeddings/ │ │ │ └── springboot/ │ │ │ ├── LangChain4jEmbeddingsComponentAutoConfiguration.java │ │ │ ├── LangChain4jEmbeddingsComponentConfiguration.java │ │ │ └── LangChain4jEmbeddingsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-langchain4j-embeddingstore-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── langchain4j-embeddingstore.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── langchain4j/ │ │ │ └── embeddingstore/ │ │ │ └── springboot/ │ │ │ ├── LangChain4jEmbeddingStoreComponentAutoConfiguration.java │ │ │ ├── LangChain4jEmbeddingStoreComponentConfiguration.java │ │ │ └── LangChain4jEmbeddingStoreComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-langchain4j-tokenizer-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-langchain4j-tools-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── langchain4j-tools.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── langchain4j/ │ │ │ └── tools/ │ │ │ └── springboot/ │ │ │ ├── LangChain4jToolsComponentAutoConfiguration.java │ │ │ ├── LangChain4jToolsComponentConfiguration.java │ │ │ └── LangChain4jToolsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-langchain4j-web-search-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── langchain4j-web-search.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── langchain4j/ │ │ │ └── web/ │ │ │ └── search/ │ │ │ └── springboot/ │ │ │ ├── LangChain4jWebSearchComponentAutoConfiguration.java │ │ │ └── LangChain4jWebSearchComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-language-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── language.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── language/ │ │ │ └── springboot/ │ │ │ ├── LanguageComponentAutoConfiguration.java │ │ │ └── LanguageComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ldap-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ldap.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ldap/ │ │ │ └── springboot/ │ │ │ ├── LdapComponentAutoConfiguration.java │ │ │ └── LdapComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ldif-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ldif.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ldif/ │ │ │ └── springboot/ │ │ │ ├── LdifComponentAutoConfiguration.java │ │ │ └── LdifComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-leveldb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── leveldb.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-log-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── log.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── log/ │ │ │ └── springboot/ │ │ │ ├── LogComponentAutoConfiguration.java │ │ │ ├── LogComponentConfiguration.java │ │ │ └── LogComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-lra-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── lra.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── service/ │ │ │ └── lra/ │ │ │ └── springboot/ │ │ │ ├── LraServiceAutoConfiguration.java │ │ │ └── LraServiceConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-lucene-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── lucene.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── lucene/ │ │ │ └── springboot/ │ │ │ ├── LuceneComponentAutoConfiguration.java │ │ │ ├── LuceneComponentConfiguration.java │ │ │ └── LuceneComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-lumberjack-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── lumberjack.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── lumberjack/ │ │ │ └── springboot/ │ │ │ ├── LumberjackComponentAutoConfiguration.java │ │ │ ├── LumberjackComponentConfiguration.java │ │ │ └── LumberjackComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-lzf-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── lzf.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── lzf/ │ │ │ └── springboot/ │ │ │ ├── LZFDataFormatAutoConfiguration.java │ │ │ └── LZFDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mail-microsoft-oauth-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-mail-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mail.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── mail/ │ │ │ │ └── springboot/ │ │ │ │ ├── MailComponentAutoConfiguration.java │ │ │ │ ├── MailComponentConfiguration.java │ │ │ │ └── MailComponentConverter.java │ │ │ └── dataformat/ │ │ │ └── mime/ │ │ │ └── multipart/ │ │ │ └── springboot/ │ │ │ ├── MimeMultipartDataFormatAutoConfiguration.java │ │ │ └── MimeMultipartDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-management-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-mapstruct-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mapstruct.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mapstruct/ │ │ │ └── springboot/ │ │ │ ├── MapstructComponentAutoConfiguration.java │ │ │ ├── MapstructComponentConfiguration.java │ │ │ ├── MapstructComponentConverter.java │ │ │ └── MapstructMappingAutoConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-master-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── master.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── master/ │ │ │ │ └── springboot/ │ │ │ │ ├── MasterComponentAutoConfiguration.java │ │ │ │ ├── MasterComponentConfiguration.java │ │ │ │ └── MasterComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── master/ │ │ │ └── springboot/ │ │ │ ├── EndpointUriEncodingTest.java │ │ │ └── MasterComponentTest.java │ │ └── resources/ │ │ └── log4j2.properties │ ├── camel-mdc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mdc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── mdc/ │ │ │ └── starter/ │ │ │ ├── CamelMDC.java │ │ │ ├── MDCAutoConfiguration.java │ │ │ └── MDCConfigurationProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-metrics-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── metrics.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── metrics/ │ │ │ └── springboot/ │ │ │ ├── MetricsComponentAutoConfiguration.java │ │ │ ├── MetricsComponentConfiguration.java │ │ │ └── MetricsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-micrometer-observability-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── micrometer-observability.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── micrometer/ │ │ │ └── observability/ │ │ │ └── starter/ │ │ │ ├── CamelMicrometerObservability.java │ │ │ ├── MicrometerObservabilityAutoConfiguration.java │ │ │ ├── MicrometerObservabilityConditionalAutoConfiguration.java │ │ │ └── MicrometerObservabilityConfigurationProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-micrometer-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── micrometer.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── micrometer/ │ │ │ └── springboot/ │ │ │ ├── MicrometerComponentAutoConfiguration.java │ │ │ ├── MicrometerComponentConfiguration.java │ │ │ ├── MicrometerComponentConverter.java │ │ │ ├── MicrometerTagsAutoConfiguration.java │ │ │ └── metrics/ │ │ │ ├── CamelMetricsAutoConfiguration.java │ │ │ └── CamelMetricsConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-milo-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── milo.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── milo/ │ │ │ ├── browse/ │ │ │ │ └── springboot/ │ │ │ │ ├── MiloBrowseComponentAutoConfiguration.java │ │ │ │ ├── MiloBrowseComponentConfiguration.java │ │ │ │ └── MiloBrowseComponentConverter.java │ │ │ ├── client/ │ │ │ │ └── springboot/ │ │ │ │ ├── MiloClientComponentAutoConfiguration.java │ │ │ │ ├── MiloClientComponentConfiguration.java │ │ │ │ └── MiloClientComponentConverter.java │ │ │ └── server/ │ │ │ └── springboot/ │ │ │ ├── MiloServerComponentAutoConfiguration.java │ │ │ ├── MiloServerComponentConfiguration.java │ │ │ └── MiloServerComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-milvus-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── milvus.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── milvus/ │ │ │ └── springboot/ │ │ │ ├── MilvusComponentAutoConfiguration.java │ │ │ ├── MilvusComponentConfiguration.java │ │ │ └── MilvusComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mina-sftp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── mina-sftp.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── file/ │ │ │ │ └── remote/ │ │ │ │ └── mina/ │ │ │ │ └── springboot/ │ │ │ │ ├── MinaSftpComponentAutoConfiguration.java │ │ │ │ └── MinaSftpComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── remote/ │ │ │ └── mina/ │ │ │ └── springboot/ │ │ │ ├── BaseMinaSftp.java │ │ │ ├── MinaSftpComponentAutoConfigurationTest.java │ │ │ ├── MinaSftpConfigurationPropertiesTest.java │ │ │ ├── MinaSftpEmbeddedService.java │ │ │ ├── MinaSftpEndpointOptionsTest.java │ │ │ └── MinaSftpSimpleProducerTest.java │ │ └── resources/ │ │ ├── hostkey.pem │ │ └── log4j2.properties │ ├── camel-mina-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mina.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mina/ │ │ │ └── springboot/ │ │ │ ├── MinaComponentAutoConfiguration.java │ │ │ ├── MinaComponentConfiguration.java │ │ │ └── MinaComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-minio-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── minio.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── minio/ │ │ │ └── springboot/ │ │ │ ├── MinioComponentAutoConfiguration.java │ │ │ ├── MinioComponentConfiguration.java │ │ │ └── MinioComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mllp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mllp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mllp/ │ │ │ └── springboot/ │ │ │ ├── MllpComponentAutoConfiguration.java │ │ │ ├── MllpComponentConfiguration.java │ │ │ └── MllpComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mock-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mock.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mock/ │ │ │ └── springboot/ │ │ │ ├── MockComponentAutoConfiguration.java │ │ │ ├── MockComponentConfiguration.java │ │ │ └── MockComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mongodb-gridfs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mongodb-gridfs.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mongodb/ │ │ │ └── gridfs/ │ │ │ └── springboot/ │ │ │ ├── GridFsComponentAutoConfiguration.java │ │ │ └── GridFsComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mongodb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mongodb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mongodb/ │ │ │ └── springboot/ │ │ │ ├── MongoDbComponentAutoConfiguration.java │ │ │ ├── MongoDbComponentConfiguration.java │ │ │ └── MongoDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mustache-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mustache.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mustache/ │ │ │ └── springboot/ │ │ │ ├── MustacheComponentAutoConfiguration.java │ │ │ ├── MustacheComponentConfiguration.java │ │ │ └── MustacheComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mvel-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mvel.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── mvel/ │ │ │ │ └── springboot/ │ │ │ │ ├── MvelComponentAutoConfiguration.java │ │ │ │ └── MvelComponentConfiguration.java │ │ │ └── language/ │ │ │ └── mvel/ │ │ │ └── springboot/ │ │ │ ├── MvelLanguageAutoConfiguration.java │ │ │ └── MvelLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-mybatis-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── mybatis.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── mybatis/ │ │ │ └── springboot/ │ │ │ ├── MyBatisBeanComponentAutoConfiguration.java │ │ │ ├── MyBatisBeanComponentConfiguration.java │ │ │ ├── MyBatisBeanComponentConverter.java │ │ │ ├── MyBatisComponentAutoConfiguration.java │ │ │ ├── MyBatisComponentConfiguration.java │ │ │ └── MyBatisComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-nats-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── nats.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── nats/ │ │ │ └── springboot/ │ │ │ ├── NatsComponentAutoConfiguration.java │ │ │ ├── NatsComponentConfiguration.java │ │ │ └── NatsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-neo4j-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── neo4j.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── neo4j/ │ │ │ └── springboot/ │ │ │ ├── Neo4jComponentAutoConfiguration.java │ │ │ ├── Neo4jComponentConfiguration.java │ │ │ └── Neo4jComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-netty-http-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── netty-http.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── netty/ │ │ │ └── http/ │ │ │ └── springboot/ │ │ │ ├── NettyHttpComponentAutoConfiguration.java │ │ │ ├── NettyHttpComponentConfiguration.java │ │ │ └── NettyHttpComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-netty-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── netty.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── netty/ │ │ │ │ └── springboot/ │ │ │ │ ├── NettyComponentAutoConfiguration.java │ │ │ │ ├── NettyComponentConfiguration.java │ │ │ │ └── NettyComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── netty/ │ │ │ └── springboot/ │ │ │ └── NettyComponentConfigurationTest.java │ │ └── resources/ │ │ ├── keystore.jks │ │ └── nettycomponentconfigurationtest.properties │ ├── camel-oaipmh-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── oaipmh.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── oaipmh/ │ │ │ └── component/ │ │ │ └── springboot/ │ │ │ ├── OAIPMHComponentAutoConfiguration.java │ │ │ └── OAIPMHComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-observability-services-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ ├── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ │ └── config/ │ │ └── application.properties │ ├── camel-observation-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── observation.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── observation/ │ │ │ │ └── starter/ │ │ │ │ ├── CamelObservation.java │ │ │ │ ├── ObservationAutoConfiguration.java │ │ │ │ ├── ObservationConditionalAutoConfiguration.java │ │ │ │ └── ObservationConfigurationProperties.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── observation/ │ │ └── starter/ │ │ └── ObservationAutoConfigurationTest.java │ ├── camel-ocsf-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ocsf.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── ocsf/ │ │ │ └── springboot/ │ │ │ ├── OcsfDataFormatAutoConfiguration.java │ │ │ └── OcsfDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ognl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ognl.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── ognl/ │ │ │ └── springboot/ │ │ │ ├── OgnlLanguageAutoConfiguration.java │ │ │ └── OgnlLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-olingo2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── olingo2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── olingo2/ │ │ │ └── springboot/ │ │ │ ├── Olingo2ComponentAutoConfiguration.java │ │ │ ├── Olingo2ComponentConfiguration.java │ │ │ └── Olingo2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-olingo4-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── olingo4.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── olingo4/ │ │ │ └── springboot/ │ │ │ ├── Olingo4ComponentAutoConfiguration.java │ │ │ ├── Olingo4ComponentConfiguration.java │ │ │ └── Olingo4ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-once-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── once.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── once/ │ │ │ └── springboot/ │ │ │ ├── OnceComponentAutoConfiguration.java │ │ │ └── OnceComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-openai-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── openai.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── openai/ │ │ │ └── springboot/ │ │ │ ├── OpenAIComponentAutoConfiguration.java │ │ │ └── OpenAIComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-openapi-java-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── openapi-java.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── springboot/ │ │ │ │ └── openapi/ │ │ │ │ ├── OpenApiAutoConfiguration.java │ │ │ │ └── OpenApiConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── openapi/ │ │ │ ├── BookOrder.java │ │ │ ├── DayResponse.java │ │ │ ├── DummyBookService.java │ │ │ ├── DummyRestConsumerFactory.java │ │ │ ├── DummyUserService.java │ │ │ ├── LineItem.java │ │ │ ├── RestOpenApiModelApiSecurityRequirementsTest.java │ │ │ ├── RestOpenApiReaderApiDocsOverrideTest.java │ │ │ ├── RestOpenApiReaderApiDocsTest.java │ │ │ ├── RestOpenApiReaderContextPathTest.java │ │ │ ├── RestOpenApiReaderDayOfWeekTest.java │ │ │ ├── RestOpenApiReaderEnableVendorExtensionTest.java │ │ │ ├── RestOpenApiReaderFileResponseModelTest.java │ │ │ ├── RestOpenApiReaderModelApiSecurityTest.java │ │ │ ├── RestOpenApiReaderModelBookOrderTest.java │ │ │ ├── RestOpenApiReaderModelTest.java │ │ │ ├── RestOpenApiReaderOverrideHostApiDocsTest.java │ │ │ ├── RestOpenApiReaderPropertyPlaceholderTest.java │ │ │ ├── RestOpenApiReaderTest.java │ │ │ ├── RestOpenApiV2SecuritySchemesTest.java │ │ │ ├── RestOpenApiV3SecuritySchemesTest.java │ │ │ ├── SpringRestOpenApiReaderModelApiSecurityTest.java │ │ │ ├── User.java │ │ │ ├── model/ │ │ │ │ ├── CustomData.java │ │ │ │ ├── GenericComplexRequestType.java │ │ │ │ ├── GenericData.java │ │ │ │ ├── SampleComplexRequestType.java │ │ │ │ └── SampleComplexResponseType.java │ │ │ └── producer/ │ │ │ ├── DummyRestProducerFactory.java │ │ │ ├── RestOpenApiGetTest.java │ │ │ └── RestOpenApiGetUriParamTest.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── hello-api.json │ │ ├── logback.xml │ │ ├── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── openapi/ │ │ │ └── SpringRestOpenApiReaderModelApiSecurityTest.xml │ │ └── petstore-v3.json │ ├── camel-openapi-validator-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-opensearch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── opensearch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── opensearch/ │ │ │ └── springboot/ │ │ │ ├── OpensearchComponentAutoConfiguration.java │ │ │ ├── OpensearchComponentConfiguration.java │ │ │ └── OpensearchComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-openstack-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── openstack.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── openstack/ │ │ │ ├── cinder/ │ │ │ │ └── springboot/ │ │ │ │ ├── CinderComponentAutoConfiguration.java │ │ │ │ └── CinderComponentConfiguration.java │ │ │ ├── glance/ │ │ │ │ └── springboot/ │ │ │ │ ├── GlanceComponentAutoConfiguration.java │ │ │ │ └── GlanceComponentConfiguration.java │ │ │ ├── keystone/ │ │ │ │ └── springboot/ │ │ │ │ ├── KeystoneComponentAutoConfiguration.java │ │ │ │ └── KeystoneComponentConfiguration.java │ │ │ ├── neutron/ │ │ │ │ └── springboot/ │ │ │ │ ├── NeutronComponentAutoConfiguration.java │ │ │ │ └── NeutronComponentConfiguration.java │ │ │ ├── nova/ │ │ │ │ └── springboot/ │ │ │ │ ├── NovaComponentAutoConfiguration.java │ │ │ │ └── NovaComponentConfiguration.java │ │ │ └── swift/ │ │ │ └── springboot/ │ │ │ ├── SwiftComponentAutoConfiguration.java │ │ │ └── SwiftComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-opentelemetry-metrics-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── opentelemetry-metrics.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── opentelemetry/ │ │ │ │ └── metrics/ │ │ │ │ └── springboot/ │ │ │ │ ├── CamelMetricsAutoConfiguration.java │ │ │ │ ├── CamelMetricsConfiguration.java │ │ │ │ ├── OpenTelemetryComponentAutoConfiguration.java │ │ │ │ ├── OpenTelemetryComponentConfiguration.java │ │ │ │ └── OpenTelemetryComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── opentelemetry/ │ │ └── metrics/ │ │ └── springboot/ │ │ ├── AbstractOpenTelemetryTest.java │ │ ├── CamelOpenTelemetryExtension.java │ │ ├── CounterRouteTest.java │ │ ├── eventnotifier/ │ │ │ ├── OpenTelemetryExchangeEventNotifierTest.java │ │ │ └── OpenTelemetryRouteEventNotifierTest.java │ │ ├── messagehistory/ │ │ │ └── MessageHistoryTest.java │ │ └── routepolicy/ │ │ ├── OpenTelemetryContextOnlyPolicyTest.java │ │ └── OpenTelemetryRoutePolicyTest.java │ ├── camel-opentelemetry-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── opentelemetry.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── opentelemetry/ │ │ │ └── starter/ │ │ │ ├── CamelOpenTelemetry.java │ │ │ ├── OpenTelemetryAutoConfiguration.java │ │ │ └── OpenTelemetryConfigurationProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-opentelemetry2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── opentelemetry2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── opentelemetry2/ │ │ │ └── starter/ │ │ │ ├── CamelOpenTelemetry2.java │ │ │ ├── OpenTelemetry2AutoConfiguration.java │ │ │ └── OpenTelemetry2ConfigurationProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-optaplanner-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── optaplanner.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── optaplanner/ │ │ │ └── springboot/ │ │ │ ├── OptaPlannerComponentAutoConfiguration.java │ │ │ └── OptaPlannerComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-paho-mqtt5-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── paho-mqtt5.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── paho/ │ │ │ └── mqtt5/ │ │ │ └── springboot/ │ │ │ ├── PahoMqtt5ComponentAutoConfiguration.java │ │ │ ├── PahoMqtt5ComponentConfiguration.java │ │ │ └── PahoMqtt5ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-paho-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── paho.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── paho/ │ │ │ └── springboot/ │ │ │ ├── PahoComponentAutoConfiguration.java │ │ │ ├── PahoComponentConfiguration.java │ │ │ └── PahoComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-parquet-avro-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── parquet-avro.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── parquet/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ ├── ParquetAvroDataFormatAutoConfiguration.java │ │ │ └── ParquetAvroDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-pdf-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── pdf.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── pdf/ │ │ │ └── springboot/ │ │ │ ├── PdfComponentAutoConfiguration.java │ │ │ └── PdfComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-pg-replication-slot-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── pg-replication-slot.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── pg/ │ │ │ └── replication/ │ │ │ └── slot/ │ │ │ └── springboot/ │ │ │ ├── PgReplicationSlotComponentAutoConfiguration.java │ │ │ └── PgReplicationSlotComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-pgevent-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── pgevent.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── pgevent/ │ │ │ └── springboot/ │ │ │ ├── PgEventComponentAutoConfiguration.java │ │ │ └── PgEventComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-pinecone-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── pinecone.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── pinecone/ │ │ │ └── springboot/ │ │ │ ├── PineconeVectorDbComponentAutoConfiguration.java │ │ │ ├── PineconeVectorDbComponentConfiguration.java │ │ │ └── PineconeVectorDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-platform-http-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ ├── platform-http.adoc │ │ │ │ └── platform-http.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── platform/ │ │ │ │ └── http/ │ │ │ │ └── springboot/ │ │ │ │ ├── CamelRequestHandlerMapping.java │ │ │ │ ├── PlatformHttpComponentAutoConfiguration.java │ │ │ │ ├── PlatformHttpComponentConfiguration.java │ │ │ │ ├── PlatformHttpComponentConverter.java │ │ │ │ ├── PlatformHttpMessage.java │ │ │ │ ├── SpringBootPlatformHttpAutoConfiguration.java │ │ │ │ ├── SpringBootPlatformHttpBinding.java │ │ │ │ ├── SpringBootPlatformHttpConstants.java │ │ │ │ ├── SpringBootPlatformHttpConsumer.java │ │ │ │ ├── SpringBootPlatformHttpEngine.java │ │ │ │ ├── SpringBootPlatformWebMvcConfiguration.java │ │ │ │ └── customizer/ │ │ │ │ ├── UndertowAccessLogConfiguration.java │ │ │ │ └── UndertowAccessLogProperties.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── platform/ │ │ │ └── http/ │ │ │ └── springboot/ │ │ │ ├── PlatformHttpAsyncRequestHandlingTest.java │ │ │ ├── PlatformHttpBase.java │ │ │ ├── PlatformHttpBinaryUploadTest.java │ │ │ ├── PlatformHttpStreamingTest.java │ │ │ ├── SpringBootPlatformHttpAsyncNotUsableTest.java │ │ │ ├── SpringBootPlatformHttpBridgedEndpointTest.java │ │ │ ├── SpringBootPlatformHttpCamelIntegrationsTest.java │ │ │ ├── SpringBootPlatformHttpCamelVirtualThreadsIT.java │ │ │ ├── SpringBootPlatformHttpCertificationTest.java │ │ │ ├── SpringBootPlatformHttpContextPathTest.java │ │ │ ├── SpringBootPlatformHttpCookiesTest.java │ │ │ ├── SpringBootPlatformHttpCorsCredentialsTest.java │ │ │ ├── SpringBootPlatformHttpCorsTest.java │ │ │ ├── SpringBootPlatformHttpEngineTest.java │ │ │ ├── SpringBootPlatformHttpHandleWriteErrorTest.java │ │ │ ├── SpringBootPlatformHttpHeaderFilterStrategyTest.java │ │ │ ├── SpringBootPlatformHttpJacksonConverterTest.java │ │ │ ├── SpringBootPlatformHttpMultipleExecutorsTest.java │ │ │ ├── SpringBootPlatformHttpMultipleExecutorsVirtualThreadsIT.java │ │ │ ├── SpringBootPlatformHttpOptionsTest.java │ │ │ ├── SpringBootPlatformHttpProxyTest.java │ │ │ ├── SpringBootPlatformHttpRequestTimeoutTest.java │ │ │ ├── SpringBootPlatformHttpResponseCodeTest.java │ │ │ ├── SpringBootPlatformHttpRestDSLTest.java │ │ │ ├── SpringBootPlatformHttpServerRequestValidationFalseTest.java │ │ │ ├── SpringBootPlatformHttpServerRequestValidationTrueTest.java │ │ │ ├── SpringBootPlatformHttpSessionTest.java │ │ │ ├── SpringBootPlatformHttpSpringSessionTest.java │ │ │ ├── SpringBootPlatformHttpTest.java │ │ │ ├── SpringBootPlatformHttpTypeConverterTest.java │ │ │ ├── SpringBootPlatformHttpValidationTest.java │ │ │ ├── SpringBootPlatformHttpVirtualThreadsIT.java │ │ │ └── SpringBootPlatformHttpVirtualThreadsOptimizedIT.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-plc4x-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── plc4x.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── plc4x/ │ │ │ └── springboot/ │ │ │ ├── Plc4XComponentAutoConfiguration.java │ │ │ └── Plc4XComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-pqc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── pqc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── pqc/ │ │ │ ├── dataformat/ │ │ │ │ └── springboot/ │ │ │ │ ├── PQCDataFormatAutoConfiguration.java │ │ │ │ ├── PQCDataFormatConfiguration.java │ │ │ │ └── PQCDataFormatConverter.java │ │ │ └── springboot/ │ │ │ ├── PQCComponentAutoConfiguration.java │ │ │ ├── PQCComponentConfiguration.java │ │ │ └── PQCComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-printer-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── printer.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── printer/ │ │ │ └── springboot/ │ │ │ ├── PrinterComponentAutoConfiguration.java │ │ │ └── PrinterComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-protobuf-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── protobuf.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── protobuf/ │ │ │ └── springboot/ │ │ │ ├── ProtobufDataFormatAutoConfiguration.java │ │ │ └── ProtobufDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-pubnub-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── pubnub.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── pubnub/ │ │ │ └── springboot/ │ │ │ ├── PubNubComponentAutoConfiguration.java │ │ │ ├── PubNubComponentConfiguration.java │ │ │ └── PubNubComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-pulsar-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── pulsar.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── pulsar/ │ │ │ └── springboot/ │ │ │ ├── PulsarComponentAutoConfiguration.java │ │ │ ├── PulsarComponentConfiguration.java │ │ │ └── PulsarComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-python-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── python.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── python/ │ │ │ └── springboot/ │ │ │ ├── PythonLanguageAutoConfiguration.java │ │ │ └── PythonLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-qdrant-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── qdrant.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── qdrant/ │ │ │ └── springboot/ │ │ │ ├── QdrantComponentAutoConfiguration.java │ │ │ ├── QdrantComponentConfiguration.java │ │ │ └── QdrantComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-quartz-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── quartz.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── quartz/ │ │ │ │ └── springboot/ │ │ │ │ ├── QuartzComponentAutoConfiguration.java │ │ │ │ ├── QuartzComponentConfiguration.java │ │ │ │ └── QuartzComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── quartz/ │ │ └── springboot/ │ │ ├── BaseQuartzTest.java │ │ ├── DelegateEndpointQuartzTest.java │ │ ├── FileConsumerQuartzSchedulerRestartTest.java │ │ ├── FileConsumerQuartzSchedulerTest.java │ │ ├── FromFileBase.java │ │ ├── FromFileQuartzSchedulerTest.java │ │ ├── MultiplePoliciesOnRouteTest.java │ │ ├── QuartUnderscoreTimerNameTest.java │ │ ├── QuartzAddDynamicRouteTest.java │ │ ├── QuartzAddRoutesAfterCamelContextStartedTest.java │ │ ├── QuartzAutoStartTest.java │ │ ├── QuartzCronMappingTest.java │ │ ├── QuartzCronRoute2Test.java │ │ ├── QuartzCronRouteDurableJobTest.java │ │ ├── QuartzCronRouteFireNowTest.java │ │ ├── QuartzCronRouteTest.java │ │ ├── QuartzCronRouteWithSmallCacheTest.java │ │ ├── QuartzCronTriggerRouteTest.java │ │ ├── QuartzCustomCalendarFireTest.java │ │ ├── QuartzCustomCalendarNoFireTest.java │ │ ├── QuartzInterruptTest.java │ │ ├── QuartzJobRouteUnderscoreTest.java │ │ ├── QuartzManagementTest.java │ │ ├── QuartzManuallyTriggerJobTest.java │ │ ├── QuartzRepeatIntervalTest.java │ │ ├── QuartzRouteFireNowOnlyOnceTest.java │ │ ├── QuartzRouteFireNowTest.java │ │ ├── QuartzRouteRestartTest.java │ │ ├── QuartzRouteTest.java │ │ ├── QuartzSimpleRouteTest.java │ │ ├── QuartzStatefulJobRouteTest.java │ │ ├── QuartzStopRouteTest.java │ │ ├── QuartzSuspendRouteTest.java │ │ ├── QuartzTriggerParametersTest.java │ │ ├── RouteAutoStopFalseCronScheduledPolicyTest.java │ │ ├── SimpleScheduledCombinedRoutePolicyTest.java │ │ └── StatefulQuartzRouteTest.java │ ├── camel-quickfix-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── quickfix.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── quickfixj/ │ │ │ └── springboot/ │ │ │ ├── QuickfixjComponentAutoConfiguration.java │ │ │ ├── QuickfixjComponentConfiguration.java │ │ │ └── QuickfixjComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-reactive-streams-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── reactive-streams.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── reactive/ │ │ │ │ └── streams/ │ │ │ │ └── springboot/ │ │ │ │ ├── ReactiveStreamsComponentAutoConfiguration.java │ │ │ │ ├── ReactiveStreamsComponentConfiguration.java │ │ │ │ ├── ReactiveStreamsComponentConverter.java │ │ │ │ └── ReactiveStreamsServiceAutoConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── reactive/ │ │ │ └── streams/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ ├── ReactiveStreamsAutoConfigurationTest.java │ │ │ ├── ReactiveStreamsDefaultEngineTest.java │ │ │ ├── ReactiveStreamsNamedEngineTest.java │ │ │ ├── ReactiveStreamsRegistryEngineTest.java │ │ │ └── support/ │ │ │ └── ReactiveStreamsServiceTestSupport.java │ │ └── resources/ │ │ ├── application.properties │ │ └── logback.xml │ ├── camel-reactor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── reactor.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-ref-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ref.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ref/ │ │ │ └── springboot/ │ │ │ ├── RefComponentAutoConfiguration.java │ │ │ └── RefComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-resilience4j-micrometer-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── resilience4j/ │ │ │ └── micrometer/ │ │ │ └── Resilience4jMicrometerAutoConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-resilience4j-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── resilience4j.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── resilience/ │ │ │ └── springboot/ │ │ │ └── ResilienceAutoConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-rest-openapi-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── rest-openapi.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── rest/ │ │ │ └── openapi/ │ │ │ └── springboot/ │ │ │ ├── RestOpenApiComponentAutoConfiguration.java │ │ │ ├── RestOpenApiComponentConfiguration.java │ │ │ └── RestOpenApiComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-rest-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── rest.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── rest/ │ │ │ │ └── springboot/ │ │ │ │ ├── RestApiComponentAutoConfiguration.java │ │ │ │ ├── RestApiComponentConfiguration.java │ │ │ │ ├── RestComponentAutoConfiguration.java │ │ │ │ ├── RestComponentConfiguration.java │ │ │ │ └── RestComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── model/ │ │ │ └── rest/ │ │ │ └── springboot/ │ │ │ └── CamelRestTest.java │ │ └── resources/ │ │ ├── application.properties │ │ └── logback.xml │ ├── camel-robotframework-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── robotframework.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── robotframework/ │ │ │ └── springboot/ │ │ │ ├── RobotFrameworkComponentAutoConfiguration.java │ │ │ ├── RobotFrameworkComponentConfiguration.java │ │ │ └── RobotFrameworkComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-rocketmq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── rocketmq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── rocketmq/ │ │ │ └── springboot/ │ │ │ ├── RocketMQComponentAutoConfiguration.java │ │ │ └── RocketMQComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-rss-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── rss.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── rss/ │ │ │ │ └── springboot/ │ │ │ │ ├── RssComponentAutoConfiguration.java │ │ │ │ └── RssComponentConfiguration.java │ │ │ └── dataformat/ │ │ │ └── rss/ │ │ │ └── springboot/ │ │ │ ├── RssDataFormatAutoConfiguration.java │ │ │ └── RssDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-rxjava-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── rxjava.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-saga-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── saga.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── saga/ │ │ │ └── springboot/ │ │ │ ├── SagaComponentAutoConfiguration.java │ │ │ └── SagaComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-salesforce-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── salesforce.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── salesforce/ │ │ │ │ └── springboot/ │ │ │ │ ├── SalesforceComponentAutoConfiguration.java │ │ │ │ ├── SalesforceComponentConfiguration.java │ │ │ │ └── SalesforceComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── salesforce/ │ │ │ └── springboot/ │ │ │ ├── AbstractSalesforceTestBase.java │ │ │ ├── LoginConfigHelper.java │ │ │ ├── SalesforceComponentTest.java │ │ │ └── dto/ │ │ │ └── generated/ │ │ │ ├── Account.java │ │ │ ├── Account_IndustryEnum.java │ │ │ ├── Asset.java │ │ │ ├── Contact.java │ │ │ ├── Document.java │ │ │ ├── Line_Item__c.java │ │ │ ├── MSPTest.java │ │ │ ├── Merchandise__c.java │ │ │ ├── QueryRecordsAccount.java │ │ │ ├── QueryRecordsContact.java │ │ │ ├── QueryRecordsLine_Item__c.java │ │ │ ├── RecordType.java │ │ │ ├── StringMSPTest.java │ │ │ ├── Task.java │ │ │ └── User.java │ │ └── resources/ │ │ └── rawpayload.properties │ ├── camel-sap-netweaver-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── sap-netweaver.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── sap/ │ │ │ └── netweaver/ │ │ │ └── springboot/ │ │ │ ├── NetWeaverComponentAutoConfiguration.java │ │ │ └── NetWeaverComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-saxon-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── saxon.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ ├── component/ │ │ │ │ │ └── xquery/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── XQueryComponentAutoConfiguration.java │ │ │ │ │ ├── XQueryComponentConfiguration.java │ │ │ │ │ └── XQueryComponentConverter.java │ │ │ │ └── language/ │ │ │ │ └── xquery/ │ │ │ │ └── springboot/ │ │ │ │ ├── XQueryLanguageAutoConfiguration.java │ │ │ │ └── XQueryLanguageConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── xquery/ │ │ │ └── springboot/ │ │ │ ├── BeanWithXQueryInjectionTest.java │ │ │ ├── FromFileBase.java │ │ │ ├── SaxonLanguageExtensionFunctionsTest.java │ │ │ ├── SaxonXPathSplitTest.java │ │ │ ├── SaxonXPathTest.java │ │ │ ├── SoapPayloadBean.java │ │ │ ├── SoapPayloadBeanTest.java │ │ │ ├── XPathHeaderEnableSaxonJavaDslTest.java │ │ │ ├── XPathSplitChoicePerformanceTest.java │ │ │ ├── XQueryConcurrencyTest.java │ │ │ ├── XQueryFilterTest.java │ │ │ ├── XQueryFromFileExceptionTest.java │ │ │ ├── XQueryFromFileTest.java │ │ │ ├── XQueryHeaderNameResultTypeAndNamespaceTest.java │ │ │ ├── XQueryHeaderNameTest.java │ │ │ ├── XQueryLanguageFromFileTest.java │ │ │ ├── XQueryPredicateFilterTest.java │ │ │ ├── XQueryPropogateHeadersTest.java │ │ │ ├── XQueryRecipientListTest.java │ │ │ ├── XQueryResourceTest.java │ │ │ ├── XQueryTransformIssueTest.java │ │ │ ├── XQueryTransformTest.java │ │ │ ├── XQueryTransformTextTest.java │ │ │ ├── XQueryURLBasedConcurrencyTest.java │ │ │ ├── XQueryWithExtensionTest.java │ │ │ ├── XQueryWithFlworTest.java │ │ │ └── XQueryWithNamespacesFilterTest.java │ │ └── resources/ │ │ ├── log4j2.properties │ │ ├── myinput.xml │ │ ├── myxquery.txt │ │ ├── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── xquery/ │ │ │ ├── XQueryComponentConfigurationTest.xml │ │ │ ├── XQueryEndpointConfigurationTest.xml │ │ │ ├── camelContext.xml │ │ │ ├── flwor-expression.xquery │ │ │ ├── myTransform.xquery │ │ │ ├── transform.xquery │ │ │ ├── transformWithExtension.xquery │ │ │ ├── transform_with_headers.xquery │ │ │ ├── xqueryExampleTest.xml │ │ │ └── xqueryWithExplicitTypeContext.xml │ │ └── payload.xml │ ├── camel-scheduler-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── scheduler.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── scheduler/ │ │ │ └── springboot/ │ │ │ ├── SchedulerComponentAutoConfiguration.java │ │ │ └── SchedulerComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-schematron-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── schematron.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── schematron/ │ │ │ └── springboot/ │ │ │ ├── SchematronComponentAutoConfiguration.java │ │ │ └── SchematronComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-seda-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── seda.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── seda/ │ │ │ └── springboot/ │ │ │ ├── SedaComponentAutoConfiguration.java │ │ │ ├── SedaComponentConfiguration.java │ │ │ └── SedaComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-servicenow-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── servicenow.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── servicenow/ │ │ │ └── springboot/ │ │ │ ├── ServiceNowComponentAutoConfiguration.java │ │ │ ├── ServiceNowComponentConfiguration.java │ │ │ └── ServiceNowComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-servlet-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── servlet.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── servlet/ │ │ │ └── springboot/ │ │ │ ├── ServletComponentAutoConfiguration.java │ │ │ ├── ServletComponentConfiguration.java │ │ │ ├── ServletComponentConverter.java │ │ │ ├── ServletMappingAutoConfiguration.java │ │ │ └── ServletMappingConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-shiro-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── shiro.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-sjms-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── sjms.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── sjms/ │ │ │ └── springboot/ │ │ │ ├── SjmsComponentAutoConfiguration.java │ │ │ ├── SjmsComponentConfiguration.java │ │ │ └── SjmsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-sjms2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── sjms2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── sjms2/ │ │ │ └── springboot/ │ │ │ ├── Sjms2ComponentAutoConfiguration.java │ │ │ ├── Sjms2ComponentConfiguration.java │ │ │ └── Sjms2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-slack-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── slack.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── slack/ │ │ │ │ └── springboot/ │ │ │ │ ├── SlackComponentAutoConfiguration.java │ │ │ │ └── SlackComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── slack/ │ │ └── springboot/ │ │ └── SlackProducerTest.java │ ├── camel-smb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── smb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── smb/ │ │ │ └── springboot/ │ │ │ ├── SmbComponentAutoConfiguration.java │ │ │ └── SmbComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-smooks-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── smooks.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── smooks/ │ │ │ │ └── springboot/ │ │ │ │ ├── SmooksComponentAutoConfiguration.java │ │ │ │ ├── SmooksComponentConfiguration.java │ │ │ │ └── SmooksComponentConverter.java │ │ │ └── dataformat/ │ │ │ └── smooks/ │ │ │ └── springboot/ │ │ │ ├── SmooksDataFormatAutoConfiguration.java │ │ │ └── SmooksDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-smpp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── smpp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── smpp/ │ │ │ └── springboot/ │ │ │ ├── SmppComponentAutoConfiguration.java │ │ │ ├── SmppComponentConfiguration.java │ │ │ └── SmppComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-snakeyaml-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── snakeyaml.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── snakeyaml/ │ │ │ └── springboot/ │ │ │ ├── SnakeYAMLDataFormatAutoConfiguration.java │ │ │ └── SnakeYAMLDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-snmp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── snmp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── snmp/ │ │ │ └── springboot/ │ │ │ ├── SnmpComponentAutoConfiguration.java │ │ │ └── SnmpComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-soap-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── soap.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── soap/ │ │ │ └── springboot/ │ │ │ ├── SoapDataFormatAutoConfiguration.java │ │ │ ├── SoapDataFormatConfiguration.java │ │ │ └── SoapDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-solr-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── solr.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── solr/ │ │ │ └── springboot/ │ │ │ ├── SolrComponentAutoConfiguration.java │ │ │ ├── SolrComponentConfiguration.java │ │ │ └── SolrComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-splunk-hec-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── splunk-hec.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── splunkhec/ │ │ │ └── springboot/ │ │ │ ├── SplunkHECComponentAutoConfiguration.java │ │ │ ├── SplunkHECComponentConfiguration.java │ │ │ └── SplunkHECComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-splunk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── splunk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── splunk/ │ │ │ └── springboot/ │ │ │ ├── SplunkComponentAutoConfiguration.java │ │ │ ├── SplunkComponentConfiguration.java │ │ │ └── SplunkComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-ai-chat-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-ai-chat.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── springai/ │ │ │ └── chat/ │ │ │ └── springboot/ │ │ │ ├── SpringAiChatComponentAutoConfiguration.java │ │ │ ├── SpringAiChatComponentConfiguration.java │ │ │ └── SpringAiChatComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-ai-embeddings-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-ai-embeddings.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── springai/ │ │ │ └── embeddings/ │ │ │ └── springboot/ │ │ │ ├── SpringAiEmbeddingsComponentAutoConfiguration.java │ │ │ ├── SpringAiEmbeddingsComponentConfiguration.java │ │ │ └── SpringAiEmbeddingsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-ai-image-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-ai-image.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── springai/ │ │ │ └── image/ │ │ │ └── springboot/ │ │ │ ├── SpringAiImageComponentAutoConfiguration.java │ │ │ ├── SpringAiImageComponentConfiguration.java │ │ │ └── SpringAiImageComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-ai-tools-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-ai-tools.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── springai/ │ │ │ └── tools/ │ │ │ └── springboot/ │ │ │ ├── SpringAiToolsComponentAutoConfiguration.java │ │ │ ├── SpringAiToolsComponentConfiguration.java │ │ │ └── SpringAiToolsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-ai-vector-store-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-ai-vector-store.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── springai/ │ │ │ └── vectorstore/ │ │ │ └── springboot/ │ │ │ ├── SpringAiVectorStoreComponentAutoConfiguration.java │ │ │ ├── SpringAiVectorStoreComponentConfiguration.java │ │ │ └── SpringAiVectorStoreComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-batch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-batch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── spring/ │ │ │ └── batch/ │ │ │ └── springboot/ │ │ │ ├── SpringBatchComponentAutoConfiguration.java │ │ │ ├── SpringBatchComponentConfiguration.java │ │ │ └── SpringBatchComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-cloud-config-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-cloud-config.adoc │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── spring/ │ │ │ └── cloud/ │ │ │ └── config/ │ │ │ └── springboot/ │ │ │ ├── CamelCloudConfigEnvironmentPostProcessor.java │ │ │ └── SpringBootCloudConfigPropertiesParser.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring.factories │ ├── camel-spring-jdbc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-jdbc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── spring/ │ │ │ └── jdbc/ │ │ │ └── springboot/ │ │ │ ├── SpringJdbcComponentAutoConfiguration.java │ │ │ ├── SpringJdbcComponentConfiguration.java │ │ │ └── SpringJdbcComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-ldap-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-ldap.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── springldap/ │ │ │ └── springboot/ │ │ │ ├── SpringLdapComponentAutoConfiguration.java │ │ │ └── SpringLdapComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-rabbitmq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-rabbitmq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── springrabbit/ │ │ │ └── springboot/ │ │ │ ├── SpringRabbitMQComponentAutoConfiguration.java │ │ │ ├── SpringRabbitMQComponentConfiguration.java │ │ │ └── SpringRabbitMQComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-redis-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-redis.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── redis/ │ │ │ └── springboot/ │ │ │ ├── RedisComponentAutoConfiguration.java │ │ │ ├── RedisComponentConfiguration.java │ │ │ └── RedisComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-security-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-security.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-spring-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── event/ │ │ │ │ └── springboot/ │ │ │ │ ├── EventComponentAutoConfiguration.java │ │ │ │ └── EventComponentConfiguration.java │ │ │ └── language/ │ │ │ └── spel/ │ │ │ └── springboot/ │ │ │ ├── SpelLanguageAutoConfiguration.java │ │ │ └── SpelLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-spring-ws-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-ws.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── spring/ │ │ │ └── ws/ │ │ │ └── springboot/ │ │ │ ├── SpringWebserviceComponentAutoConfiguration.java │ │ │ └── SpringWebserviceComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-springdoc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ ├── springdoc.adoc │ │ │ └── springdoc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── springboot/ │ │ │ └── springdoc/ │ │ │ ├── SpringdocAutoConfiguration.java │ │ │ └── SpringdocConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-sql-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── sql.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── sql/ │ │ │ │ ├── springboot/ │ │ │ │ │ ├── SqlComponentAutoConfiguration.java │ │ │ │ │ ├── SqlComponentConfiguration.java │ │ │ │ │ └── SqlComponentConverter.java │ │ │ │ └── stored/ │ │ │ │ └── springboot/ │ │ │ │ ├── SqlStoredComponentAutoConfiguration.java │ │ │ │ ├── SqlStoredComponentConfiguration.java │ │ │ │ └── SqlStoredComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── sql/ │ │ │ │ ├── BaseSql.java │ │ │ │ ├── SqlConsumerDynamicParameterTest.java │ │ │ │ ├── SqlEndpointMisconfigureDataSourceTest.java │ │ │ │ ├── SqlGeneratedKeysTest.java │ │ │ │ ├── SqlProducerExpressionParameterTest.java │ │ │ │ ├── SqlProducerInTest.java │ │ │ │ ├── SqlProducerOutputHeaderTest.java │ │ │ │ ├── SqlProducerOutputTypeStreamListTest.java │ │ │ │ ├── SqlProducerToDTest.java │ │ │ │ ├── SqlProducerUpdateHeadersTest.java │ │ │ │ ├── SqlProducerUseMessageBodyForSqlTest.java │ │ │ │ ├── SqlTransactedRouteTest.java │ │ │ │ ├── aggregation/ │ │ │ │ │ ├── HeaderDto.java │ │ │ │ │ ├── JdbcAggregateRecoverDeadLetterChannelTest.java │ │ │ │ │ ├── JdbcAggregateSerializedHeadersTest.java │ │ │ │ │ ├── JdbcAggregateStoreAsTextTest.java │ │ │ │ │ └── MyAggregationStrategy.java │ │ │ │ └── idempotent/ │ │ │ │ ├── CustomizedJdbcMessageIdRepositoryTest.java │ │ │ │ ├── JdbcCachedMessageIdRepositoryTest.java │ │ │ │ └── JdbcMessageIdRepositoryTest.java │ │ │ └── processor/ │ │ │ └── idempotent/ │ │ │ └── jdbc/ │ │ │ └── JdbcOrphanLockAwareIdempotentRepositoryTest.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── logback.xml │ │ └── sql/ │ │ ├── createAndPopulateDatabase.sql │ │ ├── createAndPopulateDatabase3.sql │ │ ├── idempotentWithOrphanLockRemoval.sql │ │ ├── init.sql │ │ ├── init3.sql │ │ └── selectProjectsIn.sql │ ├── camel-ssh-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── ssh.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ssh/ │ │ │ └── springboot/ │ │ │ ├── SshComponentAutoConfiguration.java │ │ │ ├── SshComponentConfiguration.java │ │ │ └── SshComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-stax-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── stax.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── stax/ │ │ │ │ └── springboot/ │ │ │ │ ├── StAXComponentAutoConfiguration.java │ │ │ │ └── StAXComponentConfiguration.java │ │ │ └── language/ │ │ │ └── xtokenizer/ │ │ │ └── springboot/ │ │ │ ├── XMLTokenizeLanguageAutoConfiguration.java │ │ │ └── XMLTokenizeLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-stitch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── stitch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── stitch/ │ │ │ └── springboot/ │ │ │ ├── StitchComponentAutoConfiguration.java │ │ │ ├── StitchComponentConfiguration.java │ │ │ └── StitchComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-stream-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── stream.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── stream/ │ │ │ └── springboot/ │ │ │ ├── StreamComponentAutoConfiguration.java │ │ │ └── StreamComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-stringtemplate-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── stringtemplate.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── stringtemplate/ │ │ │ └── springboot/ │ │ │ ├── StringTemplateComponentAutoConfiguration.java │ │ │ └── StringTemplateComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-stripe-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── stripe.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── stripe/ │ │ │ └── springboot/ │ │ │ ├── StripeComponentAutoConfiguration.java │ │ │ └── StripeComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-stub-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── stub.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── stub/ │ │ │ └── springboot/ │ │ │ ├── StubComponentAutoConfiguration.java │ │ │ ├── StubComponentConfiguration.java │ │ │ └── StubComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-swift-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── swift.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── dataformat/ │ │ │ │ └── swift/ │ │ │ │ ├── mt/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── SwiftMtDataFormatAutoConfiguration.java │ │ │ │ │ └── SwiftMtDataFormatConfiguration.java │ │ │ │ └── mx/ │ │ │ │ └── springboot/ │ │ │ │ ├── SwiftMxDataFormatAutoConfiguration.java │ │ │ │ ├── SwiftMxDataFormatConfiguration.java │ │ │ │ └── SwiftMxDataFormatConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── swift/ │ │ │ ├── mt/ │ │ │ │ └── SwiftMtDataFormatTest.java │ │ │ └── mx/ │ │ │ └── SwiftMxDataFormatTest.java │ │ └── resources/ │ │ ├── mt/ │ │ │ ├── message1.txt │ │ │ ├── message2.json │ │ │ └── message2.txt │ │ ├── mx/ │ │ │ ├── message1.xml │ │ │ ├── message2.json │ │ │ ├── message2.xml │ │ │ └── message3.xml │ │ └── routes/ │ │ ├── SwiftMtDataFormatTest.xml │ │ └── SwiftMxDataFormatTest.xml │ ├── camel-syslog-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── syslog.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── syslog/ │ │ │ └── springboot/ │ │ │ ├── SyslogDataFormatAutoConfiguration.java │ │ │ └── SyslogDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-tahu-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── tahu.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── tahu/ │ │ │ └── springboot/ │ │ │ ├── TahuEdgeComponentAutoConfiguration.java │ │ │ ├── TahuEdgeComponentConfiguration.java │ │ │ ├── TahuEdgeComponentConverter.java │ │ │ ├── TahuHostComponentAutoConfiguration.java │ │ │ ├── TahuHostComponentConfiguration.java │ │ │ └── TahuHostComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-tarfile-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── tarfile.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── tarfile/ │ │ │ └── springboot/ │ │ │ ├── TarFileDataFormatAutoConfiguration.java │ │ │ └── TarFileDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-telegram-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── telegram.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── telegram/ │ │ │ │ └── springboot/ │ │ │ │ ├── TelegramComponentAutoConfiguration.java │ │ │ │ ├── TelegramComponentConfiguration.java │ │ │ │ └── TelegramComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── telegram/ │ │ │ └── springboot/ │ │ │ ├── TelegramApiConfig.java │ │ │ ├── TelegramChatBotTest.java │ │ │ ├── TelegramComponentParametersTest.java │ │ │ ├── TelegramConfigurationTest.java │ │ │ ├── TelegramConsumerChannelPostTest.java │ │ │ ├── TelegramConsumerEmptyResponseTest.java │ │ │ ├── TelegramConsumerFallbackConversionTest.java │ │ │ ├── TelegramConsumerHealthCheckErrorDisabledConsumerTest.java │ │ │ ├── TelegramConsumerHealthCheckErrorTest.java │ │ │ ├── TelegramConsumerHealthCheckOkTest.java │ │ │ ├── TelegramConsumerIncomingInlineQueryTest.java │ │ │ ├── TelegramConsumerMappingTest.java │ │ │ ├── TelegramConsumerMediaDocumentTest.java │ │ │ ├── TelegramConsumerMediaGameTest.java │ │ │ ├── TelegramConsumerMediaPhotoTest.java │ │ │ ├── TelegramConsumerMediaStickerTest.java │ │ │ ├── TelegramConsumerMediaVideoTest.java │ │ │ ├── TelegramConsumerMultipleTest.java │ │ │ ├── TelegramConsumerServiceErrorTest.java │ │ │ ├── TelegramConsumerSingleTest.java │ │ │ ├── TelegramMockRoutes.java │ │ │ ├── TelegramProducerChatIdResolutionTest.java │ │ │ ├── TelegramProducerLocationTest.java │ │ │ ├── TelegramProducerMediaTest.java │ │ │ ├── TelegramTestSupport.java │ │ │ ├── TelegramTestUtil.java │ │ │ └── TelegramWebhookCallTest.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── attachments/ │ │ │ └── sample.txt │ │ └── messages/ │ │ ├── edit-message-live-location.json │ │ ├── send-audio.json │ │ ├── send-document.json │ │ ├── send-game.json │ │ ├── send-location.json │ │ ├── send-message.json │ │ ├── send-photo.json │ │ ├── send-venue.json │ │ ├── send-video.json │ │ ├── stop-message-live-location.json │ │ ├── updates-channelMessage.json │ │ ├── updates-empty.json │ │ ├── updates-inline-query-message.json │ │ ├── updates-media-document.json │ │ ├── updates-media-game.json │ │ ├── updates-media-sticker.json │ │ ├── updates-media-video.json │ │ ├── updates-media.json │ │ ├── updates-multiple.json │ │ ├── updates-sendLocation.json │ │ ├── updates-single.json │ │ └── webhook-call.json │ ├── camel-telemetry-dev-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── telemetry-dev.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── telemetrydev/ │ │ │ └── starter/ │ │ │ ├── CamelTelemetryDev.java │ │ │ ├── TelemetryDevAutoConfiguration.java │ │ │ └── TelemetryDevConfigurationProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-tensorflow-serving-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── tensorflow-serving.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── tensorflow/ │ │ │ └── serving/ │ │ │ └── springboot/ │ │ │ ├── TensorFlowServingComponentAutoConfiguration.java │ │ │ ├── TensorFlowServingComponentConfiguration.java │ │ │ └── TensorFlowServingComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-thrift-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── thrift.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── thrift/ │ │ │ │ └── springboot/ │ │ │ │ ├── ThriftComponentAutoConfiguration.java │ │ │ │ └── ThriftComponentConfiguration.java │ │ │ └── dataformat/ │ │ │ └── thrift/ │ │ │ └── springboot/ │ │ │ ├── ThriftDataFormatAutoConfiguration.java │ │ │ └── ThriftDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-thymeleaf-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── thymeleaf.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── thymeleaf/ │ │ │ └── springboot/ │ │ │ ├── ThymeleafComponentAutoConfiguration.java │ │ │ └── ThymeleafComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-tika-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── tika.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── tika/ │ │ │ └── springboot/ │ │ │ ├── TikaComponentAutoConfiguration.java │ │ │ └── TikaComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-timer-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── timer.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── timer/ │ │ │ └── springboot/ │ │ │ ├── TimerComponentAutoConfiguration.java │ │ │ └── TimerComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-twilio-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── twilio.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── twilio/ │ │ │ └── springboot/ │ │ │ ├── TwilioComponentAutoConfiguration.java │ │ │ ├── TwilioComponentConfiguration.java │ │ │ └── TwilioComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-twitter-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── twitter.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── twitter/ │ │ │ ├── directmessage/ │ │ │ │ └── springboot/ │ │ │ │ ├── TwitterDirectMessageComponentAutoConfiguration.java │ │ │ │ └── TwitterDirectMessageComponentConfiguration.java │ │ │ ├── search/ │ │ │ │ └── springboot/ │ │ │ │ ├── TwitterSearchComponentAutoConfiguration.java │ │ │ │ └── TwitterSearchComponentConfiguration.java │ │ │ └── timeline/ │ │ │ └── springboot/ │ │ │ ├── TwitterTimelineComponentAutoConfiguration.java │ │ │ └── TwitterTimelineComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-undertow-spring-security-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── undertow-spring-security.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── undertow/ │ │ │ └── spring/ │ │ │ └── boot/ │ │ │ ├── UndertowSpringSecurityConfiguration.java │ │ │ ├── UndertowSpringSecurityCustomizer.java │ │ │ └── providers/ │ │ │ ├── AbstractProviderConfiguration.java │ │ │ └── KeycloakProviderConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-undertow-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── undertow.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── undertow/ │ │ │ │ └── springboot/ │ │ │ │ ├── UndertowComponentAutoConfiguration.java │ │ │ │ ├── UndertowComponentConfiguration.java │ │ │ │ └── UndertowComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── undertow/ │ │ │ └── UndertowSSLTest.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── cacerts │ │ ├── keystore.p12 │ │ └── logback.xml │ ├── camel-univocity-parsers-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── univocity-parsers.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── univocity/ │ │ │ └── springboot/ │ │ │ ├── UniVocityCsvDataFormatAutoConfiguration.java │ │ │ ├── UniVocityCsvDataFormatConfiguration.java │ │ │ ├── UniVocityFixedDataFormatAutoConfiguration.java │ │ │ ├── UniVocityFixedDataFormatConfiguration.java │ │ │ ├── UniVocityTsvDataFormatAutoConfiguration.java │ │ │ └── UniVocityTsvDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-validator-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── validator.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── validator/ │ │ │ │ └── springboot/ │ │ │ │ ├── ValidatorComponentAutoConfiguration.java │ │ │ │ ├── ValidatorComponentConfiguration.java │ │ │ │ └── ValidatorComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── validator/ │ │ │ │ ├── ContextTestSupport.java │ │ │ │ ├── CustomSchemaFactoryFeatureTest.java │ │ │ │ ├── FileValidatorRouteTest.java │ │ │ │ ├── ValidatorBeanCallTest.java │ │ │ │ ├── ValidatorDtdAccessAbstractTest.java │ │ │ │ ├── ValidatorDtdAccessOffTest.java │ │ │ │ ├── ValidatorDtdAccessOnTest.java │ │ │ │ ├── ValidatorEndpointClearCachedSchemaTest.java │ │ │ │ ├── ValidatorIllegalImportTest.java │ │ │ │ ├── ValidatorIncludeEncodingRouteTest.java │ │ │ │ ├── ValidatorIncludeRelativeRouteTest.java │ │ │ │ ├── ValidatorIncludeRouteTest.java │ │ │ │ ├── ValidatorLazyStartProducerTest.java │ │ │ │ ├── ValidatorResourceResolverFactoryTest.java │ │ │ │ ├── ValidatorRootPathTest.java │ │ │ │ ├── ValidatorRouteTest.java │ │ │ │ └── ValidatorWithResourceResolverRouteTest.java │ │ │ ├── processor/ │ │ │ │ └── validation/ │ │ │ │ └── CatalogLSResourceResolver.java │ │ │ └── urlhandler/ │ │ │ └── pd/ │ │ │ └── Handler.java │ │ └── resources/ │ │ ├── jndi-example.properties │ │ ├── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── validator/ │ │ │ ├── BroadcastMonitor.xsd │ │ │ ├── BroadcastMonitorFixed.xsd │ │ │ ├── catalog.cat │ │ │ ├── health.xsd │ │ │ ├── person.xsd │ │ │ ├── report-base.xsd │ │ │ ├── report.xsd │ │ │ ├── schema.xsd │ │ │ ├── sentence.xsd │ │ │ ├── text.xsd │ │ │ ├── unsecuredSchema.xsd │ │ │ └── xsds/ │ │ │ ├── customer.xsd │ │ │ ├── health/ │ │ │ │ ├── common/ │ │ │ │ │ └── common.xsd │ │ │ │ ├── health.xsd │ │ │ │ └── type1.xsd │ │ │ ├── order.xsd │ │ │ ├── person.xsd │ │ │ ├── product.xsd │ │ │ └── type2.xsd │ │ ├── report-base.xsd │ │ └── report.xsd │ ├── camel-velocity-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── velocity.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── velocity/ │ │ │ └── springboot/ │ │ │ ├── VelocityComponentAutoConfiguration.java │ │ │ ├── VelocityComponentConfiguration.java │ │ │ └── VelocityComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-vertx-http-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── vertx-http.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── vertx/ │ │ │ │ └── http/ │ │ │ │ └── springboot/ │ │ │ │ ├── VertxHttpComponentAutoConfiguration.java │ │ │ │ ├── VertxHttpComponentConfiguration.java │ │ │ │ └── VertxHttpComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── vertx/ │ │ │ └── http/ │ │ │ └── springboot/ │ │ │ └── VertxHttpSSLTest.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── cacerts │ │ ├── keystore.p12 │ │ └── logback.xml │ ├── camel-vertx-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── vertx.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── vertx/ │ │ │ └── springboot/ │ │ │ ├── VertxComponentAutoConfiguration.java │ │ │ ├── VertxComponentConfiguration.java │ │ │ └── VertxComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-vertx-websocket-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── vertx-websocket.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── vertx/ │ │ │ │ └── websocket/ │ │ │ │ └── springboot/ │ │ │ │ ├── VertxWebsocketComponentAutoConfiguration.java │ │ │ │ ├── VertxWebsocketComponentConfiguration.java │ │ │ │ └── VertxWebsocketComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── vertx/ │ │ │ └── http/ │ │ │ └── springboot/ │ │ │ ├── VertxWebsocketSSLGlobalTest.java │ │ │ └── VertxWebsocketSSLTest.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── cacerts │ │ ├── keystore.p12 │ │ └── logback.xml │ ├── camel-wasm-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── wasm.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── wasm/ │ │ │ │ └── springboot/ │ │ │ │ ├── WasmComponentAutoConfiguration.java │ │ │ │ └── WasmComponentConfiguration.java │ │ │ └── language/ │ │ │ └── wasm/ │ │ │ └── springboot/ │ │ │ ├── WasmLanguageAutoConfiguration.java │ │ │ └── WasmLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-weather-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── weather.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── weather/ │ │ │ └── springboot/ │ │ │ ├── WeatherComponentAutoConfiguration.java │ │ │ └── WeatherComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-weaviate-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── weaviate.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── weaviate/ │ │ │ └── springboot/ │ │ │ ├── WeaviateVectorDbComponentAutoConfiguration.java │ │ │ ├── WeaviateVectorDbComponentConfiguration.java │ │ │ └── WeaviateVectorDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-web3j-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── web3j.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── web3j/ │ │ │ └── springboot/ │ │ │ ├── Web3jComponentAutoConfiguration.java │ │ │ ├── Web3jComponentConfiguration.java │ │ │ └── Web3jComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-webhook-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── webhook.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── webhook/ │ │ │ │ └── springboot/ │ │ │ │ ├── WebhookComponentAutoConfiguration.java │ │ │ │ ├── WebhookComponentConfiguration.java │ │ │ │ └── WebhookComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── webhook/ │ │ └── springboot/ │ │ ├── TestComponent.java │ │ ├── TestEndpoint.java │ │ ├── WebhookBasePathTest.java │ │ ├── WebhookHttpBindingTest.java │ │ ├── WebhookMultiRouteTest.java │ │ ├── WebhookPathTest.java │ │ └── WebhookUriEncodingTest.java │ ├── camel-whatsapp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── whatsapp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── whatsapp/ │ │ │ └── springboot/ │ │ │ ├── WhatsAppComponentAutoConfiguration.java │ │ │ ├── WhatsAppComponentConfiguration.java │ │ │ └── WhatsAppComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-wordpress-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── wordpress.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── wordpress/ │ │ │ └── springboot/ │ │ │ ├── WordpressComponentAutoConfiguration.java │ │ │ ├── WordpressComponentConfiguration.java │ │ │ └── WordpressComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-workday-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── workday.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── workday/ │ │ │ └── springboot/ │ │ │ ├── WorkdayComponentAutoConfiguration.java │ │ │ └── WorkdayComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-xchange-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xchange.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── xchange/ │ │ │ └── springboot/ │ │ │ ├── XChangeComponentAutoConfiguration.java │ │ │ └── XChangeComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-xj-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xj.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── xj/ │ │ │ └── springboot/ │ │ │ ├── XJComponentAutoConfiguration.java │ │ │ ├── XJComponentConfiguration.java │ │ │ └── XJComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-xml-jaxb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-xml-jaxp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-xmlsecurity-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xmlsecurity.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── xmlsecurity/ │ │ │ │ └── springboot/ │ │ │ │ ├── XmlSignerComponentAutoConfiguration.java │ │ │ │ ├── XmlSignerComponentConfiguration.java │ │ │ │ ├── XmlSignerComponentConverter.java │ │ │ │ ├── XmlVerifierComponentAutoConfiguration.java │ │ │ │ ├── XmlVerifierComponentConfiguration.java │ │ │ │ └── XmlVerifierComponentConverter.java │ │ │ └── dataformat/ │ │ │ └── xmlsecurity/ │ │ │ └── springboot/ │ │ │ ├── XMLSecurityDataFormatAutoConfiguration.java │ │ │ ├── XMLSecurityDataFormatConfiguration.java │ │ │ └── XMLSecurityDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-xmpp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xmpp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── xmpp/ │ │ │ └── springboot/ │ │ │ ├── XmppComponentAutoConfiguration.java │ │ │ └── XmppComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-xpath-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xpath.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── xpath/ │ │ │ └── springboot/ │ │ │ ├── XPathLanguageAutoConfiguration.java │ │ │ └── XPathLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-xslt-saxon-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xslt-saxon.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── xslt/ │ │ │ └── saxon/ │ │ │ └── springboot/ │ │ │ ├── XsltSaxonComponentAutoConfiguration.java │ │ │ ├── XsltSaxonComponentConfiguration.java │ │ │ └── XsltSaxonComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-xslt-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xslt.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── xslt/ │ │ │ └── springboot/ │ │ │ ├── XsltComponentAutoConfiguration.java │ │ │ ├── XsltComponentConfiguration.java │ │ │ └── XsltComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-zeebe-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── zeebe.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── zeebe/ │ │ │ └── springboot/ │ │ │ ├── ZeebeComponentAutoConfiguration.java │ │ │ └── ZeebeComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-zendesk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── zendesk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── zendesk/ │ │ │ └── springboot/ │ │ │ ├── ZendeskComponentAutoConfiguration.java │ │ │ ├── ZendeskComponentConfiguration.java │ │ │ └── ZendeskComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-zip-deflater-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── zip-deflater.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── deflater/ │ │ │ └── springboot/ │ │ │ ├── GzipDeflaterDataFormatAutoConfiguration.java │ │ │ ├── GzipDeflaterDataFormatConfiguration.java │ │ │ ├── ZipDeflaterDataFormatAutoConfiguration.java │ │ │ └── ZipDeflaterDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-zipfile-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── zipfile.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── dataformat/ │ │ │ │ └── zipfile/ │ │ │ │ └── springboot/ │ │ │ │ ├── ZipFileDataFormatAutoConfiguration.java │ │ │ │ └── ZipFileDataFormatConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── zipfile/ │ │ │ └── springboot/ │ │ │ ├── AggregationStrategyWithFilenameHeaderTest.java │ │ │ ├── AggregationStrategyWithPreservationTest.java │ │ │ ├── ZipAggregationStrategyEmptyFileTest.java │ │ │ ├── ZipAggregationStrategyTest.java │ │ │ ├── ZipFileDataFormatTest.java │ │ │ ├── ZipFileIteratorDataFormatTest.java │ │ │ ├── ZipFileMultipleFilesSplitterTest.java │ │ │ ├── ZipFileSplitAndDeleteTest.java │ │ │ ├── ZipFileSplitIteratorCorruptTest.java │ │ │ ├── ZipFileSplitOneFileTest.java │ │ │ ├── ZipSplitterRouteIssueTest.java │ │ │ └── ZipSplitterRouteTest.java │ │ └── resources/ │ │ ├── hello.odt │ │ ├── log4j2.properties │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ ├── aggregate/ │ │ │ └── zipfile/ │ │ │ └── data/ │ │ │ ├── another/ │ │ │ │ └── hello.txt │ │ │ ├── chiau.txt │ │ │ ├── hi.txt │ │ │ ├── hola.txt │ │ │ └── other/ │ │ │ └── greetings.txt │ │ └── dataformat/ │ │ └── zipfile/ │ │ └── SpringZipSplitterRouteTest.xml │ ├── camel-zookeeper-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── zookeeper-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── zookeeper/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── ZooKeeperClusterServiceAutoConfiguration.java │ │ │ │ └── ZooKeeperClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── zookeeper/ │ │ │ └── springboot/ │ │ │ └── cluster/ │ │ │ └── ZooKeeperClusterServiceTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-zookeeper-master-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── zookeeper-master.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── zookeepermaster/ │ │ │ └── springboot/ │ │ │ ├── MasterComponentAutoConfiguration.java │ │ │ ├── MasterComponentConfiguration.java │ │ │ └── MasterComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-zookeeper-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── zookeeper.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── zookeeper/ │ │ │ └── springboot/ │ │ │ ├── ZooKeeperComponentAutoConfiguration.java │ │ │ ├── ZooKeeperComponentConfiguration.java │ │ │ └── ZooKeeperComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ └── pom.xml ├── core/ │ ├── ac-mappings.yml │ ├── antora.yml │ ├── camel-spring-boot/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ ├── spring-boot.adoc │ │ │ │ ├── spring-boot.json │ │ │ │ └── starter-configuration.adoc │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── spring/ │ │ │ │ └── boot/ │ │ │ │ ├── CamelAutoConfiguration.java │ │ │ │ ├── CamelContextConfiguration.java │ │ │ │ ├── CamelMainRunController.java │ │ │ │ ├── CamelSpringBootApplicationController.java │ │ │ │ ├── CamelSpringBootApplicationListener.java │ │ │ │ ├── CamelSpringBootBeanPostProcessor.java │ │ │ │ ├── CamelSpringBootInitializationException.java │ │ │ │ ├── CamelSpringBootRoutesCollector.java │ │ │ │ ├── CamelStartupConditionConfigurationProperties.java │ │ │ │ ├── CamelVirtualThreadEnvironmentPostProcessor.java │ │ │ │ ├── ComponentConfigurationProperties.java │ │ │ │ ├── ComponentConfigurationPropertiesCommon.java │ │ │ │ ├── DataFormatConfigurationProperties.java │ │ │ │ ├── DataFormatConfigurationPropertiesCommon.java │ │ │ │ ├── FilePropertySource.java │ │ │ │ ├── LanguageConfigurationProperties.java │ │ │ │ ├── LanguageConfigurationPropertiesCommon.java │ │ │ │ ├── PropertiesComponentConfiguration.java │ │ │ │ ├── SpringBootCamelContext.java │ │ │ │ ├── SpringPropertiesParser.java │ │ │ │ ├── SpringTypeConverter.java │ │ │ │ ├── TypeConversionConfiguration.java │ │ │ │ ├── actuate/ │ │ │ │ │ ├── accesslog/ │ │ │ │ │ │ ├── ManagementAccessLogConfiguration.java │ │ │ │ │ │ └── ManagementAccessLogProperties.java │ │ │ │ │ ├── console/ │ │ │ │ │ │ ├── CamelDevConsoleAutoConfiguration.java │ │ │ │ │ │ └── CamelDevConsoleEndpoint.java │ │ │ │ │ ├── endpoint/ │ │ │ │ │ │ ├── CamelRouteControllerEndpoint.java │ │ │ │ │ │ ├── CamelRouteControllerEndpointAutoConfiguration.java │ │ │ │ │ │ ├── CamelRoutesEndpoint.java │ │ │ │ │ │ ├── CamelRoutesEndpointAutoConfiguration.java │ │ │ │ │ │ └── CamelRoutesEndpointProperties.java │ │ │ │ │ ├── health/ │ │ │ │ │ │ ├── AsyncHealthIndicatorAutoConfiguration.java │ │ │ │ │ │ ├── CamelAvailabilityCheckAutoConfiguration.java │ │ │ │ │ │ ├── CamelHealthCheckAutoConfiguration.java │ │ │ │ │ │ ├── CamelHealthCheckConfigurationProperties.java │ │ │ │ │ │ ├── CamelHealthCheckIndicator.java │ │ │ │ │ │ ├── CamelHealthHelper.java │ │ │ │ │ │ ├── CamelProbesHelper.java │ │ │ │ │ │ ├── liveness/ │ │ │ │ │ │ │ └── CamelLivenessStateHealthIndicator.java │ │ │ │ │ │ └── readiness/ │ │ │ │ │ │ └── CamelReadinessStateHealthIndicator.java │ │ │ │ │ └── info/ │ │ │ │ │ ├── CamelInfoAutoConfiguration.java │ │ │ │ │ └── CamelInfoContributor.java │ │ │ │ ├── cluster/ │ │ │ │ │ ├── ClusteredRouteControllerAutoConfiguration.java │ │ │ │ │ ├── ClusteredRouteControllerConfiguration.java │ │ │ │ │ └── TimePatternConverter.java │ │ │ │ ├── routecontroller/ │ │ │ │ │ ├── SupervisingRouteControllerAutoConfiguration.java │ │ │ │ │ └── SupervisingRouteControllerConfiguration.java │ │ │ │ ├── routetemplate/ │ │ │ │ │ ├── CamelRouteTemplateAutoConfiguration.java │ │ │ │ │ └── CamelRouteTemplateConfigurationProperties.java │ │ │ │ ├── security/ │ │ │ │ │ ├── CamelSSLAutoConfiguration.java │ │ │ │ │ ├── CamelSSLConfigurationProperties.java │ │ │ │ │ ├── CamelSecurityPolicyAutoConfiguration.java │ │ │ │ │ └── CamelSecurityPolicyConfigurationProperties.java │ │ │ │ ├── threadpool/ │ │ │ │ │ ├── CamelThreadPoolAutoConfiguration.java │ │ │ │ │ └── CamelThreadPoolConfigurationProperties.java │ │ │ │ ├── trace/ │ │ │ │ │ ├── CamelTraceAutoConfiguration.java │ │ │ │ │ └── CamelTraceConfigurationProperties.java │ │ │ │ ├── util/ │ │ │ │ │ ├── CamelPropertiesHelper.java │ │ │ │ │ ├── CompositeConversionService.java │ │ │ │ │ ├── ConditionalOnCamelContextAndAutoConfigurationBeans.java │ │ │ │ │ ├── ConditionalOnHierarchicalProperties.java │ │ │ │ │ ├── GroupCondition.java │ │ │ │ │ ├── HierarchicalCondition.java │ │ │ │ │ ├── HierarchicalPropertiesEvaluator.java │ │ │ │ │ └── OnHierarchicalPropertiesCondition.java │ │ │ │ └── vault/ │ │ │ │ ├── AwsVaultAutoConfiguration.java │ │ │ │ ├── AwsVaultConfigurationProperties.java │ │ │ │ ├── AzureVaultAutoConfiguration.java │ │ │ │ ├── AzureVaultConfigurationProperties.java │ │ │ │ ├── CyberArkVaultAutoConfiguration.java │ │ │ │ ├── CyberArkVaultConfigurationProperties.java │ │ │ │ ├── GcpVaultAutoConfiguration.java │ │ │ │ ├── GcpVaultConfigurationProperties.java │ │ │ │ ├── HashicorpVaultAutoConfiguration.java │ │ │ │ ├── HashicorpVaultConfigurationProperties.java │ │ │ │ ├── IBMVaultAutoConfiguration.java │ │ │ │ ├── IBMVaultConfigurationProperties.java │ │ │ │ ├── KubernetesConfigMapVaultAutoConfiguration.java │ │ │ │ ├── KubernetesConfigMapVaultConfigurationProperties.java │ │ │ │ ├── KubernetesVaultAutoConfiguration.java │ │ │ │ └── KubernetesVaultConfigurationProperties.java │ │ │ ├── resources/ │ │ │ │ └── META-INF/ │ │ │ │ ├── additional-spring-configuration-metadata.json │ │ │ │ ├── spring/ │ │ │ │ │ ├── org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports │ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ │ └── spring.factories │ │ │ └── velocity/ │ │ │ └── config.vm │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── spring/ │ │ │ └── boot/ │ │ │ ├── CamelAnnotationsTest.java │ │ │ ├── CamelAutoConfigurationPropertiesTest.java │ │ │ ├── CamelAutoConfigurationTest.java │ │ │ ├── CamelAutoConfigurationWithCompatPrefixTest.java │ │ │ ├── CamelAutoConfigurationWithMainPrefixTest.java │ │ │ ├── CamelConfigurationLocationsTest.java │ │ │ ├── CamelConfigurationPostConstructAddRouteToRegistryTest.java │ │ │ ├── CamelEventNotifierTest.java │ │ │ ├── CamelLambdaRouteBuilderTest.java │ │ │ ├── CamelMainListenerTest.java │ │ │ ├── CamelSpringBootShutdownTest.java │ │ │ ├── CamelSpringBootTemplateShutdownTest.java │ │ │ ├── CamelStartupConditionEnvTest.java │ │ │ ├── CamelVirtualThreadsIT.java │ │ │ ├── CamelXmlRoutesTest.java │ │ │ ├── CustomCamelCamelConfigurationTest.java │ │ │ ├── CustomShutdownStrategyTest.java │ │ │ ├── ExistingConversionServiceTest.java │ │ │ ├── GlobalOptionsTest.java │ │ │ ├── LambdaRouteBuilderConfiguration.java │ │ │ ├── LogListenerDiscoveryTest.java │ │ │ ├── NoConvertersTest.java │ │ │ ├── PlainTest.java │ │ │ ├── RouteConfigWithCamelContextInjected.java │ │ │ ├── SpringConverterDelegationTest.java │ │ │ ├── SpringTypeConverterTest.java │ │ │ ├── StartupShutdownOrderTest.java │ │ │ ├── SupervisingRouteControllerRestartTest.java │ │ │ ├── SupervisingRouteControllerTest.java │ │ │ ├── ThreadPoolConfigurationTest.java │ │ │ ├── UuidGeneratorDiscoveryTest.java │ │ │ ├── XPathPropertyPlaceholderTest.java │ │ │ ├── actuate/ │ │ │ │ ├── endpoint/ │ │ │ │ │ ├── ActuatorTestControlledRoutes.java │ │ │ │ │ ├── ActuatorTestRoute.java │ │ │ │ │ ├── CamelEndpointsGloballyEnabledTest.java │ │ │ │ │ ├── CamelRouteControllerEndpointEnabledTest.java │ │ │ │ │ ├── CamelRouteControllerEndpointGloballyDisabledAndReenabledTest.java │ │ │ │ │ ├── CamelRouteControllerEndpointTest.java │ │ │ │ │ ├── CamelRoutesEndpointControllerRouteTest.java │ │ │ │ │ ├── CamelRoutesEndpointEnabledTest.java │ │ │ │ │ ├── CamelRoutesEndpointReadOnlyOperationTest.java │ │ │ │ │ ├── CamelRoutesEndpointTest.java │ │ │ │ │ └── CamelRoutesEndpointWriteOperationTest.java │ │ │ │ ├── health/ │ │ │ │ │ ├── CamelHealthTest.java │ │ │ │ │ ├── CamelProbesTest.java │ │ │ │ │ ├── DownRoute.java │ │ │ │ │ ├── MyCamelRoute.java │ │ │ │ │ └── ProbesRoute.java │ │ │ │ └── info/ │ │ │ │ └── CamelInfoTest.java │ │ │ ├── autostartup/ │ │ │ │ ├── AutoStartupExcludePatternAnnotationTest.java │ │ │ │ └── AutoStartupExcludePatternTest.java │ │ │ ├── componentroute/ │ │ │ │ ├── ComponentRoute.java │ │ │ │ └── ComponentRouteTest.java │ │ │ ├── dummy/ │ │ │ │ ├── DummyComponent.java │ │ │ │ ├── DummyConsumer.java │ │ │ │ └── DummyEndpoint.java │ │ │ ├── example/ │ │ │ │ ├── MyApplicationTest.java │ │ │ │ └── MyRoute.java │ │ │ ├── issues/ │ │ │ │ ├── CountryPojo.java │ │ │ │ ├── OverridePropertiesTest.java │ │ │ │ ├── RestDslPostTest.java │ │ │ │ ├── SimpleOgnlTest.java │ │ │ │ ├── StreamCachingTest.java │ │ │ │ └── UserPojo.java │ │ │ ├── mockendpoints/ │ │ │ │ ├── AdviceWithTest.java │ │ │ │ ├── MockEndpointsAndSkipDirtiesContextTest.java │ │ │ │ ├── MockEndpointsTest.java │ │ │ │ └── MyRoute.java │ │ │ ├── parent/ │ │ │ │ └── SpringBootRefreshContextTest.java │ │ │ ├── routefilter/ │ │ │ │ ├── BarRoute.java │ │ │ │ ├── BarTest.java │ │ │ │ ├── DrinkRoute.java │ │ │ │ ├── FooExcludeRouteAnnotationTest.java │ │ │ │ ├── FooRoute.java │ │ │ │ └── FooTest.java │ │ │ ├── security/ │ │ │ │ ├── CamelSSLAutoConfigurationTest.java │ │ │ │ ├── CamelSSLAutoConfigurationTrustAllTest.java │ │ │ │ ├── CamelSSLNoConfigTest.java │ │ │ │ └── CamelSecurityPolicyAutoConfigurationTest.java │ │ │ ├── stub/ │ │ │ │ └── StubEndpointsTest.java │ │ │ ├── util/ │ │ │ │ ├── CamelPropertiesHelperTest.java │ │ │ │ ├── GroupCondition1Test.java │ │ │ │ ├── GroupCondition2Test.java │ │ │ │ ├── GroupCondition3Test.java │ │ │ │ ├── GroupCondition4Test.java │ │ │ │ ├── GroupConditionTestBase.java │ │ │ │ ├── HierarchicalPropertiesEvaluatorTest.java │ │ │ │ └── MyFooClass.java │ │ │ └── vault/ │ │ │ ├── AwsVaultConfigurationTest.java │ │ │ ├── AzureVaultConfigurationTest.java │ │ │ ├── CyberArkVaultConfigurationTest.java │ │ │ ├── GcpVaultConfigurationTest.java │ │ │ ├── HashicorpVaultCloudConfigurationTest.java │ │ │ ├── HashicorpVaultConfigurationTest.java │ │ │ ├── IBMSecretsManagerVaultConfigurationTest.java │ │ │ ├── KubernetesConfigMapVaultConfigurationTest.java │ │ │ └── KubernetesVaultConfigurationTest.java │ │ ├── resources/ │ │ │ ├── application.properties │ │ │ ├── camel/ │ │ │ │ └── camelContext.xml │ │ │ ├── logback.xml │ │ │ └── routes/ │ │ │ ├── bar.xml │ │ │ └── foo.xml │ │ └── secret/ │ │ └── do-not-tell.properties │ ├── camel-spring-boot-xml/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ ├── spring-boot-xml.adoc │ │ │ │ └── spring-boot-xml.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── spring/ │ │ │ │ └── boot/ │ │ │ │ └── xml/ │ │ │ │ ├── CamelXmlAutoConfiguration.java │ │ │ │ └── SpringBootXmlCamelContextConfigurer.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── spring/ │ │ │ └── boot/ │ │ │ └── xml/ │ │ │ ├── CamelNonInvasiveCamelContextTest.java │ │ │ ├── MixedBootAndXmlConfigurationTest.java │ │ │ ├── MixedJavaDslAndXmlTest.java │ │ │ └── MixedRestDslTest.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── camel-xml-io-dsl.xml │ │ ├── externalCamelContext.xml │ │ ├── logback.xml │ │ ├── mixed-camel-context.xml │ │ ├── spring-camel-context.xml │ │ └── test-camel-context.xml │ └── pom.xml ├── core-starter/ │ ├── camel-spring-boot-engine-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-spring-boot-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-spring-boot-xml-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── spring-xml.adoc │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ └── pom.xml ├── docs/ │ ├── README_local_build.adoc │ ├── components/ │ │ ├── antora.yml │ │ └── modules/ │ │ └── spring-boot/ │ │ └── partials/ │ │ └── starter.adoc │ ├── local-build.sh │ ├── pom.xml │ ├── source-map.yml │ ├── source-watch.yml │ └── spring-boot/ │ ├── antora.yml │ └── modules/ │ └── ROOT/ │ ├── nav.adoc │ └── pages/ │ ├── consul-cluster-service.adoc │ ├── contributing.adoc │ ├── file-cluster-service.adoc │ ├── index.adoc │ ├── infinispan-cluster-service.adoc │ ├── jgroups-raft-cluster-service.adoc │ ├── jolokia.adoc │ ├── kubernetes-cluster-service.adoc │ ├── list.adoc │ └── zookeeper-cluster-service.adoc ├── dsl-starter/ │ ├── camel-cli-connector-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cli-connector.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── springboot/ │ │ │ └── cli/ │ │ │ └── connector/ │ │ │ ├── CliConnectorAutoConfiguration.java │ │ │ ├── CliConnectorConfiguration.java │ │ │ ├── SpringCliConnectorFactory.java │ │ │ └── SpringLocalCliConnector.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cli-debug-starter/ │ │ └── pom.xml │ ├── camel-componentdsl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-dsl-modeline-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-endpointdsl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── spring/ │ │ │ └── boot/ │ │ │ └── endpointdsl/ │ │ │ ├── EndpointDslAutoConfiguration.java │ │ │ └── EndpointDslRouteCollector.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-java-joor-dsl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── java-joor-dsl.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-xml-io-dsl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xml-io-dsl.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-xml-jaxb-dsl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── xml-jaxb-dsl.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-yaml-dsl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── yaml-io-dsl.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-yaml-io-starter/ │ │ └── pom.xml │ └── pom.xml ├── mvnw ├── mvnw.cmd ├── parent/ │ └── pom.xml ├── pom.xml ├── starter-create ├── starter-create.cmd ├── starter-delete ├── starter-delete.cmd ├── tests/ │ ├── camel-itest-resources-for-fatjar/ │ │ ├── README.adoc │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── routes/ │ │ ├── foobar/ │ │ │ └── foobar-route.xml │ │ └── xyz/ │ │ ├── abc-route.xml │ │ └── xyz-route.xml │ ├── camel-itest-spring-boot/ │ │ ├── README.adoc │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── itest/ │ │ │ │ └── springboot/ │ │ │ │ ├── common/ │ │ │ │ │ ├── AbstractSpringBootBaseTestSupport.java │ │ │ │ │ ├── ArchetypeConfig.java │ │ │ │ │ └── ArchetypeGenerationExtension.java │ │ │ │ └── util/ │ │ │ │ └── CreateTestClass.java │ │ │ └── resources/ │ │ │ └── logback.xml │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── itest/ │ │ │ └── springboot/ │ │ │ ├── CamelActivemq6IT.java │ │ │ ├── CamelActivemqIT.java │ │ │ ├── CamelAmqpIT.java │ │ │ ├── CamelArangodbIT.java │ │ │ ├── CamelAs2IT.java │ │ │ ├── CamelAsn1IT.java │ │ │ ├── CamelAsteriskIT.java │ │ │ ├── CamelAtmosphereWebsocketIT.java │ │ │ ├── CamelAtomIT.java │ │ │ ├── CamelAvroIT.java │ │ │ ├── CamelAvroRpcIT.java │ │ │ ├── CamelAws2AthenaIT.java │ │ │ ├── CamelAws2ComprehendIT.java │ │ │ ├── CamelAws2CwIT.java │ │ │ ├── CamelAws2DdbIT.java │ │ │ ├── CamelAws2Ec2IT.java │ │ │ ├── CamelAws2EcsIT.java │ │ │ ├── CamelAws2EksIT.java │ │ │ ├── CamelAws2EventbridgeIT.java │ │ │ ├── CamelAws2IamIT.java │ │ │ ├── CamelAws2KinesisIT.java │ │ │ ├── CamelAws2KmsIT.java │ │ │ ├── CamelAws2LambdaIT.java │ │ │ ├── CamelAws2MqIT.java │ │ │ ├── CamelAws2MskIT.java │ │ │ ├── CamelAws2PollyIT.java │ │ │ ├── CamelAws2RedshiftIT.java │ │ │ ├── CamelAws2RekognitionIT.java │ │ │ ├── CamelAws2S3IT.java │ │ │ ├── CamelAws2S3VectorsIT.java │ │ │ ├── CamelAws2SesIT.java │ │ │ ├── CamelAws2SnsIT.java │ │ │ ├── CamelAws2SqsIT.java │ │ │ ├── CamelAws2StepFunctionsIT.java │ │ │ ├── CamelAws2StsIT.java │ │ │ ├── CamelAws2TextractIT.java │ │ │ ├── CamelAws2TimestreamIT.java │ │ │ ├── CamelAws2TranscribeIT.java │ │ │ ├── CamelAws2TranslateIT.java │ │ │ ├── CamelAwsBedrockIT.java │ │ │ ├── CamelAwsCloudtrailIT.java │ │ │ ├── CamelAwsConfigIT.java │ │ │ ├── CamelAwsParameterStoreIT.java │ │ │ ├── CamelAwsSecretsManagerIT.java │ │ │ ├── CamelAwsSecurityHubIT.java │ │ │ ├── CamelAzureCosmosdbIT.java │ │ │ ├── CamelAzureEventgridIT.java │ │ │ ├── CamelAzureEventhubsIT.java │ │ │ ├── CamelAzureFilesIT.java │ │ │ ├── CamelAzureFunctionsIT.java │ │ │ ├── CamelAzureKeyVaultIT.java │ │ │ ├── CamelAzureServicebusIT.java │ │ │ ├── CamelAzureStorageBlobIT.java │ │ │ ├── CamelAzureStorageDatalakeIT.java │ │ │ ├── CamelAzureStorageQueueIT.java │ │ │ ├── CamelBarcodeIT.java │ │ │ ├── CamelBase64IT.java │ │ │ ├── CamelBeanIT.java │ │ │ ├── CamelBeanValidatorIT.java │ │ │ ├── CamelBeanioIT.java │ │ │ ├── CamelBindyIT.java │ │ │ ├── CamelBonitaIT.java │ │ │ ├── CamelBoxIT.java │ │ │ ├── CamelBraintreeIT.java │ │ │ ├── CamelBrowseIT.java │ │ │ ├── CamelCaffeineIT.java │ │ │ ├── CamelCassandraqlIT.java │ │ │ ├── CamelCborIT.java │ │ │ ├── CamelChatscriptIT.java │ │ │ ├── CamelChunkIT.java │ │ │ ├── CamelClickupIT.java │ │ │ ├── CamelCmSmsIT.java │ │ │ ├── CamelCoapIT.java │ │ │ ├── CamelCometdIT.java │ │ │ ├── CamelConsulClusterServiceIT.java │ │ │ ├── CamelConsulIT.java │ │ │ ├── CamelControlbusIT.java │ │ │ ├── CamelCoreIT.java │ │ │ ├── CamelCouchbaseIT.java │ │ │ ├── CamelCouchdbIT.java │ │ │ ├── CamelCronIT.java │ │ │ ├── CamelCryptoIT.java │ │ │ ├── CamelCryptoPgpIT.java │ │ │ ├── CamelCsimpleJoorIT.java │ │ │ ├── CamelCsvIT.java │ │ │ ├── CamelCxfRestIT.java │ │ │ ├── CamelCxfSoapIT.java │ │ │ ├── CamelCyberarkVaultIT.java │ │ │ ├── CamelDaprIT.java │ │ │ ├── CamelDataformatIT.java │ │ │ ├── CamelDatasetIT.java │ │ │ ├── CamelDatasonnetIT.java │ │ │ ├── CamelDebeziumDb2IT.java │ │ │ ├── CamelDebeziumMongodbIT.java │ │ │ ├── CamelDebeziumMysqlIT.java │ │ │ ├── CamelDebeziumOracleIT.java │ │ │ ├── CamelDebeziumPostgresIT.java │ │ │ ├── CamelDebeziumSqlserverIT.java │ │ │ ├── CamelDfdlIT.java │ │ │ ├── CamelDhis2IT.java │ │ │ ├── CamelDigitaloceanIT.java │ │ │ ├── CamelDirectIT.java │ │ │ ├── CamelDisruptorIT.java │ │ │ ├── CamelDjlIT.java │ │ │ ├── CamelDnsIT.java │ │ │ ├── CamelDockerIT.java │ │ │ ├── CamelDoclingIT.java │ │ │ ├── CamelDrillIT.java │ │ │ ├── CamelDropboxIT.java │ │ │ ├── CamelDynamicRouterIT.java │ │ │ ├── CamelEhcacheIT.java │ │ │ ├── CamelElasticsearchIT.java │ │ │ ├── CamelElasticsearchRestClientIT.java │ │ │ ├── CamelExecIT.java │ │ │ ├── CamelFastjsonIT.java │ │ │ ├── CamelFhirIT.java │ │ │ ├── CamelFileClusterServiceIT.java │ │ │ ├── CamelFileIT.java │ │ │ ├── CamelFileWatchIT.java │ │ │ ├── CamelFlatpackIT.java │ │ │ ├── CamelFlinkIT.java │ │ │ ├── CamelFlowableIT.java │ │ │ ├── CamelFopIT.java │ │ │ ├── CamelForyIT.java │ │ │ ├── CamelFreemarkerIT.java │ │ │ ├── CamelFtpIT.java │ │ │ ├── CamelGeocoderIT.java │ │ │ ├── CamelGitIT.java │ │ │ ├── CamelGithub2IT.java │ │ │ ├── CamelGithubIT.java │ │ │ ├── CamelGoogleBigqueryIT.java │ │ │ ├── CamelGoogleCalendarIT.java │ │ │ ├── CamelGoogleDriveIT.java │ │ │ ├── CamelGoogleFirestoreIT.java │ │ │ ├── CamelGoogleFunctionsIT.java │ │ │ ├── CamelGoogleMailIT.java │ │ │ ├── CamelGooglePubsubIT.java │ │ │ ├── CamelGoogleSecretManagerIT.java │ │ │ ├── CamelGoogleSheetsIT.java │ │ │ ├── CamelGoogleSpeechToTextIT.java │ │ │ ├── CamelGoogleStorageIT.java │ │ │ ├── CamelGoogleTextToSpeechIT.java │ │ │ ├── CamelGoogleVertexaiIT.java │ │ │ ├── CamelGoogleVisionIT.java │ │ │ ├── CamelGraphqlIT.java │ │ │ ├── CamelGrokIT.java │ │ │ ├── CamelGroovyIT.java │ │ │ ├── CamelGrpcIT.java │ │ │ ├── CamelGsonIT.java │ │ │ ├── CamelHashicorpVaultIT.java │ │ │ ├── CamelHazelcastIT.java │ │ │ ├── CamelHl7IT.java │ │ │ ├── CamelHttpIT.java │ │ │ ├── CamelHuaweicloudDmsIT.java │ │ │ ├── CamelHuaweicloudFrsIT.java │ │ │ ├── CamelHuaweicloudFunctiongraphIT.java │ │ │ ├── CamelHuaweicloudIamIT.java │ │ │ ├── CamelHuaweicloudImagerecognitionIT.java │ │ │ ├── CamelHuaweicloudObsIT.java │ │ │ ├── CamelHuaweicloudSmnIT.java │ │ │ ├── CamelHuggingfaceIT.java │ │ │ ├── CamelIbmCosIT.java │ │ │ ├── CamelIbmSecretsManagerIT.java │ │ │ ├── CamelIbmWatsonDiscoveryIT.java │ │ │ ├── CamelIbmWatsonLanguageIT.java │ │ │ ├── CamelIbmWatsonSpeechToTextIT.java │ │ │ ├── CamelIbmWatsonTextToSpeechIT.java │ │ │ ├── CamelIbmWatsonxAiIT.java │ │ │ ├── CamelIcalIT.java │ │ │ ├── CamelIec60870IT.java │ │ │ ├── CamelIggyIT.java │ │ │ ├── CamelIgniteIT.java │ │ │ ├── CamelInfinispanClusterServiceIT.java │ │ │ ├── CamelInfinispanEmbeddedIT.java │ │ │ ├── CamelInfinispanIT.java │ │ │ ├── CamelInfluxdb2IT.java │ │ │ ├── CamelInfluxdbIT.java │ │ │ ├── CamelIrcIT.java │ │ │ ├── CamelIronmqIT.java │ │ │ ├── CamelIso8583IT.java │ │ │ ├── CamelJacksonAvroIT.java │ │ │ ├── CamelJacksonIT.java │ │ │ ├── CamelJacksonProtobufIT.java │ │ │ ├── CamelJacksonxmlIT.java │ │ │ ├── CamelJavascriptIT.java │ │ │ ├── CamelJaxbIT.java │ │ │ ├── CamelJcacheIT.java │ │ │ ├── CamelJcrIT.java │ │ │ ├── CamelJdbcIT.java │ │ │ ├── CamelJettyIT.java │ │ │ ├── CamelJgroupsIT.java │ │ │ ├── CamelJgroupsRaftClusterServiceIT.java │ │ │ ├── CamelJgroupsRaftIT.java │ │ │ ├── CamelJiraIT.java │ │ │ ├── CamelJmsIT.java │ │ │ ├── CamelJmxIT.java │ │ │ ├── CamelJoltIT.java │ │ │ ├── CamelJooqIT.java │ │ │ ├── CamelJoorIT.java │ │ │ ├── CamelJpaIT.java │ │ │ ├── CamelJqIT.java │ │ │ ├── CamelJschIT.java │ │ │ ├── CamelJsltIT.java │ │ │ ├── CamelJsonPatchIT.java │ │ │ ├── CamelJsonValidatorIT.java │ │ │ ├── CamelJsonapiIT.java │ │ │ ├── CamelJsonataIT.java │ │ │ ├── CamelJsonbIT.java │ │ │ ├── CamelJsonpathIT.java │ │ │ ├── CamelJt400IT.java │ │ │ ├── CamelJteIT.java │ │ │ ├── CamelKafkaIT.java │ │ │ ├── CamelKameletIT.java │ │ │ ├── CamelKeycloakIT.java │ │ │ ├── CamelKnativeIT.java │ │ │ ├── CamelKserveIT.java │ │ │ ├── CamelKubernetesClusterServiceIT.java │ │ │ ├── CamelKubernetesIT.java │ │ │ ├── CamelKuduIT.java │ │ │ ├── CamelLangchain4jAgentIT.java │ │ │ ├── CamelLangchain4jChatIT.java │ │ │ ├── CamelLangchain4jEmbeddingsIT.java │ │ │ ├── CamelLangchain4jEmbeddingstoreIT.java │ │ │ ├── CamelLangchain4jToolsIT.java │ │ │ ├── CamelLangchain4jWebSearchIT.java │ │ │ ├── CamelLanguageIT.java │ │ │ ├── CamelLdapIT.java │ │ │ ├── CamelLdifIT.java │ │ │ ├── CamelLogIT.java │ │ │ ├── CamelLraIT.java │ │ │ ├── CamelLuceneIT.java │ │ │ ├── CamelLumberjackIT.java │ │ │ ├── CamelLzfIT.java │ │ │ ├── CamelMailIT.java │ │ │ ├── CamelMapstructIT.java │ │ │ ├── CamelMasterIT.java │ │ │ ├── CamelMetricsIT.java │ │ │ ├── CamelMicrometerIT.java │ │ │ ├── CamelMiloIT.java │ │ │ ├── CamelMilvusIT.java │ │ │ ├── CamelMinaIT.java │ │ │ ├── CamelMinaSftpIT.java │ │ │ ├── CamelMinioIT.java │ │ │ ├── CamelMllpIT.java │ │ │ ├── CamelMockIT.java │ │ │ ├── CamelMongodbGridfsIT.java │ │ │ ├── CamelMongodbIT.java │ │ │ ├── CamelMustacheIT.java │ │ │ ├── CamelMvelIT.java │ │ │ ├── CamelMybatisIT.java │ │ │ ├── CamelNatsIT.java │ │ │ ├── CamelNeo4jIT.java │ │ │ ├── CamelNettyHttpIT.java │ │ │ ├── CamelNettyIT.java │ │ │ ├── CamelOaipmhIT.java │ │ │ ├── CamelOcsfIT.java │ │ │ ├── CamelOgnlIT.java │ │ │ ├── CamelOlingo2IT.java │ │ │ ├── CamelOlingo4IT.java │ │ │ ├── CamelOnceIT.java │ │ │ ├── CamelOpenaiIT.java │ │ │ ├── CamelOpensearchIT.java │ │ │ ├── CamelOpenstackIT.java │ │ │ ├── CamelOpentelemetryIT.java │ │ │ ├── CamelOpentelemetryMetricsIT.java │ │ │ ├── CamelOptaplannerIT.java │ │ │ ├── CamelPahoIT.java │ │ │ ├── CamelPahoMqtt5IT.java │ │ │ ├── CamelParquetAvroIT.java │ │ │ ├── CamelPdfIT.java │ │ │ ├── CamelPgReplicationSlotIT.java │ │ │ ├── CamelPgeventIT.java │ │ │ ├── CamelPineconeIT.java │ │ │ ├── CamelPlatformHttpIT.java │ │ │ ├── CamelPlc4xIT.java │ │ │ ├── CamelPqcIT.java │ │ │ ├── CamelPrinterIT.java │ │ │ ├── CamelProtobufIT.java │ │ │ ├── CamelPubnubIT.java │ │ │ ├── CamelPulsarIT.java │ │ │ ├── CamelPythonIT.java │ │ │ ├── CamelQdrantIT.java │ │ │ ├── CamelQuartzIT.java │ │ │ ├── CamelQuickfixIT.java │ │ │ ├── CamelReactiveStreamsIT.java │ │ │ ├── CamelRefIT.java │ │ │ ├── CamelRestIT.java │ │ │ ├── CamelRestOpenapiIT.java │ │ │ ├── CamelRobotframeworkIT.java │ │ │ ├── CamelRocketmqIT.java │ │ │ ├── CamelRssIT.java │ │ │ ├── CamelSagaIT.java │ │ │ ├── CamelSalesforceIT.java │ │ │ ├── CamelSapNetweaverIT.java │ │ │ ├── CamelSaxonIT.java │ │ │ ├── CamelSchedulerIT.java │ │ │ ├── CamelSchematronIT.java │ │ │ ├── CamelSedaIT.java │ │ │ ├── CamelServicenowIT.java │ │ │ ├── CamelServletIT.java │ │ │ ├── CamelSjms2IT.java │ │ │ ├── CamelSjmsIT.java │ │ │ ├── CamelSlackIT.java │ │ │ ├── CamelSmbIT.java │ │ │ ├── CamelSmooksIT.java │ │ │ ├── CamelSmppIT.java │ │ │ ├── CamelSnakeyamlIT.java │ │ │ ├── CamelSnmpIT.java │ │ │ ├── CamelSoapIT.java │ │ │ ├── CamelSolrIT.java │ │ │ ├── CamelSplunkHecIT.java │ │ │ ├── CamelSplunkIT.java │ │ │ ├── CamelSpringAiChatIT.java │ │ │ ├── CamelSpringAiEmbeddingsIT.java │ │ │ ├── CamelSpringAiImageIT.java │ │ │ ├── CamelSpringAiToolsIT.java │ │ │ ├── CamelSpringAiVectorStoreIT.java │ │ │ ├── CamelSpringBatchIT.java │ │ │ ├── CamelSpringIT.java │ │ │ ├── CamelSpringJdbcIT.java │ │ │ ├── CamelSpringLdapIT.java │ │ │ ├── CamelSpringRabbitmqIT.java │ │ │ ├── CamelSpringRedisIT.java │ │ │ ├── CamelSpringWsIT.java │ │ │ ├── CamelSqlIT.java │ │ │ ├── CamelSshIT.java │ │ │ ├── CamelStaxIT.java │ │ │ ├── CamelStitchIT.java │ │ │ ├── CamelStreamIT.java │ │ │ ├── CamelStringtemplateIT.java │ │ │ ├── CamelStripeIT.java │ │ │ ├── CamelStubIT.java │ │ │ ├── CamelSwiftIT.java │ │ │ ├── CamelSyslogIT.java │ │ │ ├── CamelTahuIT.java │ │ │ ├── CamelTarfileIT.java │ │ │ ├── CamelTelegramIT.java │ │ │ ├── CamelTensorflowServingIT.java │ │ │ ├── CamelThriftIT.java │ │ │ ├── CamelThymeleafIT.java │ │ │ ├── CamelTikaIT.java │ │ │ ├── CamelTimerIT.java │ │ │ ├── CamelTwilioIT.java │ │ │ ├── CamelTwitterIT.java │ │ │ ├── CamelUndertowIT.java │ │ │ ├── CamelUnivocityParsersIT.java │ │ │ ├── CamelValidatorIT.java │ │ │ ├── CamelVelocityIT.java │ │ │ ├── CamelVertxHttpIT.java │ │ │ ├── CamelVertxIT.java │ │ │ ├── CamelVertxWebsocketIT.java │ │ │ ├── CamelWasmIT.java │ │ │ ├── CamelWeatherIT.java │ │ │ ├── CamelWeaviateIT.java │ │ │ ├── CamelWeb3jIT.java │ │ │ ├── CamelWebhookIT.java │ │ │ ├── CamelWhatsappIT.java │ │ │ ├── CamelWordpressIT.java │ │ │ ├── CamelWorkdayIT.java │ │ │ ├── CamelXchangeIT.java │ │ │ ├── CamelXjIT.java │ │ │ ├── CamelXmlsecurityIT.java │ │ │ ├── CamelXmppIT.java │ │ │ ├── CamelXpathIT.java │ │ │ ├── CamelXsltIT.java │ │ │ ├── CamelXsltSaxonIT.java │ │ │ ├── CamelZeebeIT.java │ │ │ ├── CamelZendeskIT.java │ │ │ ├── CamelZipDeflaterIT.java │ │ │ ├── CamelZipfileIT.java │ │ │ ├── CamelZookeeperClusterServiceIT.java │ │ │ ├── CamelZookeeperIT.java │ │ │ ├── CamelZookeeperMasterIT.java │ │ │ └── catalog/ │ │ │ └── CamelCatalogIT.java │ │ └── resources/ │ │ └── logback-test.xml │ ├── camel-itest-spring-boot-farjar/ │ │ ├── pom.xml │ │ └── src/ │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── springfatjartests/ │ │ └── CamelXmlWildcardRoutesIT.java │ └── pom.xml └── tooling/ ├── camel-spring-boot-bom/ │ └── pom.xml ├── camel-spring-boot-bom-generator/ │ ├── pom.xml │ └── target-template-pom.xml ├── camel-spring-boot-config-generator-maven-plugin/ │ ├── pom.xml │ └── src/ │ └── main/ │ └── java/ │ └── org/ │ └── apache/ │ └── camel/ │ └── springboot/ │ └── maven/ │ └── SpringBootConfigGeneratorMojo.java ├── camel-spring-boot-dependencies/ │ └── pom.xml ├── camel-spring-boot-dependencies-generator/ │ ├── pom.xml │ └── target-template-pom.xml ├── camel-spring-boot-generator-maven-plugin/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── springboot/ │ │ │ └── maven/ │ │ │ ├── AbstractSpringBootGenerator.java │ │ │ ├── BomDependenciesGeneratorMojo.java │ │ │ ├── BomGeneratorMojo.java │ │ │ ├── DynamicClassLoader.java │ │ │ ├── PrepareCatalogSpringBootMojo.java │ │ │ ├── SpringBootAutoConfigurationMojo.java │ │ │ ├── SpringBootStarterMojo.java │ │ │ ├── StarterGeneratorMojo.java │ │ │ ├── UpdateSpringBootAutoConfigurationReadmeMojo.java │ │ │ └── model/ │ │ │ ├── SpringBootAutoConfigureOptionModel.java │ │ │ └── SpringBootModel.java │ │ └── resources/ │ │ ├── spring-boot-fix-dependencies.properties │ │ ├── spring-boot-starter-LICENSE.txt │ │ ├── spring-boot-starter-NOTICE.txt │ │ └── spring-boot-starter-template-pom.template │ └── test/ │ └── java/ │ └── org/ │ └── apache/ │ └── camel/ │ └── springboot/ │ └── maven/ │ └── SpringBootStarterMojoTest.java ├── camel-spring-boot-starter-generator/ │ ├── pom.xml │ └── template-starter-pom.xml ├── camel-starter-parent/ │ └── pom.xml └── pom.xml