├── .asf.yaml ├── .gitattributes ├── .github ├── 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.jdk17 ├── Jenkinsfile.sb.ppc64le ├── KEYS ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── archetypes ├── camel-archetype-spring-boot │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── resources-filtered │ │ │ └── META-INF │ │ │ │ └── maven │ │ │ │ └── archetype-metadata.xml │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ │ │ └── archetype-resources │ │ │ ├── pom.xml │ │ │ ├── readme.adoc │ │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ ├── MySpringBean.java │ │ │ │ ├── MySpringBootApplication.java │ │ │ │ └── MySpringBootRouter.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── LICENSE.txt │ │ │ │ └── NOTICE.txt │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── MySpringBootApplicationTest.java │ │ └── 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.properties │ │ │ ├── beans │ │ │ ├── CaffeineAggregationRepository.json │ │ │ ├── CaffeineIdempotentRepository.json │ │ │ ├── CassandraAggregationRepository.json │ │ │ ├── CassandraIdempotentRepository.json │ │ │ ├── CronScheduledRoutePolicy.json │ │ │ ├── EhcacheAggregationRepository.json │ │ │ ├── EhcacheIdempotentRepository.json │ │ │ ├── ElasticsearchBulkRequestAggregationStrategy.json │ │ │ ├── Etcd3AggregationRepository.json │ │ │ ├── HazelcastAggregationRepository.json │ │ │ ├── HazelcastIdempotentRepository.json │ │ │ ├── InfinispanEmbeddedAggregationRepository.json │ │ │ ├── InfinispanEmbeddedIdempotentRepository.json │ │ │ ├── InfinispanRemoteAggregationRepository.json │ │ │ ├── InfinispanRemoteIdempotentRepository.json │ │ │ ├── JCacheAggregationRepository.json │ │ │ ├── JCacheIdempotentRepository.json │ │ │ ├── JdbcAggregationRepository.json │ │ │ ├── JdbcMessageIdRepository.json │ │ │ ├── KafkaIdempotentRepository.json │ │ │ ├── LevelDBAggregationRepository.json │ │ │ ├── LoggingHttpActivityListener.json │ │ │ ├── MongoDbIdempotentRepository.json │ │ │ ├── OpensearchBulkRequestAggregationStrategy.json │ │ │ ├── SimpleScheduledRoutePolicy.json │ │ │ ├── SpringRedisIdempotentRepository.json │ │ │ ├── TarAggregationStrategy.json │ │ │ ├── XsltAggregationStrategy.json │ │ │ ├── XsltSaxonAggregationStrategy.json │ │ │ └── ZipAggregationStrategy.json │ │ │ ├── components.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-secrets-manager.json │ │ │ ├── aws2-athena.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-redshift-data.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-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 │ │ │ ├── google-bigquery-sql.json │ │ │ ├── google-bigquery.json │ │ │ ├── google-calendar-stream.json │ │ │ ├── google-calendar.json │ │ │ ├── google-drive.json │ │ │ ├── google-functions.json │ │ │ ├── google-mail-stream.json │ │ │ ├── google-mail.json │ │ │ ├── google-pubsub-lite.json │ │ │ ├── google-pubsub.json │ │ │ ├── google-secret-manager.json │ │ │ ├── google-sheets-stream.json │ │ │ ├── google-sheets.json │ │ │ ├── google-storage.json │ │ │ ├── google-vertexai.json │ │ │ ├── grape.json │ │ │ ├── graphql.json │ │ │ ├── grpc.json │ │ │ ├── guava-eventbus.json │ │ │ ├── hashicorp-vault.json │ │ │ ├── hazelcast-atomicvalue.json │ │ │ ├── hazelcast-instance.json │ │ │ ├── hazelcast-list.json │ │ │ ├── hazelcast-map.json │ │ │ ├── hazelcast-multimap.json │ │ │ ├── hazelcast-queue.json │ │ │ ├── hazelcast-replicatedmap.json │ │ │ ├── hazelcast-ringbuffer.json │ │ │ ├── hazelcast-seda.json │ │ │ ├── hazelcast-set.json │ │ │ ├── hazelcast-topic.json │ │ │ ├── http.json │ │ │ ├── https.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 │ │ │ ├── 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.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 │ │ │ ├── nitrite.json │ │ │ ├── oaipmh.json │ │ │ ├── olingo2.json │ │ │ ├── olingo4.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-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 │ │ │ ├── stomp.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 │ │ │ ├── torchserve.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 │ │ │ ├── dataformats.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── dev-consoles.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── languages.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 │ │ │ ├── others.properties │ │ │ ├── others │ │ │ ├── aws-xray.json │ │ │ ├── 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 │ │ │ ├── jandex.json │ │ │ ├── jasypt.json │ │ │ ├── java-joor-dsl.json │ │ │ ├── jfr.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 │ │ │ ├── transformers.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-stream-application-cloudevents.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 │ │ └── 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-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.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── aws │ │ │ └── secretsmanager │ │ │ └── springboot │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources │ │ └── application.properties ├── camel-aws-xray-starter │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docs │ │ │ └── aws-xray.json │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── camel │ │ │ │ └── aws │ │ │ │ └── xray │ │ │ │ └── starter │ │ │ │ ├── AwsXRayAutoConfiguration.java │ │ │ │ ├── AwsXRayConfigurationProperties.java │ │ │ │ └── CamelAwsXRayTracingStrategy.java │ │ └── resources │ │ │ └── META-INF │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── aws │ │ │ └── xray │ │ │ └── starter │ │ │ ├── CamelAwsXRayCustomTest.java │ │ │ ├── CamelAwsXRayDisabledTest.java │ │ │ ├── CamelAwsXRayNoopTest.java │ │ │ ├── CamelAwsXRayTest.java │ │ │ └── CustomAwsXRayTracingStrategy.java │ │ └── resources │ │ ├── default.properties │ │ ├── disabled.properties │ │ └── noop.properties ├── 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-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-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-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-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.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── 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 │ │ └── 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 │ │ │ │ └── cloud │ │ │ │ ├── ConsulServiceDiscoveryAutoConfiguration.java │ │ │ │ ├── ConsulServiceRegistryAutoConfiguration.java │ │ │ │ └── ConsulServiceRegistryConfiguration.java │ │ └── resources │ │ │ └── META-INF │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── consul │ │ │ └── springboot │ │ │ └── cloud │ │ │ └── ConsulServiceDiscoveryTest.java │ │ └── resources │ │ ├── application.properties │ │ └── logback.xml ├── 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.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── 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 │ │ │ │ └── cloud │ │ │ │ └── DnsCloudAutoConfiguration.java │ │ └── resources │ │ │ └── META-INF │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── dns │ │ │ └── springboot │ │ │ └── cloud │ │ │ └── DnsServiceDiscoveryTest.java │ │ └── resources │ │ ├── application.properties │ │ └── logback.xml ├── 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 │ │ └── 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 │ │ └── ftpbinarytest │ │ │ ├── logo.jpeg │ │ │ ├── logo1.jpeg │ │ │ ├── logo2.png │ │ │ └── logo3.jpeg │ │ ├── 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-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-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-lite-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── google-pubsub-lite.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── google │ │ │ └── pubsublite │ │ │ └── springboot │ │ │ ├── GooglePubsubLiteComponentAutoConfiguration.java │ │ │ └── GooglePubsubLiteComponentConfiguration.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.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── 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-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-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-grape-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── grape.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── grape │ │ │ └── springboot │ │ │ ├── GrapeComponentAutoConfiguration.java │ │ │ ├── GrapeComponentConfiguration.java │ │ │ └── GrapeComponentConverter.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 │ │ │ └── language │ │ │ └── groovy │ │ │ └── springboot │ │ │ ├── GroovyLanguageAutoConfiguration.java │ │ │ └── GroovyLanguageConfiguration.java │ │ └── resources │ │ └── META-INF │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports ├── camel-groovy-xml-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── groovy-xml.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── groovy │ │ │ └── xml │ │ │ └── springboot │ │ │ ├── GroovyXmlDataFormatAutoConfiguration.java │ │ │ └── GroovyXmlDataFormatConfiguration.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-guava-eventbus-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── guava-eventbus.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── guava │ │ │ └── eventbus │ │ │ └── springboot │ │ │ ├── GuavaEventBusComponentAutoConfiguration.java │ │ │ ├── GuavaEventBusComponentConfiguration.java │ │ │ └── GuavaEventBusComponentConverter.java │ │ └── resources │ │ └── META-INF │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports ├── 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.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── 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 │ │ │ ├── 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.json │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── camel │ │ │ │ └── component │ │ │ │ └── http │ │ │ │ └── springboot │ │ │ │ ├── HttpComponentAutoConfiguration.java │ │ │ │ ├── HttpComponentConfiguration.java │ │ │ │ ├── HttpComponentConverter.java │ │ │ │ └── HttpComponentTimeoutConverter.java │ │ └── resources │ │ │ └── META-INF │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test │ │ └── java │ │ └── org │ │ └── apache │ │ └── camel │ │ └── component │ │ └── http │ │ └── springboot │ │ └── 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-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.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── 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-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-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.factories │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── 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 │ │ │ └── jolokia.adoc │ │ ├── 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-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 │ │ └── 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 │ │ └── kafka │ │ └── clients │ │ └── consumer │ │ └── KafkaConsumerTest.java ├── 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 │ │ │ │ └── springboot │ │ │ │ │ └── cloud │ │ │ │ │ └── KubernetesServiceDiscoveryAutoConfiguration.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 │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── kubernetes │ │ │ └── springboot │ │ │ └── test │ │ │ └── cloud │ │ │ └── KubernetesServiceDiscoveryAutoConfigurationTest.java │ │ └── resources │ │ └── logback.xml ├── 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-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-nitrite-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── nitrite.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── nitrite │ │ │ └── springboot │ │ │ ├── NitriteComponentAutoConfiguration.java │ │ │ └── NitriteComponentConfiguration.java │ │ └── resources │ │ └── META-INF │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports ├── 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 ├── 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-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.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 │ │ │ │ └── actuate │ │ │ │ └── metrics │ │ │ │ └── undertow │ │ │ │ ├── UndertowComponents.java │ │ │ │ ├── UndertowMetrics.java │ │ │ │ ├── UndertowMetricsAutoConfiguration.java │ │ │ │ └── UndertowMetricsBinder.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 │ │ │ ├── PlatformHttpStreamingTest.java │ │ │ ├── SpringBootPlatformHttpBridgedEndpointTest.java │ │ │ ├── SpringBootPlatformHttpCamelIntegrationsTest.java │ │ │ ├── SpringBootPlatformHttpCamelVirtualThreadsTest.java │ │ │ ├── SpringBootPlatformHttpCertificationTest.java │ │ │ ├── SpringBootPlatformHttpCookiesTest.java │ │ │ ├── SpringBootPlatformHttpCorsCredentialsTest.java │ │ │ ├── SpringBootPlatformHttpCorsTest.java │ │ │ ├── SpringBootPlatformHttpEngineTest.java │ │ │ ├── SpringBootPlatformHttpHandleWriteErrorTest.java │ │ │ ├── SpringBootPlatformHttpJacksonConverterTest.java │ │ │ ├── SpringBootPlatformHttpMultipleExecutorsTest.java │ │ │ ├── SpringBootPlatformHttpMultipleExecutorsVirtualThreadsTest.java │ │ │ ├── SpringBootPlatformHttpOptionsTest.java │ │ │ ├── SpringBootPlatformHttpProxyTest.java │ │ │ ├── SpringBootPlatformHttpRequestTimeoutTest.java │ │ │ ├── SpringBootPlatformHttpRestDSLTest.java │ │ │ ├── SpringBootPlatformHttpSessionTest.java │ │ │ ├── SpringBootPlatformHttpSpringSessionTest.java │ │ │ ├── SpringBootPlatformHttpTest.java │ │ │ ├── SpringBootPlatformHttpTypeConverterTest.java │ │ │ ├── SpringBootPlatformHttpValidationTest.java │ │ │ ├── SpringBootPlatformHttpVirtualThreadsOptimizedTest.java │ │ │ └── SpringBootPlatformHttpVirtualThreadsTest.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 │ │ │ ├── RawPayloadTest.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-service-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── service.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── service │ │ │ └── springboot │ │ │ ├── ServiceComponentAutoConfiguration.java │ │ │ ├── ServiceComponentConfiguration.java │ │ │ └── ServiceComponentConverter.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-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-stomp-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── stomp.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── stomp │ │ │ └── springboot │ │ │ ├── StompComponentAutoConfiguration.java │ │ │ ├── StompComponentConfiguration.java │ │ │ └── StompComponentConverter.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.jpg │ │ ├── sample.mp3 │ │ ├── sample.mp4 │ │ ├── sample.png │ │ ├── sample.txt │ │ └── sample.webp │ │ └── 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-torchserve-starter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docs │ │ └── torchserve.json │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── torchserve │ │ │ └── springboot │ │ │ ├── TorchServeComponentAutoConfiguration.java │ │ │ ├── TorchServeComponentConfiguration.java │ │ │ └── TorchServeComponentConverter.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 │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── camel │ │ │ │ └── xml │ │ │ │ └── jaxb │ │ │ │ └── springboot │ │ │ │ ├── JAXBRuntimeHints.java │ │ │ │ └── graalvm │ │ │ │ └── JAXBSubstitutions.java │ │ └── resources │ │ │ └── META-INF │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring │ │ │ └── aot.factories │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── xml │ │ │ └── jaxb │ │ │ └── springboot │ │ │ ├── BeanScope.java │ │ │ ├── Book.java │ │ │ ├── IdentifiedType.java │ │ │ ├── JAXBRuntimeHintsTest.java │ │ │ └── USAddress.java │ │ └── resources │ │ └── org │ │ └── apache │ │ └── camel │ │ └── xml │ │ └── jaxb │ │ └── springboot │ │ └── jaxb.index ├── 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 │ │ ├── corrupt.zip │ │ ├── data.zip │ │ ├── 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 │ │ └── data │ │ └── resources.zip ├── 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 │ │ │ │ └── cloud │ │ │ │ ├── ZooKeeperServiceRegistryAutoConfiguration.java │ │ │ │ └── ZooKeeperServiceRegistryConfiguration.java │ │ └── resources │ │ │ └── META-INF │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── component │ │ │ └── zookeeper │ │ │ └── springboot │ │ │ └── cloud │ │ │ └── ZooKeeperServiceRegistryTest.java │ │ └── resources │ │ ├── application.properties │ │ └── logback.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 ├── core ├── ac-mappings.yml ├── antora.yml ├── 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 ├── 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 │ │ │ │ ├── ComponentConfigurationProperties.java │ │ │ │ ├── ComponentConfigurationPropertiesCommon.java │ │ │ │ ├── DataFormatConfigurationProperties.java │ │ │ │ ├── DataFormatConfigurationPropertiesCommon.java │ │ │ │ ├── FatJarPackageScanClassResolver.java │ │ │ │ ├── FatJarPackageScanResourceResolver.java │ │ │ │ ├── FilePropertySource.java │ │ │ │ ├── LanguageConfigurationProperties.java │ │ │ │ ├── LanguageConfigurationPropertiesCommon.java │ │ │ │ ├── PropertiesComponentConfiguration.java │ │ │ │ ├── SpringBootCamelContext.java │ │ │ │ ├── SpringPropertiesParser.java │ │ │ │ ├── SpringTypeConverter.java │ │ │ │ ├── TypeConversionConfiguration.java │ │ │ │ ├── actuate │ │ │ │ ├── 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 │ │ │ │ ├── aot │ │ │ │ ├── CamelRuntimeHints.java │ │ │ │ ├── ReflectionHelper.java │ │ │ │ └── RuntimeHintsHelper.java │ │ │ │ ├── cloud │ │ │ │ ├── CamelCloudAutoConfiguration.java │ │ │ │ ├── CamelCloudConfigurationProperties.java │ │ │ │ ├── CamelCloudServiceCallConfigurationAutoConfiguration.java │ │ │ │ ├── CamelCloudServiceChooserAutoConfiguration.java │ │ │ │ ├── CamelCloudServiceDiscovery.java │ │ │ │ ├── CamelCloudServiceDiscoveryAutoConfiguration.java │ │ │ │ ├── CamelCloudServiceFilter.java │ │ │ │ └── CamelCloudServiceFilterAutoConfiguration.java │ │ │ │ ├── cluster │ │ │ │ ├── ClusteredRouteControllerAutoConfiguration.java │ │ │ │ ├── ClusteredRouteControllerConfiguration.java │ │ │ │ └── TimePatternConverter.java │ │ │ │ ├── routecontroller │ │ │ │ ├── SupervisingRouteControllerAutoConfiguration.java │ │ │ │ └── SupervisingRouteControllerConfiguration.java │ │ │ │ ├── routetemplate │ │ │ │ ├── CamelRouteTemplateAutoConfiguration.java │ │ │ │ └── CamelRouteTemplateConfigurationProperties.java │ │ │ │ ├── security │ │ │ │ ├── CamelSSLAutoConfiguration.java │ │ │ │ └── CamelSSLConfigurationProperties.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 │ │ ├── java21 │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── camel │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── CamelVirtualThreadEnvironmentPostProcessor.java │ │ ├── resources │ │ │ └── META-INF │ │ │ │ ├── additional-spring-configuration-metadata.json │ │ │ │ ├── native-image │ │ │ │ └── org.apache.camel.springboot │ │ │ │ │ └── camel-spring-boot │ │ │ │ │ └── native-image.properties │ │ │ │ ├── spring.factories │ │ │ │ └── spring │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ ├── resources21 │ │ │ └── META-INF │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── aot │ │ │ ├── CamelRuntimeHintsTest.java │ │ │ └── ReflectionHelperTest.java │ │ │ ├── autostartup │ │ │ ├── AutoStartupExcludePatternAnnotationTest.java │ │ │ └── AutoStartupExcludePatternTest.java │ │ │ ├── cloud │ │ │ ├── CamelCloudServiceCallConfigurationTest.java │ │ │ ├── CamelCloudServiceCallGlobalConfigurationTest.java │ │ │ ├── CamelCloudServiceCallRefExpressionTest.java │ │ │ ├── CamelCloudServiceCallSimpleExpressionTest.java │ │ │ ├── CamelCloudServiceCallTest.java │ │ │ └── SpringBootPropertyUtil.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 │ │ │ └── CamelSSLNoConfigTest.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 │ │ ├── java21 │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── spring │ │ │ └── boot │ │ │ └── CamelVirtualThreadsTest.java │ │ ├── resources │ │ ├── application.properties │ │ ├── camel │ │ │ └── camelContext.xml │ │ ├── logback.xml │ │ └── routes │ │ │ ├── bar.xml │ │ │ └── foo.xml │ │ └── secret │ │ └── do-not-tell.properties └── 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 │ ├── contributing.adoc │ ├── index.adoc │ └── list.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 │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── dsl │ │ │ └── xml │ │ │ └── jaxb │ │ │ └── springboot │ │ │ └── aot │ │ │ └── XMLDSLRuntimeHints.java │ │ └── resources │ │ └── META-INF │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring │ │ └── aot.factories ├── camel-yaml-dsl-starter │ ├── pom.xml │ └── src │ │ └── main │ │ └── 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-spring-boot │ ├── README.adoc │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ └── itest │ │ │ └── springboot │ │ │ ├── ApplicationContextHolder.java │ │ │ ├── Command.java │ │ │ ├── CommandRouter.java │ │ │ ├── ITestApplication.java │ │ │ ├── ITestConfig.java │ │ │ ├── ITestConfigBuilder.java │ │ │ ├── ITestXmlConfiguration.java │ │ │ ├── command │ │ │ ├── AbstractTestCommand.java │ │ │ ├── ComponentTestCommand.java │ │ │ ├── DataFormatTestCommand.java │ │ │ ├── LanguageTestCommand.java │ │ │ ├── UnitTestCommand.java │ │ │ └── UnitTestResult.java │ │ │ └── util │ │ │ └── SerializationUtils.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── camel │ │ │ ├── converter │ │ │ └── myconverter │ │ │ │ └── StaticDummyFallbackConverter.java │ │ │ └── itest │ │ │ └── springboot │ │ │ ├── AbstractSpringBootTestSupport.java │ │ │ ├── CamelActivemq6Test.java │ │ │ ├── CamelActivemqTest.java │ │ │ ├── CamelAmqpTest.java │ │ │ ├── CamelArangodbTest.java │ │ │ ├── CamelAs2Test.java │ │ │ ├── CamelAsn1Test.java │ │ │ ├── CamelAsteriskTest.java │ │ │ ├── CamelAtmosphereWebsocketTest.java │ │ │ ├── CamelAtomTest.java │ │ │ ├── CamelAvroRpcTest.java │ │ │ ├── CamelAvroTest.java │ │ │ ├── CamelAws2AthenaTest.java │ │ │ ├── CamelAws2CwTest.java │ │ │ ├── CamelAws2DdbTest.java │ │ │ ├── CamelAws2Ec2Test.java │ │ │ ├── CamelAws2EcsTest.java │ │ │ ├── CamelAws2EksTest.java │ │ │ ├── CamelAws2EventbridgeTest.java │ │ │ ├── CamelAws2IamTest.java │ │ │ ├── CamelAws2KinesisTest.java │ │ │ ├── CamelAws2KmsTest.java │ │ │ ├── CamelAws2LambdaTest.java │ │ │ ├── CamelAws2MqTest.java │ │ │ ├── CamelAws2MskTest.java │ │ │ ├── CamelAws2RedshiftTest.java │ │ │ ├── CamelAws2S3Test.java │ │ │ ├── CamelAws2SesTest.java │ │ │ ├── CamelAws2SnsTest.java │ │ │ ├── CamelAws2SqsTest.java │ │ │ ├── CamelAws2StepFunctionsTest.java │ │ │ ├── CamelAws2StsTest.java │ │ │ ├── CamelAws2TextractTest.java │ │ │ ├── CamelAws2TimestreamTest.java │ │ │ ├── CamelAws2TranscribeTest.java │ │ │ ├── CamelAws2TranslateTest.java │ │ │ ├── CamelAwsBedrockTest.java │ │ │ ├── CamelAwsCloudtrailTest.java │ │ │ ├── CamelAwsConfigTest.java │ │ │ ├── CamelAwsSecretsManagerTest.java │ │ │ ├── CamelAwsXrayTest.java │ │ │ ├── CamelAzureCosmosdbTest.java │ │ │ ├── CamelAzureEventhubsTest.java │ │ │ ├── CamelAzureFilesTest.java │ │ │ ├── CamelAzureKeyVaultTest.java │ │ │ ├── CamelAzureServicebusTest.java │ │ │ ├── CamelAzureStorageBlobTest.java │ │ │ ├── CamelAzureStorageDatalakeTest.java │ │ │ ├── CamelAzureStorageQueueTest.java │ │ │ ├── CamelBarcodeTest.java │ │ │ ├── CamelBase64Test.java │ │ │ ├── CamelBeanTest.java │ │ │ ├── CamelBeanValidatorTest.java │ │ │ ├── CamelBeanioTest.java │ │ │ ├── CamelBindyTest.java │ │ │ ├── CamelBonitaTest.java │ │ │ ├── CamelBoxTest.java │ │ │ ├── CamelBraintreeTest.java │ │ │ ├── CamelBrowseTest.java │ │ │ ├── CamelCaffeineTest.java │ │ │ ├── CamelCassandraqlTest.java │ │ │ ├── CamelCborTest.java │ │ │ ├── CamelChatscriptTest.java │ │ │ ├── CamelChunkTest.java │ │ │ ├── CamelClickupTest.java │ │ │ ├── CamelCmSmsTest.java │ │ │ ├── CamelCoapTest.java │ │ │ ├── CamelCometdTest.java │ │ │ ├── CamelConsulClusterServiceTest.java │ │ │ ├── CamelConsulTest.java │ │ │ ├── CamelCouchbaseTest.java │ │ │ ├── CamelCouchdbTest.java │ │ │ ├── CamelCronTest.java │ │ │ ├── CamelCryptoPgpTest.java │ │ │ ├── CamelCryptoTest.java │ │ │ ├── CamelCsimpleJoorTest.java │ │ │ ├── CamelCsvTest.java │ │ │ ├── CamelCxfRestTest.java │ │ │ ├── CamelCxfSoapTest.java │ │ │ ├── CamelCxfTransportTest.java │ │ │ ├── CamelDaprTest.java │ │ │ ├── CamelDatasetTest.java │ │ │ ├── CamelDatasonnetTest.java │ │ │ ├── CamelDebeziumDb2Test.java │ │ │ ├── CamelDebeziumMongodbTest.java │ │ │ ├── CamelDebeziumMysqlTest.java │ │ │ ├── CamelDebeziumOracleTest.java │ │ │ ├── CamelDebeziumPostgresTest.java │ │ │ ├── CamelDebeziumSqlserverTest.java │ │ │ ├── CamelDfdlTest.java │ │ │ ├── CamelDhis2Test.java │ │ │ ├── CamelDigitaloceanTest.java │ │ │ ├── CamelDirectTest.java │ │ │ ├── CamelDisruptorTest.java │ │ │ ├── CamelDjlTest.java │ │ │ ├── CamelDnsTest.java │ │ │ ├── CamelDockerTest.java │ │ │ ├── CamelDoclingTest.java │ │ │ ├── CamelDrillTest.java │ │ │ ├── CamelDropboxTest.java │ │ │ ├── CamelDynamicRouterTest.java │ │ │ ├── CamelEhcacheTest.java │ │ │ ├── CamelElasticsearchRestClientTest.java │ │ │ ├── CamelElasticsearchRestTest.java │ │ │ ├── CamelElasticsearchTest.java │ │ │ ├── CamelExecTest.java │ │ │ ├── CamelFastjsonTest.java │ │ │ ├── CamelFhirTest.java │ │ │ ├── CamelFileTest.java │ │ │ ├── CamelFileWatchTest.java │ │ │ ├── CamelFlatpackTest.java │ │ │ ├── CamelFlinkTest.java │ │ │ ├── CamelFlowableTest.java │ │ │ ├── CamelFopTest.java │ │ │ ├── CamelForyTest.java │ │ │ ├── CamelFreemarkerTest.java │ │ │ ├── CamelFtpTest.java │ │ │ ├── CamelGeocoderTest.java │ │ │ ├── CamelGitTest.java │ │ │ ├── CamelGithubTest.java │ │ │ ├── CamelGoogleBigqueryTest.java │ │ │ ├── CamelGoogleCalendarTest.java │ │ │ ├── CamelGoogleDriveTest.java │ │ │ ├── CamelGoogleFunctionsTest.java │ │ │ ├── CamelGoogleMailTest.java │ │ │ ├── CamelGooglePubsubLiteTest.java │ │ │ ├── CamelGooglePubsubTest.java │ │ │ ├── CamelGoogleSecretManagerTest.java │ │ │ ├── CamelGoogleSheetsTest.java │ │ │ ├── CamelGoogleStorageTest.java │ │ │ ├── CamelGrapeTest.java │ │ │ ├── CamelGraphqlTest.java │ │ │ ├── CamelGrokTest.java │ │ │ ├── CamelGroovyTest.java │ │ │ ├── CamelGrpcTest.java │ │ │ ├── CamelGsonTest.java │ │ │ ├── CamelGuavaEventbusTest.java │ │ │ ├── CamelHashicorpVaultTest.java │ │ │ ├── CamelHazelcastTest.java │ │ │ ├── CamelHl7Test.java │ │ │ ├── CamelHttpTest.java │ │ │ ├── CamelHuaweicloudDmsTest.java │ │ │ ├── CamelHuaweicloudFrsTest.java │ │ │ ├── CamelHuaweicloudFunctiongraphTest.java │ │ │ ├── CamelHuaweicloudIamTest.java │ │ │ ├── CamelHuaweicloudImagerecognitionTest.java │ │ │ ├── CamelHuaweicloudObsTest.java │ │ │ ├── CamelHuaweicloudSmnTest.java │ │ │ ├── CamelIbmSecretsManagerTest.java │ │ │ ├── CamelIcalTest.java │ │ │ ├── CamelIec60870Test.java │ │ │ ├── CamelIgniteTest.java │ │ │ ├── CamelInfinispanEmbeddedTest.java │ │ │ ├── CamelInfinispanTest.java │ │ │ ├── CamelInfluxdb2Test.java │ │ │ ├── CamelInfluxdbTest.java │ │ │ ├── CamelIotaTest.java │ │ │ ├── CamelIrcTest.java │ │ │ ├── CamelIronmqTest.java │ │ │ ├── CamelIso8583Test.java │ │ │ ├── CamelJacksonAvroTest.java │ │ │ ├── CamelJacksonProtobufTest.java │ │ │ ├── CamelJacksonTest.java │ │ │ ├── CamelJacksonxmlTest.java │ │ │ ├── CamelJandexTest.java │ │ │ ├── CamelJasyptTest.java │ │ │ ├── CamelJaxbTest.java │ │ │ ├── CamelJcacheTest.java │ │ │ ├── CamelJcrTest.java │ │ │ ├── CamelJdbcTest.java │ │ │ ├── CamelJettyTest.java │ │ │ ├── CamelJgroupsRaftTest.java │ │ │ ├── CamelJgroupsTest.java │ │ │ ├── CamelJiraTest.java │ │ │ ├── CamelJmsTest.java │ │ │ ├── CamelJmxTest.java │ │ │ ├── CamelJoltTest.java │ │ │ ├── CamelJooqTest.java │ │ │ ├── CamelJoorTest.java │ │ │ ├── CamelJpaTest.java │ │ │ ├── CamelJqTest.java │ │ │ ├── CamelJschTest.java │ │ │ ├── CamelJsltTest.java │ │ │ ├── CamelJsonPatchTest.java │ │ │ ├── CamelJsonValidatorTest.java │ │ │ ├── CamelJsonapiTest.java │ │ │ ├── CamelJsonataTest.java │ │ │ ├── CamelJsonbTest.java │ │ │ ├── CamelJsonpathTest.java │ │ │ ├── CamelJt400Test.java │ │ │ ├── CamelJteTest.java │ │ │ ├── CamelKafkaTest.java │ │ │ ├── CamelKameletTest.java │ │ │ ├── CamelKeycloakTest.java │ │ │ ├── CamelKnativeTest.java │ │ │ ├── CamelKserveTest.java │ │ │ ├── CamelKubernetesTest.java │ │ │ ├── CamelKuduTest.java │ │ │ ├── CamelLangchain4jAgentTest.java │ │ │ ├── CamelLangchain4jChatTest.java │ │ │ ├── CamelLangchain4jEmbeddingsTest.java │ │ │ ├── CamelLangchain4jEmbeddingstoreTest.java │ │ │ ├── CamelLangchain4jToolsTest.java │ │ │ ├── CamelLangchain4jWebSearchTest.java │ │ │ ├── CamelLdapTest.java │ │ │ ├── CamelLdifTest.java │ │ │ ├── CamelLeveldbTest.java │ │ │ ├── CamelLuceneTest.java │ │ │ ├── CamelLumberjackTest.java │ │ │ ├── CamelLzfTest.java │ │ │ ├── CamelMailTest.java │ │ │ ├── CamelMapstructTest.java │ │ │ ├── CamelMetricsTest.java │ │ │ ├── CamelMicrometerObservabilityTest.java │ │ │ ├── CamelMicrometerTest.java │ │ │ ├── CamelMiloTest.java │ │ │ ├── CamelMilvusTest.java │ │ │ ├── CamelMinaTest.java │ │ │ ├── CamelMinioTest.java │ │ │ ├── CamelMllpTest.java │ │ │ ├── CamelMongodbGridfsTest.java │ │ │ ├── CamelMongodbTest.java │ │ │ ├── CamelMustacheTest.java │ │ │ ├── CamelMvelTest.java │ │ │ ├── CamelMybatisTest.java │ │ │ ├── CamelNatsTest.java │ │ │ ├── CamelNeo4jTest.java │ │ │ ├── CamelNettyHttpTest.java │ │ │ ├── CamelNettyTest.java │ │ │ ├── CamelNitriteTest.java │ │ │ ├── CamelOaipmhTest.java │ │ │ ├── CamelObservationTest.java │ │ │ ├── CamelOgnlTest.java │ │ │ ├── CamelOlingo2Test.java │ │ │ ├── CamelOlingo4Test.java │ │ │ ├── CamelOpenapiJavaTest.java │ │ │ ├── CamelOpenapiValidatorTest.java │ │ │ ├── CamelOpensearchTest.java │ │ │ ├── CamelOpenstackTest.java │ │ │ ├── CamelOpentelemetry2Test.java │ │ │ ├── CamelOpentelemetryTest.java │ │ │ ├── CamelOptaplannerTest.java │ │ │ ├── CamelPahoMqtt5Test.java │ │ │ ├── CamelPahoTest.java │ │ │ ├── CamelParquetAvroTest.java │ │ │ ├── CamelPdfTest.java │ │ │ ├── CamelPgReplicationSlotTest.java │ │ │ ├── CamelPgeventTest.java │ │ │ ├── CamelPineconeTest.java │ │ │ ├── CamelPlatformHttpTest.java │ │ │ ├── CamelPlc4xTest.java │ │ │ ├── CamelPqcTest.java │ │ │ ├── CamelPrinterTest.java │ │ │ ├── CamelProtobufTest.java │ │ │ ├── CamelPubnubTest.java │ │ │ ├── CamelPulsarTest.java │ │ │ ├── CamelQdrantTest.java │ │ │ ├── CamelQuartzTest.java │ │ │ ├── CamelQuickfixTest.java │ │ │ ├── CamelReactiveStreamsTest.java │ │ │ ├── CamelReactorTest.java │ │ │ ├── CamelRefTest.java │ │ │ ├── CamelResilience4jTest.java │ │ │ ├── CamelRestOpenapiTest.java │ │ │ ├── CamelRobotframeworkTest.java │ │ │ ├── CamelRocketmqTest.java │ │ │ ├── CamelRssTest.java │ │ │ ├── CamelSagaTest.java │ │ │ ├── CamelSalesforceTest.java │ │ │ ├── CamelSapNetweaverTest.java │ │ │ ├── CamelSaxonTest.java │ │ │ ├── CamelSchematronTest.java │ │ │ ├── CamelServicenowTest.java │ │ │ ├── CamelServletTest.java │ │ │ ├── CamelShiroTest.java │ │ │ ├── CamelSjms2Test.java │ │ │ ├── CamelSjmsTest.java │ │ │ ├── CamelSlackTest.java │ │ │ ├── CamelSmbTest.java │ │ │ ├── CamelSmooksTest.java │ │ │ ├── CamelSmppTest.java │ │ │ ├── CamelSnakeyamlTest.java │ │ │ ├── CamelSnmpTest.java │ │ │ ├── CamelSoapTest.java │ │ │ ├── CamelSolrTest.java │ │ │ ├── CamelSplunkHecTest.java │ │ │ ├── CamelSplunkTest.java │ │ │ ├── CamelSpringAiChatTest.java │ │ │ ├── CamelSpringAiEmbeddingsTest.java │ │ │ ├── CamelSpringAiToolsTest.java │ │ │ ├── CamelSpringAiVectorStoreTest.java │ │ │ ├── CamelSpringBatchTest.java │ │ │ ├── CamelSpringIntegrationTest.java │ │ │ ├── CamelSpringJdbcTest.java │ │ │ ├── CamelSpringLdapTest.java │ │ │ ├── CamelSpringRabbitmqTest.java │ │ │ ├── CamelSpringRedisTest.java │ │ │ ├── CamelSpringSecurityTest.java │ │ │ ├── CamelSpringTest.java │ │ │ ├── CamelSpringWsTest.java │ │ │ ├── CamelSqlTest.java │ │ │ ├── CamelSshTest.java │ │ │ ├── CamelStaxTest.java │ │ │ ├── CamelStitchTest.java │ │ │ ├── CamelStompTest.java │ │ │ ├── CamelStreamTest.java │ │ │ ├── CamelStringtemplateTest.java │ │ │ ├── CamelStubTest.java │ │ │ ├── CamelSwiftTest.java │ │ │ ├── CamelSyslogTest.java │ │ │ ├── CamelTarfileTest.java │ │ │ ├── CamelTelegramTest.java │ │ │ ├── CamelTensorflowServingTest.java │ │ │ ├── CamelThriftTest.java │ │ │ ├── CamelThymeleafTest.java │ │ │ ├── CamelTikaTest.java │ │ │ ├── CamelTimerTest.java │ │ │ ├── CamelTorchserveTest.java │ │ │ ├── CamelTwilioTest.java │ │ │ ├── CamelTwitterTest.java │ │ │ ├── CamelUndertowTest.java │ │ │ ├── CamelUnivocityParsersTest.java │ │ │ ├── CamelValidatorTest.java │ │ │ ├── CamelVelocityTest.java │ │ │ ├── CamelVertxHttpTest.java │ │ │ ├── CamelVertxTest.java │ │ │ ├── CamelVertxWebsocketTest.java │ │ │ ├── CamelWasmTest.java │ │ │ ├── CamelWeatherTest.java │ │ │ ├── CamelWeaviateTest.java │ │ │ ├── CamelWeb3jTest.java │ │ │ ├── CamelWebhookTest.java │ │ │ ├── CamelWhatsappTest.java │ │ │ ├── CamelWordpressTest.java │ │ │ ├── CamelWorkdayTest.java │ │ │ ├── CamelXchangeTest.java │ │ │ ├── CamelXjTest.java │ │ │ ├── CamelXmlsecurityTest.java │ │ │ ├── CamelXmppTest.java │ │ │ ├── CamelXpathTest.java │ │ │ ├── CamelXsltSaxonTest.java │ │ │ ├── CamelXsltTest.java │ │ │ ├── CamelZeebeTest.java │ │ │ ├── CamelZendeskTest.java │ │ │ ├── CamelZipDeflaterTest.java │ │ │ ├── CamelZipfileTest.java │ │ │ ├── CamelZookeeperMasterTest.java │ │ │ ├── CamelZookeeperTest.java │ │ │ ├── arquillian │ │ │ ├── ArquillianSyncBootJarLauncher.java │ │ │ ├── SpringBootZipExporterDelegate.java │ │ │ ├── SpringBootZipExporterImpl.java │ │ │ ├── SpringBootZipOnDemandInputStream.java │ │ │ └── container │ │ │ │ ├── ManagedSEContainerConfiguration.java │ │ │ │ ├── ManagedSEContainerExtension.java │ │ │ │ ├── ManagedSEDeployableContainer.java │ │ │ │ ├── SEContainerAppender.java │ │ │ │ ├── jmx │ │ │ │ ├── CustomJMXProtocol.java │ │ │ │ └── TestDeploymentPackager.java │ │ │ │ └── util │ │ │ │ ├── Await.java │ │ │ │ └── FileDeploymentUtils.java │ │ │ └── util │ │ │ ├── ArquillianPackager.java │ │ │ ├── BOMResolver.java │ │ │ ├── DependencyResolver.java │ │ │ ├── JarExporter.java │ │ │ ├── LocationUtils.java │ │ │ └── SpringBootContainerFacade.java │ │ └── resources │ │ ├── BOOT-MANIFEST.MF │ │ ├── META-INF │ │ └── services │ │ │ └── org.jboss.arquillian.core.spi.LoadableExtension │ │ ├── application-pom-sb3.xml │ │ ├── arquillian.xml │ │ ├── components │ │ ├── apns-clientStore.p12 │ │ ├── apns-serverStore.p12 │ │ ├── cache-ehcache.xml │ │ ├── ibatis-SqlMapConfig.xml │ │ └── mybatis-SqlMapConfig.xml │ │ ├── jul.properties │ │ ├── logback-spring.xml │ │ └── logging.properties └── pom.xml └── tooling ├── camel-spring-boot-bom-generator ├── pom.xml └── target-template-pom.xml ├── camel-spring-boot-bom └── 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-generator ├── pom.xml └── target-template-pom.xml ├── camel-spring-boot-dependencies └── 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 ├── camel-spring-boot-starter-generator ├── pom.xml └── template-starter-pom.xml ├── camel-starter-parent └── pom.xml └── pom.xml /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/asf-deploy-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.github/asf-deploy-settings.xml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automatic-sync-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.github/workflows/automatic-sync-main.yml -------------------------------------------------------------------------------- /.github/workflows/depsreview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.github/workflows/depsreview.yaml -------------------------------------------------------------------------------- /.github/workflows/generate-sbom-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.github/workflows/generate-sbom-main.yml -------------------------------------------------------------------------------- /.github/workflows/pr-build-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.github/workflows/pr-build-main.yml -------------------------------------------------------------------------------- /.github/workflows/pr-doc-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.github/workflows/pr-doc-validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.mvn/jvm.config -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Jenkinsfile.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/Jenkinsfile.sb -------------------------------------------------------------------------------- /Jenkinsfile.sb.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/Jenkinsfile.sb.deploy -------------------------------------------------------------------------------- /Jenkinsfile.sb.jdk17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/Jenkinsfile.sb.jdk17 -------------------------------------------------------------------------------- /Jenkinsfile.sb.ppc64le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/Jenkinsfile.sb.ppc64le -------------------------------------------------------------------------------- /KEYS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/KEYS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/camel-archetype-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/archetypes/camel-archetype-spring-boot/pom.xml -------------------------------------------------------------------------------- /archetypes/camel-archetype-spring-boot/src/test/resources/projects/build-it/goal.txt: -------------------------------------------------------------------------------- 1 | install -------------------------------------------------------------------------------- /archetypes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/archetypes/pom.xml -------------------------------------------------------------------------------- /camel-spring-boot-sbom/camel-spring-boot-sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/camel-spring-boot-sbom/camel-spring-boot-sbom.json -------------------------------------------------------------------------------- /camel-spring-boot-sbom/camel-spring-boot-sbom.vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/camel-spring-boot-sbom/camel-spring-boot-sbom.vex.json -------------------------------------------------------------------------------- /camel-spring-boot-sbom/camel-spring-boot-sbom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/camel-spring-boot-sbom/camel-spring-boot-sbom.xml -------------------------------------------------------------------------------- /catalog/camel-catalog-provider-springboot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/catalog/camel-catalog-provider-springboot/pom.xml -------------------------------------------------------------------------------- /catalog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/catalog/pom.xml -------------------------------------------------------------------------------- /components-starter/ac-mappings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/ac-mappings.yml -------------------------------------------------------------------------------- /components-starter/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/antora.yml -------------------------------------------------------------------------------- /components-starter/camel-activemq-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-activemq-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-activemq-starter/src/main/docs/activemq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-activemq-starter/src/main/docs/activemq.json -------------------------------------------------------------------------------- /components-starter/camel-activemq6-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-activemq6-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-amqp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-amqp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-amqp-starter/src/main/docs/amqp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-amqp-starter/src/main/docs/amqp.json -------------------------------------------------------------------------------- /components-starter/camel-arangodb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-arangodb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-arangodb-starter/src/main/docs/arangodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-arangodb-starter/src/main/docs/arangodb.json -------------------------------------------------------------------------------- /components-starter/camel-as2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-as2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-as2-starter/src/main/docs/as2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-as2-starter/src/main/docs/as2.json -------------------------------------------------------------------------------- /components-starter/camel-asn1-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-asn1-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-asn1-starter/src/main/docs/asn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-asn1-starter/src/main/docs/asn1.json -------------------------------------------------------------------------------- /components-starter/camel-asterisk-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-asterisk-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-asterisk-starter/src/main/docs/asterisk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-asterisk-starter/src/main/docs/asterisk.json -------------------------------------------------------------------------------- /components-starter/camel-atmosphere-websocket-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-atmosphere-websocket-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-atom-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-atom-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-atom-starter/src/main/docs/atom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-atom-starter/src/main/docs/atom.json -------------------------------------------------------------------------------- /components-starter/camel-avro-rpc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-avro-rpc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-avro-rpc-starter/src/main/docs/avro-rpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-avro-rpc-starter/src/main/docs/avro-rpc.json -------------------------------------------------------------------------------- /components-starter/camel-avro-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-avro-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-avro-starter/src/main/docs/avro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-avro-starter/src/main/docs/avro.json -------------------------------------------------------------------------------- /components-starter/camel-aws-bedrock-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws-bedrock-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws-cloudtrail-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws-cloudtrail-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws-config-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws-config-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws-secrets-manager-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws-secrets-manager-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws-xray-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws-xray-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws-xray-starter/src/main/docs/aws-xray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws-xray-starter/src/main/docs/aws-xray.json -------------------------------------------------------------------------------- /components-starter/camel-aws-xray-starter/src/test/resources/disabled.properties: -------------------------------------------------------------------------------- 1 | camel.aws-xray.enabled=false -------------------------------------------------------------------------------- /components-starter/camel-aws-xray-starter/src/test/resources/noop.properties: -------------------------------------------------------------------------------- 1 | camel.aws-xray.tracing-strategy=noop -------------------------------------------------------------------------------- /components-starter/camel-aws2-athena-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-athena-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-cw-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-cw-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-cw-starter/src/main/docs/aws2-cw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-cw-starter/src/main/docs/aws2-cw.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-ddb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ddb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-ddb-starter/src/main/docs/aws2-ddb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ddb-starter/src/main/docs/aws2-ddb.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-ec2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ec2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-ec2-starter/src/main/docs/aws2-ec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ec2-starter/src/main/docs/aws2-ec2.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-ecs-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ecs-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-ecs-starter/src/main/docs/aws2-ecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ecs-starter/src/main/docs/aws2-ecs.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-eks-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-eks-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-eks-starter/src/main/docs/aws2-eks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-eks-starter/src/main/docs/aws2-eks.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-eventbridge-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-eventbridge-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-iam-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-iam-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-iam-starter/src/main/docs/aws2-iam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-iam-starter/src/main/docs/aws2-iam.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-kinesis-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-kinesis-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-kms-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-kms-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-kms-starter/src/main/docs/aws2-kms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-kms-starter/src/main/docs/aws2-kms.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-lambda-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-lambda-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-mq-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-mq-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-mq-starter/src/main/docs/aws2-mq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-mq-starter/src/main/docs/aws2-mq.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-msk-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-msk-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-msk-starter/src/main/docs/aws2-msk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-msk-starter/src/main/docs/aws2-msk.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-redshift-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-redshift-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-s3-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-s3-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-s3-starter/src/main/docs/aws2-s3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-s3-starter/src/main/docs/aws2-s3.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-s3-starter/src/test/resources/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-s3-starter/src/test/resources/empty.txt -------------------------------------------------------------------------------- /components-starter/camel-aws2-s3-vectors-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-s3-vectors-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-ses-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ses-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-ses-starter/src/main/docs/aws2-ses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-ses-starter/src/main/docs/aws2-ses.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-sns-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-sns-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-sns-starter/src/main/docs/aws2-sns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-sns-starter/src/main/docs/aws2-sns.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-sqs-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-sqs-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-sqs-starter/src/main/docs/aws2-sqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-sqs-starter/src/main/docs/aws2-sqs.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-step-functions-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-step-functions-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-sts-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-sts-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-sts-starter/src/main/docs/aws2-sts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-sts-starter/src/main/docs/aws2-sts.json -------------------------------------------------------------------------------- /components-starter/camel-aws2-textract-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-textract-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-timestream-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-timestream-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-transcribe-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-transcribe-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-aws2-translate-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-aws2-translate-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-cosmosdb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-cosmosdb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-eventgrid-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-eventgrid-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-eventhubs-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-eventhubs-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-files-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-files-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-key-vault-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-key-vault-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-servicebus-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-servicebus-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-storage-blob-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-storage-blob-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-storage-datalake-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-storage-datalake-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-azure-storage-queue-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-azure-storage-queue-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-barcode-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-barcode-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-barcode-starter/src/main/docs/barcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-barcode-starter/src/main/docs/barcode.json -------------------------------------------------------------------------------- /components-starter/camel-base64-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-base64-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-base64-starter/src/main/docs/base64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-base64-starter/src/main/docs/base64.json -------------------------------------------------------------------------------- /components-starter/camel-bean-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-bean-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-bean-starter/src/main/docs/bean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-bean-starter/src/main/docs/bean.json -------------------------------------------------------------------------------- /components-starter/camel-bean-validator-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-bean-validator-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-beanio-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-beanio-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-beanio-starter/src/main/docs/beanio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-beanio-starter/src/main/docs/beanio.json -------------------------------------------------------------------------------- /components-starter/camel-bindy-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-bindy-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-bindy-starter/src/main/docs/bindy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-bindy-starter/src/main/docs/bindy.json -------------------------------------------------------------------------------- /components-starter/camel-bonita-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-bonita-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-bonita-starter/src/main/docs/bonita.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-bonita-starter/src/main/docs/bonita.json -------------------------------------------------------------------------------- /components-starter/camel-box-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-box-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-box-starter/src/main/docs/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-box-starter/src/main/docs/box.json -------------------------------------------------------------------------------- /components-starter/camel-braintree-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-braintree-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-browse-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-browse-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-browse-starter/src/main/docs/browse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-browse-starter/src/main/docs/browse.json -------------------------------------------------------------------------------- /components-starter/camel-caffeine-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-caffeine-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-caffeine-starter/src/main/docs/caffeine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-caffeine-starter/src/main/docs/caffeine.json -------------------------------------------------------------------------------- /components-starter/camel-cassandraql-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cassandraql-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cbor-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cbor-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cbor-starter/src/main/docs/cbor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cbor-starter/src/main/docs/cbor.json -------------------------------------------------------------------------------- /components-starter/camel-chatscript-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-chatscript-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-chunk-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-chunk-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-chunk-starter/src/main/docs/chunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-chunk-starter/src/main/docs/chunk.json -------------------------------------------------------------------------------- /components-starter/camel-clickup-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-clickup-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-clickup-starter/src/main/docs/clickup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-clickup-starter/src/main/docs/clickup.json -------------------------------------------------------------------------------- /components-starter/camel-cloudevents-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cloudevents-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cm-sms-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cm-sms-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cm-sms-starter/src/main/docs/cm-sms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cm-sms-starter/src/main/docs/cm-sms.json -------------------------------------------------------------------------------- /components-starter/camel-coap-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-coap-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-coap-starter/src/main/docs/coap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-coap-starter/src/main/docs/coap.json -------------------------------------------------------------------------------- /components-starter/camel-cometd-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cometd-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cometd-starter/src/main/docs/cometd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cometd-starter/src/main/docs/cometd.json -------------------------------------------------------------------------------- /components-starter/camel-console-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-console-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-consul-cluster-service-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-consul-cluster-service-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-consul-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-consul-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-consul-starter/src/main/docs/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-consul-starter/src/main/docs/consul.json -------------------------------------------------------------------------------- /components-starter/camel-controlbus-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-controlbus-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-core-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-core-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-core-starter/src/main/docs/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-core-starter/src/main/docs/core.json -------------------------------------------------------------------------------- /components-starter/camel-couchbase-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-couchbase-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-couchdb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-couchdb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-couchdb-starter/src/main/docs/couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-couchdb-starter/src/main/docs/couchdb.json -------------------------------------------------------------------------------- /components-starter/camel-cron-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cron-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cron-starter/src/main/docs/cron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cron-starter/src/main/docs/cron.json -------------------------------------------------------------------------------- /components-starter/camel-crypto-pgp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-crypto-pgp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-crypto-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-crypto-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-crypto-starter/src/main/docs/crypto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-crypto-starter/src/main/docs/crypto.json -------------------------------------------------------------------------------- /components-starter/camel-csimple-joor-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-csimple-joor-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-csimple-joor-starter/src/main/docs/csimple-joor.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-csv-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-csv-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-csv-starter/src/main/docs/csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-csv-starter/src/main/docs/csv.json -------------------------------------------------------------------------------- /components-starter/camel-cxf-rest-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cxf-rest-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cxf-rest-starter/src/main/docs/cxf-rest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cxf-rest-starter/src/main/docs/cxf-rest.json -------------------------------------------------------------------------------- /components-starter/camel-cxf-soap-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cxf-soap-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cxf-soap-starter/src/main/docs/cxf-soap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cxf-soap-starter/src/main/docs/cxf-soap.json -------------------------------------------------------------------------------- /components-starter/camel-cxf-transport-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cxf-transport-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-cxf-transport-starter/src/main/docs/cxf-transport.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-cyberark-vault-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-cyberark-vault-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dapr-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dapr-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dapr-starter/src/main/docs/dapr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dapr-starter/src/main/docs/dapr.json -------------------------------------------------------------------------------- /components-starter/camel-dataformat-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dataformat-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dataset-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dataset-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dataset-starter/src/main/docs/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dataset-starter/src/main/docs/dataset.json -------------------------------------------------------------------------------- /components-starter/camel-datasonnet-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-datasonnet-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debezium-db2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debezium-db2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debezium-mongodb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debezium-mongodb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debezium-mysql-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debezium-mysql-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debezium-oracle-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debezium-oracle-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debezium-postgres-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debezium-postgres-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debezium-sqlserver-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debezium-sqlserver-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debug-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debug-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-debug-starter/src/main/docs/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-debug-starter/src/main/docs/debug.json -------------------------------------------------------------------------------- /components-starter/camel-dfdl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dfdl-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dfdl-starter/src/main/docs/dfdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dfdl-starter/src/main/docs/dfdl.json -------------------------------------------------------------------------------- /components-starter/camel-dhis2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dhis2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dhis2-starter/src/main/docs/dhis2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dhis2-starter/src/main/docs/dhis2.json -------------------------------------------------------------------------------- /components-starter/camel-digitalocean-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-digitalocean-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-direct-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-direct-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-direct-starter/src/main/docs/direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-direct-starter/src/main/docs/direct.json -------------------------------------------------------------------------------- /components-starter/camel-disruptor-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-disruptor-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-djl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-djl-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-djl-starter/src/main/docs/djl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-djl-starter/src/main/docs/djl.json -------------------------------------------------------------------------------- /components-starter/camel-dns-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dns-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dns-starter/src/main/docs/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dns-starter/src/main/docs/dns.json -------------------------------------------------------------------------------- /components-starter/camel-dns-starter/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dns-starter/src/test/resources/logback.xml -------------------------------------------------------------------------------- /components-starter/camel-docker-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-docker-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-docker-starter/src/main/docs/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-docker-starter/src/main/docs/docker.json -------------------------------------------------------------------------------- /components-starter/camel-docling-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-docling-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-docling-starter/src/main/docs/docling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-docling-starter/src/main/docs/docling.json -------------------------------------------------------------------------------- /components-starter/camel-drill-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-drill-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-drill-starter/src/main/docs/drill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-drill-starter/src/main/docs/drill.json -------------------------------------------------------------------------------- /components-starter/camel-dropbox-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dropbox-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-dropbox-starter/src/main/docs/dropbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dropbox-starter/src/main/docs/dropbox.json -------------------------------------------------------------------------------- /components-starter/camel-dynamic-router-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-dynamic-router-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ehcache-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ehcache-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ehcache-starter/src/main/docs/ehcache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ehcache-starter/src/main/docs/ehcache.json -------------------------------------------------------------------------------- /components-starter/camel-elasticsearch-rest-client-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-elasticsearch-rest-client-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-elasticsearch-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-elasticsearch-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-exec-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-exec-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-exec-starter/src/main/docs/exec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-exec-starter/src/main/docs/exec.json -------------------------------------------------------------------------------- /components-starter/camel-fastjson-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fastjson-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-fastjson-starter/src/main/docs/fastjson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fastjson-starter/src/main/docs/fastjson.json -------------------------------------------------------------------------------- /components-starter/camel-fhir-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fhir-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-fhir-starter/src/main/docs/fhir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fhir-starter/src/main/docs/fhir.json -------------------------------------------------------------------------------- /components-starter/camel-file-cluster-service-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-file-cluster-service-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-file-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-file-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-file-starter/src/main/docs/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-file-starter/src/main/docs/file.json -------------------------------------------------------------------------------- /components-starter/camel-file-watch-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-file-watch-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-flatpack-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-flatpack-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-flatpack-starter/src/main/docs/flatpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-flatpack-starter/src/main/docs/flatpack.json -------------------------------------------------------------------------------- /components-starter/camel-flink-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-flink-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-flink-starter/src/main/docs/flink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-flink-starter/src/main/docs/flink.json -------------------------------------------------------------------------------- /components-starter/camel-flowable-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-flowable-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-flowable-starter/src/main/docs/flowable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-flowable-starter/src/main/docs/flowable.json -------------------------------------------------------------------------------- /components-starter/camel-fop-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fop-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-fop-starter/src/main/docs/fop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fop-starter/src/main/docs/fop.json -------------------------------------------------------------------------------- /components-starter/camel-fory-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fory-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-fory-starter/src/main/docs/fory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-fory-starter/src/main/docs/fory.json -------------------------------------------------------------------------------- /components-starter/camel-freemarker-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-freemarker-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ftp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ftp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ftp-starter/src/main/docs/ftp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ftp-starter/src/main/docs/ftp.json -------------------------------------------------------------------------------- /components-starter/camel-ftp-starter/src/test/data/bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ftp-starter/src/test/data/bar.xml -------------------------------------------------------------------------------- /components-starter/camel-ftp-starter/src/test/data/foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ftp-starter/src/test/data/foo.xml -------------------------------------------------------------------------------- /components-starter/camel-ftp-starter/src/test/resources/hostkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ftp-starter/src/test/resources/hostkey.pem -------------------------------------------------------------------------------- /components-starter/camel-ftp-starter/src/test/resources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ftp-starter/src/test/resources/readme.txt -------------------------------------------------------------------------------- /components-starter/camel-ftp-starter/src/test/resources/server.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ftp-starter/src/test/resources/server.jks -------------------------------------------------------------------------------- /components-starter/camel-geocoder-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-geocoder-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-geocoder-starter/src/main/docs/geocoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-geocoder-starter/src/main/docs/geocoder.json -------------------------------------------------------------------------------- /components-starter/camel-git-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-git-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-git-starter/src/main/docs/git.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-git-starter/src/main/docs/git.json -------------------------------------------------------------------------------- /components-starter/camel-github-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-github-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-github-starter/src/main/docs/github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-github-starter/src/main/docs/github.json -------------------------------------------------------------------------------- /components-starter/camel-google-bigquery-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-bigquery-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-calendar-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-calendar-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-drive-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-drive-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-functions-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-functions-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-mail-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-mail-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-pubsub-lite-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-pubsub-lite-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-pubsub-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-pubsub-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-secret-manager-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-secret-manager-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-sheets-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-sheets-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-storage-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-storage-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-google-vertexai-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-google-vertexai-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-grape-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-grape-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-grape-starter/src/main/docs/grape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-grape-starter/src/main/docs/grape.json -------------------------------------------------------------------------------- /components-starter/camel-graphql-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-graphql-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-graphql-starter/src/main/docs/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-graphql-starter/src/main/docs/graphql.json -------------------------------------------------------------------------------- /components-starter/camel-grok-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-grok-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-grok-starter/src/main/docs/grok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-grok-starter/src/main/docs/grok.json -------------------------------------------------------------------------------- /components-starter/camel-groovy-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-groovy-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-groovy-starter/src/main/docs/groovy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-groovy-starter/src/main/docs/groovy.json -------------------------------------------------------------------------------- /components-starter/camel-groovy-xml-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-groovy-xml-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-grpc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-grpc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-grpc-starter/src/main/docs/grpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-grpc-starter/src/main/docs/grpc.json -------------------------------------------------------------------------------- /components-starter/camel-gson-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-gson-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-gson-starter/src/main/docs/gson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-gson-starter/src/main/docs/gson.json -------------------------------------------------------------------------------- /components-starter/camel-guava-eventbus-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-guava-eventbus-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-hashicorp-vault-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-hashicorp-vault-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-hazelcast-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-hazelcast-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-hl7-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-hl7-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-hl7-starter/src/main/docs/hl7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-hl7-starter/src/main/docs/hl7.json -------------------------------------------------------------------------------- /components-starter/camel-hl7-starter/src/test/resources/mdm_t02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-hl7-starter/src/test/resources/mdm_t02.txt -------------------------------------------------------------------------------- /components-starter/camel-http-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-http-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-http-starter/src/main/docs/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-http-starter/src/main/docs/http.json -------------------------------------------------------------------------------- /components-starter/camel-huaweicloud-dms-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-huaweicloud-dms-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-huaweicloud-frs-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-huaweicloud-frs-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-huaweicloud-functiongraph-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-huaweicloud-functiongraph-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-huaweicloud-iam-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-huaweicloud-iam-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-huaweicloud-imagerecognition-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-huaweicloud-imagerecognition-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-huaweicloud-obs-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-huaweicloud-obs-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-huaweicloud-smn-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-huaweicloud-smn-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ibm-cos-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ibm-cos-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ibm-cos-starter/src/main/docs/ibm-cos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ibm-cos-starter/src/main/docs/ibm-cos.json -------------------------------------------------------------------------------- /components-starter/camel-ibm-secrets-manager-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ibm-secrets-manager-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ibm-watson-discovery-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ibm-watson-discovery-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ibm-watson-language-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ibm-watson-language-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ibm-watson-speech-to-text-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ibm-watson-speech-to-text-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ibm-watson-text-to-speech-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ibm-watson-text-to-speech-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ical-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ical-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ical-starter/src/main/docs/ical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ical-starter/src/main/docs/ical.json -------------------------------------------------------------------------------- /components-starter/camel-iec60870-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-iec60870-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-iec60870-starter/src/main/docs/iec60870.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-iec60870-starter/src/main/docs/iec60870.json -------------------------------------------------------------------------------- /components-starter/camel-iggy-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-iggy-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-iggy-starter/src/main/docs/iggy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-iggy-starter/src/main/docs/iggy.json -------------------------------------------------------------------------------- /components-starter/camel-ignite-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ignite-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ignite-starter/src/main/docs/ignite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ignite-starter/src/main/docs/ignite.json -------------------------------------------------------------------------------- /components-starter/camel-infinispan-cluster-service-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-infinispan-cluster-service-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-infinispan-embedded-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-infinispan-embedded-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-infinispan-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-infinispan-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-influxdb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-influxdb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-influxdb-starter/src/main/docs/influxdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-influxdb-starter/src/main/docs/influxdb.json -------------------------------------------------------------------------------- /components-starter/camel-influxdb2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-influxdb2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-irc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-irc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-irc-starter/src/main/docs/irc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-irc-starter/src/main/docs/irc.json -------------------------------------------------------------------------------- /components-starter/camel-ironmq-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ironmq-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ironmq-starter/src/main/docs/ironmq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ironmq-starter/src/main/docs/ironmq.json -------------------------------------------------------------------------------- /components-starter/camel-iso8583-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-iso8583-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-iso8583-starter/src/main/docs/iso8583.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-iso8583-starter/src/main/docs/iso8583.json -------------------------------------------------------------------------------- /components-starter/camel-jackson-avro-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jackson-avro-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jackson-protobuf-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jackson-protobuf-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jackson-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jackson-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jackson-starter/src/main/docs/jackson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jackson-starter/src/main/docs/jackson.json -------------------------------------------------------------------------------- /components-starter/camel-jacksonxml-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jacksonxml-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jandex-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jandex-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jasypt-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jasypt-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jasypt-starter/src/main/docs/jasypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jasypt-starter/src/main/docs/jasypt.json -------------------------------------------------------------------------------- /components-starter/camel-javascript-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-javascript-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jaxb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jaxb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jaxb-starter/src/main/docs/jaxb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jaxb-starter/src/main/docs/jaxb.json -------------------------------------------------------------------------------- /components-starter/camel-jcache-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jcache-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jcache-starter/src/main/docs/jcache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jcache-starter/src/main/docs/jcache.json -------------------------------------------------------------------------------- /components-starter/camel-jcr-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jcr-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jcr-starter/src/main/docs/jcr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jcr-starter/src/main/docs/jcr.json -------------------------------------------------------------------------------- /components-starter/camel-jdbc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jdbc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jdbc-starter/src/main/docs/jdbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jdbc-starter/src/main/docs/jdbc.json -------------------------------------------------------------------------------- /components-starter/camel-jetty-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jetty-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jetty-starter/src/main/docs/jetty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jetty-starter/src/main/docs/jetty.json -------------------------------------------------------------------------------- /components-starter/camel-jfr-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jfr-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jfr-starter/src/main/docs/jfr.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-jgroups-raft-cluster-service-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jgroups-raft-cluster-service-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jgroups-raft-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jgroups-raft-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jgroups-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jgroups-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jgroups-starter/src/main/docs/jgroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jgroups-starter/src/main/docs/jgroups.json -------------------------------------------------------------------------------- /components-starter/camel-jira-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jira-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jira-starter/src/main/docs/jira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jira-starter/src/main/docs/jira.json -------------------------------------------------------------------------------- /components-starter/camel-jms-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jms-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jms-starter/src/main/docs/jms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jms-starter/src/main/docs/jms.json -------------------------------------------------------------------------------- /components-starter/camel-jmx-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jmx-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jmx-starter/src/main/docs/jmx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jmx-starter/src/main/docs/jmx.json -------------------------------------------------------------------------------- /components-starter/camel-jolokia-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jolokia-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jolokia-starter/src/main/docs/.gitignore: -------------------------------------------------------------------------------- 1 | jolokia.json 2 | -------------------------------------------------------------------------------- /components-starter/camel-jolokia-starter/src/main/docs/jolokia.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jolokia-starter/src/main/docs/jolokia.adoc -------------------------------------------------------------------------------- /components-starter/camel-jolt-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jolt-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jolt-starter/src/main/docs/jolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jolt-starter/src/main/docs/jolt.json -------------------------------------------------------------------------------- /components-starter/camel-jooq-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jooq-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jooq-starter/src/main/docs/jooq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jooq-starter/src/main/docs/jooq.json -------------------------------------------------------------------------------- /components-starter/camel-joor-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-joor-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-joor-starter/src/main/docs/joor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-joor-starter/src/main/docs/joor.json -------------------------------------------------------------------------------- /components-starter/camel-jpa-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jpa-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jpa-starter/src/main/docs/jpa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jpa-starter/src/main/docs/jpa.json -------------------------------------------------------------------------------- /components-starter/camel-jq-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jq-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jq-starter/src/main/docs/jq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jq-starter/src/main/docs/jq.json -------------------------------------------------------------------------------- /components-starter/camel-jsch-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsch-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jsch-starter/src/main/docs/jsch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsch-starter/src/main/docs/jsch.json -------------------------------------------------------------------------------- /components-starter/camel-jslt-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jslt-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jslt-starter/src/main/docs/jslt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jslt-starter/src/main/docs/jslt.json -------------------------------------------------------------------------------- /components-starter/camel-json-patch-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-json-patch-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-json-validator-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-json-validator-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jsonapi-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonapi-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jsonapi-starter/src/main/docs/jsonapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonapi-starter/src/main/docs/jsonapi.json -------------------------------------------------------------------------------- /components-starter/camel-jsonata-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonata-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jsonata-starter/src/main/docs/jsonata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonata-starter/src/main/docs/jsonata.json -------------------------------------------------------------------------------- /components-starter/camel-jsonb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jsonb-starter/src/main/docs/jsonb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonb-starter/src/main/docs/jsonb.json -------------------------------------------------------------------------------- /components-starter/camel-jsonpath-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonpath-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jsonpath-starter/src/main/docs/jsonpath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jsonpath-starter/src/main/docs/jsonpath.json -------------------------------------------------------------------------------- /components-starter/camel-jt400-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jt400-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jt400-starter/src/main/docs/jt400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jt400-starter/src/main/docs/jt400.json -------------------------------------------------------------------------------- /components-starter/camel-jte-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jte-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-jte-starter/src/main/docs/jte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-jte-starter/src/main/docs/jte.json -------------------------------------------------------------------------------- /components-starter/camel-kafka-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kafka-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-kafka-starter/src/main/docs/kafka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kafka-starter/src/main/docs/kafka.json -------------------------------------------------------------------------------- /components-starter/camel-kamelet-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kamelet-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-kamelet-starter/src/main/docs/kamelet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kamelet-starter/src/main/docs/kamelet.json -------------------------------------------------------------------------------- /components-starter/camel-keycloak-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-keycloak-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-keycloak-starter/src/main/docs/keycloak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-keycloak-starter/src/main/docs/keycloak.json -------------------------------------------------------------------------------- /components-starter/camel-knative-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-knative-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-knative-starter/src/main/docs/knative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-knative-starter/src/main/docs/knative.json -------------------------------------------------------------------------------- /components-starter/camel-kserve-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kserve-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-kserve-starter/src/main/docs/kserve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kserve-starter/src/main/docs/kserve.json -------------------------------------------------------------------------------- /components-starter/camel-kubernetes-cluster-service-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kubernetes-cluster-service-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-kubernetes-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kubernetes-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-kudu-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kudu-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-kudu-starter/src/main/docs/kudu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-kudu-starter/src/main/docs/kudu.json -------------------------------------------------------------------------------- /components-starter/camel-langchain4j-agent-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-langchain4j-agent-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-langchain4j-chat-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-langchain4j-chat-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-langchain4j-embeddings-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-langchain4j-embeddings-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-langchain4j-embeddingstore-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-langchain4j-embeddingstore-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-langchain4j-tokenizer-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-langchain4j-tokenizer-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-langchain4j-tools-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-langchain4j-tools-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-langchain4j-web-search-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-langchain4j-web-search-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-language-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-language-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-language-starter/src/main/docs/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-language-starter/src/main/docs/language.json -------------------------------------------------------------------------------- /components-starter/camel-ldap-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ldap-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ldap-starter/src/main/docs/ldap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ldap-starter/src/main/docs/ldap.json -------------------------------------------------------------------------------- /components-starter/camel-ldif-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ldif-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ldif-starter/src/main/docs/ldif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ldif-starter/src/main/docs/ldif.json -------------------------------------------------------------------------------- /components-starter/camel-leveldb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-leveldb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-leveldb-starter/src/main/docs/leveldb.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-log-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-log-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-log-starter/src/main/docs/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-log-starter/src/main/docs/log.json -------------------------------------------------------------------------------- /components-starter/camel-lra-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-lra-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-lra-starter/src/main/docs/lra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-lra-starter/src/main/docs/lra.json -------------------------------------------------------------------------------- /components-starter/camel-lucene-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-lucene-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-lucene-starter/src/main/docs/lucene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-lucene-starter/src/main/docs/lucene.json -------------------------------------------------------------------------------- /components-starter/camel-lumberjack-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-lumberjack-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-lzf-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-lzf-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-lzf-starter/src/main/docs/lzf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-lzf-starter/src/main/docs/lzf.json -------------------------------------------------------------------------------- /components-starter/camel-mail-microsoft-oauth-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mail-microsoft-oauth-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mail-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mail-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mail-starter/src/main/docs/mail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mail-starter/src/main/docs/mail.json -------------------------------------------------------------------------------- /components-starter/camel-management-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-management-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mapstruct-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mapstruct-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-master-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-master-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-master-starter/src/main/docs/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-master-starter/src/main/docs/master.json -------------------------------------------------------------------------------- /components-starter/camel-mdc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mdc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mdc-starter/src/main/docs/mdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mdc-starter/src/main/docs/mdc.json -------------------------------------------------------------------------------- /components-starter/camel-metrics-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-metrics-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-metrics-starter/src/main/docs/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-metrics-starter/src/main/docs/metrics.json -------------------------------------------------------------------------------- /components-starter/camel-micrometer-observability-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-micrometer-observability-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-micrometer-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-micrometer-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-milo-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-milo-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-milo-starter/src/main/docs/milo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-milo-starter/src/main/docs/milo.json -------------------------------------------------------------------------------- /components-starter/camel-milvus-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-milvus-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-milvus-starter/src/main/docs/milvus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-milvus-starter/src/main/docs/milvus.json -------------------------------------------------------------------------------- /components-starter/camel-mina-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mina-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mina-starter/src/main/docs/mina.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mina-starter/src/main/docs/mina.json -------------------------------------------------------------------------------- /components-starter/camel-minio-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-minio-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-minio-starter/src/main/docs/minio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-minio-starter/src/main/docs/minio.json -------------------------------------------------------------------------------- /components-starter/camel-mllp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mllp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mllp-starter/src/main/docs/mllp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mllp-starter/src/main/docs/mllp.json -------------------------------------------------------------------------------- /components-starter/camel-mock-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mock-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mock-starter/src/main/docs/mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mock-starter/src/main/docs/mock.json -------------------------------------------------------------------------------- /components-starter/camel-mongodb-gridfs-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mongodb-gridfs-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mongodb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mongodb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mongodb-starter/src/main/docs/mongodb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mongodb-starter/src/main/docs/mongodb.json -------------------------------------------------------------------------------- /components-starter/camel-mustache-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mustache-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mustache-starter/src/main/docs/mustache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mustache-starter/src/main/docs/mustache.json -------------------------------------------------------------------------------- /components-starter/camel-mvel-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mvel-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mvel-starter/src/main/docs/mvel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mvel-starter/src/main/docs/mvel.json -------------------------------------------------------------------------------- /components-starter/camel-mybatis-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mybatis-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-mybatis-starter/src/main/docs/mybatis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-mybatis-starter/src/main/docs/mybatis.json -------------------------------------------------------------------------------- /components-starter/camel-nats-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-nats-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-nats-starter/src/main/docs/nats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-nats-starter/src/main/docs/nats.json -------------------------------------------------------------------------------- /components-starter/camel-neo4j-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-neo4j-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-neo4j-starter/src/main/docs/neo4j.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-neo4j-starter/src/main/docs/neo4j.json -------------------------------------------------------------------------------- /components-starter/camel-netty-http-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-netty-http-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-netty-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-netty-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-netty-starter/src/main/docs/netty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-netty-starter/src/main/docs/netty.json -------------------------------------------------------------------------------- /components-starter/camel-netty-starter/src/test/resources/nettycomponentconfigurationtest.properties: -------------------------------------------------------------------------------- 1 | password=changeit 2 | -------------------------------------------------------------------------------- /components-starter/camel-nitrite-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-nitrite-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-nitrite-starter/src/main/docs/nitrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-nitrite-starter/src/main/docs/nitrite.json -------------------------------------------------------------------------------- /components-starter/camel-oaipmh-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-oaipmh-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-oaipmh-starter/src/main/docs/oaipmh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-oaipmh-starter/src/main/docs/oaipmh.json -------------------------------------------------------------------------------- /components-starter/camel-observability-services-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-observability-services-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-observation-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-observation-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ognl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ognl-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ognl-starter/src/main/docs/ognl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ognl-starter/src/main/docs/ognl.json -------------------------------------------------------------------------------- /components-starter/camel-olingo2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-olingo2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-olingo2-starter/src/main/docs/olingo2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-olingo2-starter/src/main/docs/olingo2.json -------------------------------------------------------------------------------- /components-starter/camel-olingo4-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-olingo4-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-olingo4-starter/src/main/docs/olingo4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-olingo4-starter/src/main/docs/olingo4.json -------------------------------------------------------------------------------- /components-starter/camel-openai-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-openai-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-openai-starter/src/main/docs/openai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-openai-starter/src/main/docs/openai.json -------------------------------------------------------------------------------- /components-starter/camel-openapi-java-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-openapi-java-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-openapi-validator-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-openapi-validator-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-opensearch-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-opensearch-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-openstack-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-openstack-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-opentelemetry-metrics-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-opentelemetry-metrics-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-opentelemetry-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-opentelemetry-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-opentelemetry2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-opentelemetry2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-optaplanner-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-optaplanner-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-paho-mqtt5-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-paho-mqtt5-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-paho-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-paho-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-paho-starter/src/main/docs/paho.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-paho-starter/src/main/docs/paho.json -------------------------------------------------------------------------------- /components-starter/camel-parquet-avro-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-parquet-avro-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pdf-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pdf-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pdf-starter/src/main/docs/pdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pdf-starter/src/main/docs/pdf.json -------------------------------------------------------------------------------- /components-starter/camel-pg-replication-slot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pg-replication-slot-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pgevent-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pgevent-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pgevent-starter/src/main/docs/pgevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pgevent-starter/src/main/docs/pgevent.json -------------------------------------------------------------------------------- /components-starter/camel-pinecone-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pinecone-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pinecone-starter/src/main/docs/pinecone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pinecone-starter/src/main/docs/pinecone.json -------------------------------------------------------------------------------- /components-starter/camel-platform-http-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-platform-http-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-plc4x-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-plc4x-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-plc4x-starter/src/main/docs/plc4x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-plc4x-starter/src/main/docs/plc4x.json -------------------------------------------------------------------------------- /components-starter/camel-pqc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pqc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pqc-starter/src/main/docs/pqc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pqc-starter/src/main/docs/pqc.json -------------------------------------------------------------------------------- /components-starter/camel-printer-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-printer-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-printer-starter/src/main/docs/printer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-printer-starter/src/main/docs/printer.json -------------------------------------------------------------------------------- /components-starter/camel-protobuf-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-protobuf-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-protobuf-starter/src/main/docs/protobuf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-protobuf-starter/src/main/docs/protobuf.json -------------------------------------------------------------------------------- /components-starter/camel-pubnub-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pubnub-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pubnub-starter/src/main/docs/pubnub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pubnub-starter/src/main/docs/pubnub.json -------------------------------------------------------------------------------- /components-starter/camel-pulsar-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pulsar-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-pulsar-starter/src/main/docs/pulsar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-pulsar-starter/src/main/docs/pulsar.json -------------------------------------------------------------------------------- /components-starter/camel-python-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-python-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-python-starter/src/main/docs/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-python-starter/src/main/docs/python.json -------------------------------------------------------------------------------- /components-starter/camel-qdrant-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-qdrant-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-qdrant-starter/src/main/docs/qdrant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-qdrant-starter/src/main/docs/qdrant.json -------------------------------------------------------------------------------- /components-starter/camel-quartz-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-quartz-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-quartz-starter/src/main/docs/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-quartz-starter/src/main/docs/quartz.json -------------------------------------------------------------------------------- /components-starter/camel-quickfix-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-quickfix-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-quickfix-starter/src/main/docs/quickfix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-quickfix-starter/src/main/docs/quickfix.json -------------------------------------------------------------------------------- /components-starter/camel-reactive-streams-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-reactive-streams-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-reactor-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-reactor-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-reactor-starter/src/main/docs/reactor.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-ref-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ref-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ref-starter/src/main/docs/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ref-starter/src/main/docs/ref.json -------------------------------------------------------------------------------- /components-starter/camel-resilience4j-micrometer-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-resilience4j-micrometer-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-resilience4j-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-resilience4j-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-resilience4j-starter/src/main/docs/resilience4j.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-rest-openapi-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rest-openapi-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-rest-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rest-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-rest-starter/src/main/docs/rest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rest-starter/src/main/docs/rest.json -------------------------------------------------------------------------------- /components-starter/camel-rest-starter/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rest-starter/src/test/resources/logback.xml -------------------------------------------------------------------------------- /components-starter/camel-robotframework-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-robotframework-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-rocketmq-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rocketmq-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-rocketmq-starter/src/main/docs/rocketmq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rocketmq-starter/src/main/docs/rocketmq.json -------------------------------------------------------------------------------- /components-starter/camel-rss-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rss-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-rss-starter/src/main/docs/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rss-starter/src/main/docs/rss.json -------------------------------------------------------------------------------- /components-starter/camel-rxjava-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-rxjava-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-rxjava-starter/src/main/docs/rxjava.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-saga-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-saga-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-saga-starter/src/main/docs/saga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-saga-starter/src/main/docs/saga.json -------------------------------------------------------------------------------- /components-starter/camel-salesforce-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-salesforce-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-salesforce-starter/src/test/resources/rawpayload.properties: -------------------------------------------------------------------------------- 1 | tokenpath=/services/oauth2/token 2 | -------------------------------------------------------------------------------- /components-starter/camel-sap-netweaver-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-sap-netweaver-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-saxon-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-saxon-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-saxon-starter/src/main/docs/saxon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-saxon-starter/src/main/docs/saxon.json -------------------------------------------------------------------------------- /components-starter/camel-saxon-starter/src/test/resources/myinput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-saxon-starter/src/test/resources/myinput.xml -------------------------------------------------------------------------------- /components-starter/camel-saxon-starter/src/test/resources/myxquery.txt: -------------------------------------------------------------------------------- 1 | /person/@city -------------------------------------------------------------------------------- /components-starter/camel-saxon-starter/src/test/resources/payload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-saxon-starter/src/test/resources/payload.xml -------------------------------------------------------------------------------- /components-starter/camel-scheduler-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-scheduler-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-schematron-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-schematron-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-seda-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-seda-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-seda-starter/src/main/docs/seda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-seda-starter/src/main/docs/seda.json -------------------------------------------------------------------------------- /components-starter/camel-service-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-service-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-service-starter/src/main/docs/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-service-starter/src/main/docs/service.json -------------------------------------------------------------------------------- /components-starter/camel-servicenow-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-servicenow-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-servlet-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-servlet-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-shiro-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-shiro-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-shiro-starter/src/main/docs/shiro.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-sjms-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-sjms-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-sjms-starter/src/main/docs/sjms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-sjms-starter/src/main/docs/sjms.json -------------------------------------------------------------------------------- /components-starter/camel-sjms2-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-sjms2-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-sjms2-starter/src/main/docs/sjms2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-sjms2-starter/src/main/docs/sjms2.json -------------------------------------------------------------------------------- /components-starter/camel-slack-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-slack-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-slack-starter/src/main/docs/slack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-slack-starter/src/main/docs/slack.json -------------------------------------------------------------------------------- /components-starter/camel-smb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-smb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-smb-starter/src/main/docs/smb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-smb-starter/src/main/docs/smb.json -------------------------------------------------------------------------------- /components-starter/camel-smooks-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-smooks-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-smooks-starter/src/main/docs/smooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-smooks-starter/src/main/docs/smooks.json -------------------------------------------------------------------------------- /components-starter/camel-smpp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-smpp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-smpp-starter/src/main/docs/smpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-smpp-starter/src/main/docs/smpp.json -------------------------------------------------------------------------------- /components-starter/camel-snakeyaml-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-snakeyaml-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-snmp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-snmp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-snmp-starter/src/main/docs/snmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-snmp-starter/src/main/docs/snmp.json -------------------------------------------------------------------------------- /components-starter/camel-soap-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-soap-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-soap-starter/src/main/docs/soap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-soap-starter/src/main/docs/soap.json -------------------------------------------------------------------------------- /components-starter/camel-solr-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-solr-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-solr-starter/src/main/docs/solr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-solr-starter/src/main/docs/solr.json -------------------------------------------------------------------------------- /components-starter/camel-splunk-hec-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-splunk-hec-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-splunk-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-splunk-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-splunk-starter/src/main/docs/splunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-splunk-starter/src/main/docs/splunk.json -------------------------------------------------------------------------------- /components-starter/camel-spring-ai-chat-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-ai-chat-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-ai-embeddings-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-ai-embeddings-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-ai-tools-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-ai-tools-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-ai-vector-store-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-ai-vector-store-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-batch-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-batch-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-cloud-config-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-cloud-config-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-jdbc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-jdbc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-ldap-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-ldap-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-rabbitmq-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-rabbitmq-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-redis-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-redis-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-security-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-security-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-security-starter/src/main/docs/spring-security.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /components-starter/camel-spring-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-spring-starter/src/main/docs/spring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-starter/src/main/docs/spring.json -------------------------------------------------------------------------------- /components-starter/camel-spring-ws-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-spring-ws-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-springdoc-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-springdoc-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-sql-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-sql-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-sql-starter/src/main/docs/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-sql-starter/src/main/docs/sql.json -------------------------------------------------------------------------------- /components-starter/camel-ssh-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ssh-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-ssh-starter/src/main/docs/ssh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-ssh-starter/src/main/docs/ssh.json -------------------------------------------------------------------------------- /components-starter/camel-stax-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stax-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-stax-starter/src/main/docs/stax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stax-starter/src/main/docs/stax.json -------------------------------------------------------------------------------- /components-starter/camel-stitch-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stitch-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-stitch-starter/src/main/docs/stitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stitch-starter/src/main/docs/stitch.json -------------------------------------------------------------------------------- /components-starter/camel-stomp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stomp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-stomp-starter/src/main/docs/stomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stomp-starter/src/main/docs/stomp.json -------------------------------------------------------------------------------- /components-starter/camel-stream-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stream-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-stream-starter/src/main/docs/stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stream-starter/src/main/docs/stream.json -------------------------------------------------------------------------------- /components-starter/camel-stringtemplate-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stringtemplate-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-stripe-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stripe-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-stripe-starter/src/main/docs/stripe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stripe-starter/src/main/docs/stripe.json -------------------------------------------------------------------------------- /components-starter/camel-stub-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stub-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-stub-starter/src/main/docs/stub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-stub-starter/src/main/docs/stub.json -------------------------------------------------------------------------------- /components-starter/camel-swift-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-swift-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-swift-starter/src/main/docs/swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-swift-starter/src/main/docs/swift.json -------------------------------------------------------------------------------- /components-starter/camel-syslog-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-syslog-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-syslog-starter/src/main/docs/syslog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-syslog-starter/src/main/docs/syslog.json -------------------------------------------------------------------------------- /components-starter/camel-tahu-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-tahu-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-tahu-starter/src/main/docs/tahu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-tahu-starter/src/main/docs/tahu.json -------------------------------------------------------------------------------- /components-starter/camel-tarfile-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-tarfile-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-telegram-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-telegram-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-telegram-starter/src/test/resources/application.properties: -------------------------------------------------------------------------------- 1 | logging.level.org.apache.camel.component.telegram: DEBUG 2 | -------------------------------------------------------------------------------- /components-starter/camel-telegram-starter/src/test/resources/attachments/sample.txt: -------------------------------------------------------------------------------- 1 | A sample text file. -------------------------------------------------------------------------------- /components-starter/camel-telemetry-dev-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-telemetry-dev-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-tensorflow-serving-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-tensorflow-serving-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-thrift-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-thrift-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-thrift-starter/src/main/docs/thrift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-thrift-starter/src/main/docs/thrift.json -------------------------------------------------------------------------------- /components-starter/camel-thymeleaf-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-thymeleaf-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-tika-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-tika-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-tika-starter/src/main/docs/tika.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-tika-starter/src/main/docs/tika.json -------------------------------------------------------------------------------- /components-starter/camel-timer-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-timer-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-timer-starter/src/main/docs/timer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-timer-starter/src/main/docs/timer.json -------------------------------------------------------------------------------- /components-starter/camel-torchserve-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-torchserve-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-twilio-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-twilio-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-twilio-starter/src/main/docs/twilio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-twilio-starter/src/main/docs/twilio.json -------------------------------------------------------------------------------- /components-starter/camel-twitter-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-twitter-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-undertow-spring-security-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-undertow-spring-security-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-undertow-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-undertow-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-univocity-parsers-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-univocity-parsers-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-validator-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-validator-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-velocity-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-velocity-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-vertx-http-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-vertx-http-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-vertx-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-vertx-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-vertx-starter/src/main/docs/vertx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-vertx-starter/src/main/docs/vertx.json -------------------------------------------------------------------------------- /components-starter/camel-vertx-websocket-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-vertx-websocket-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-wasm-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-wasm-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-wasm-starter/src/main/docs/wasm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-wasm-starter/src/main/docs/wasm.json -------------------------------------------------------------------------------- /components-starter/camel-weather-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-weather-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-weaviate-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-weaviate-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-web3j-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-web3j-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-web3j-starter/src/main/docs/web3j.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-web3j-starter/src/main/docs/web3j.json -------------------------------------------------------------------------------- /components-starter/camel-webhook-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-webhook-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-whatsapp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-whatsapp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-wordpress-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-wordpress-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-workday-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-workday-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xchange-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xchange-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xj-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xj-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xj-starter/src/main/docs/xj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xj-starter/src/main/docs/xj.json -------------------------------------------------------------------------------- /components-starter/camel-xml-jaxb-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xml-jaxb-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xml-jaxb-starter/src/test/resources/org/apache/camel/xml/jaxb/springboot/jaxb.index: -------------------------------------------------------------------------------- 1 | BeanScope 2 | -------------------------------------------------------------------------------- /components-starter/camel-xml-jaxp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xml-jaxp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xmlsecurity-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xmlsecurity-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xmpp-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xmpp-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xmpp-starter/src/main/docs/xmpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xmpp-starter/src/main/docs/xmpp.json -------------------------------------------------------------------------------- /components-starter/camel-xpath-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xpath-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xpath-starter/src/main/docs/xpath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xpath-starter/src/main/docs/xpath.json -------------------------------------------------------------------------------- /components-starter/camel-xslt-saxon-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xslt-saxon-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xslt-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xslt-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-xslt-starter/src/main/docs/xslt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-xslt-starter/src/main/docs/xslt.json -------------------------------------------------------------------------------- /components-starter/camel-zeebe-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zeebe-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-zeebe-starter/src/main/docs/zeebe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zeebe-starter/src/main/docs/zeebe.json -------------------------------------------------------------------------------- /components-starter/camel-zendesk-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zendesk-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-zip-deflater-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zip-deflater-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-zipfile-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zipfile-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-zipfile-starter/src/test/resources/corrupt.zip: -------------------------------------------------------------------------------- 1 | I am corrupted -------------------------------------------------------------------------------- /components-starter/camel-zipfile-starter/src/test/resources/org/apache/camel/aggregate/zipfile/data/another/hello.txt: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /components-starter/camel-zipfile-starter/src/test/resources/org/apache/camel/aggregate/zipfile/data/chiau.txt: -------------------------------------------------------------------------------- 1 | chau -------------------------------------------------------------------------------- /components-starter/camel-zipfile-starter/src/test/resources/org/apache/camel/aggregate/zipfile/data/hi.txt: -------------------------------------------------------------------------------- 1 | hi -------------------------------------------------------------------------------- /components-starter/camel-zipfile-starter/src/test/resources/org/apache/camel/aggregate/zipfile/data/hola.txt: -------------------------------------------------------------------------------- 1 | hola -------------------------------------------------------------------------------- /components-starter/camel-zipfile-starter/src/test/resources/org/apache/camel/aggregate/zipfile/data/other/greetings.txt: -------------------------------------------------------------------------------- 1 | greetings -------------------------------------------------------------------------------- /components-starter/camel-zookeeper-cluster-service-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zookeeper-cluster-service-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-zookeeper-master-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zookeeper-master-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/camel-zookeeper-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/camel-zookeeper-starter/pom.xml -------------------------------------------------------------------------------- /components-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/components-starter/pom.xml -------------------------------------------------------------------------------- /core-starter/camel-spring-boot-engine-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core-starter/camel-spring-boot-engine-starter/pom.xml -------------------------------------------------------------------------------- /core-starter/camel-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core-starter/camel-spring-boot-starter/pom.xml -------------------------------------------------------------------------------- /core-starter/camel-spring-boot-xml-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core-starter/camel-spring-boot-xml-starter/pom.xml -------------------------------------------------------------------------------- /core-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core-starter/pom.xml -------------------------------------------------------------------------------- /core/ac-mappings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/ac-mappings.yml -------------------------------------------------------------------------------- /core/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/antora.yml -------------------------------------------------------------------------------- /core/camel-spring-boot-xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot-xml/pom.xml -------------------------------------------------------------------------------- /core/camel-spring-boot-xml/src/main/docs/spring-boot-xml.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot-xml/src/main/docs/spring-boot-xml.adoc -------------------------------------------------------------------------------- /core/camel-spring-boot-xml/src/main/docs/spring-boot-xml.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [] 3 | } -------------------------------------------------------------------------------- /core/camel-spring-boot-xml/src/test/resources/camel-xml-io-dsl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot-xml/src/test/resources/camel-xml-io-dsl.xml -------------------------------------------------------------------------------- /core/camel-spring-boot-xml/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot-xml/src/test/resources/logback.xml -------------------------------------------------------------------------------- /core/camel-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/pom.xml -------------------------------------------------------------------------------- /core/camel-spring-boot/src/main/docs/spring-boot.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/main/docs/spring-boot.adoc -------------------------------------------------------------------------------- /core/camel-spring-boot/src/main/docs/spring-boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/main/docs/spring-boot.json -------------------------------------------------------------------------------- /core/camel-spring-boot/src/main/docs/starter-configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/main/docs/starter-configuration.adoc -------------------------------------------------------------------------------- /core/camel-spring-boot/src/main/velocity/config.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/main/velocity/config.vm -------------------------------------------------------------------------------- /core/camel-spring-boot/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/test/resources/application.properties -------------------------------------------------------------------------------- /core/camel-spring-boot/src/test/resources/camel/camelContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/test/resources/camel/camelContext.xml -------------------------------------------------------------------------------- /core/camel-spring-boot/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/test/resources/logback.xml -------------------------------------------------------------------------------- /core/camel-spring-boot/src/test/resources/routes/bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/test/resources/routes/bar.xml -------------------------------------------------------------------------------- /core/camel-spring-boot/src/test/resources/routes/foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/test/resources/routes/foo.xml -------------------------------------------------------------------------------- /core/camel-spring-boot/src/test/secret/do-not-tell.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/camel-spring-boot/src/test/secret/do-not-tell.properties -------------------------------------------------------------------------------- /core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/core/pom.xml -------------------------------------------------------------------------------- /docs/README_local_build.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/README_local_build.adoc -------------------------------------------------------------------------------- /docs/components/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/components/antora.yml -------------------------------------------------------------------------------- /docs/components/modules/spring-boot/partials/starter.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/components/modules/spring-boot/partials/starter.adoc -------------------------------------------------------------------------------- /docs/local-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/local-build.sh -------------------------------------------------------------------------------- /docs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/pom.xml -------------------------------------------------------------------------------- /docs/source-map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/source-map.yml -------------------------------------------------------------------------------- /docs/source-watch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/source-watch.yml -------------------------------------------------------------------------------- /docs/spring-boot/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/spring-boot/antora.yml -------------------------------------------------------------------------------- /docs/spring-boot/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/spring-boot/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /docs/spring-boot/modules/ROOT/pages/contributing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/spring-boot/modules/ROOT/pages/contributing.adoc -------------------------------------------------------------------------------- /docs/spring-boot/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/spring-boot/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /docs/spring-boot/modules/ROOT/pages/list.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/docs/spring-boot/modules/ROOT/pages/list.adoc -------------------------------------------------------------------------------- /dsl-starter/camel-cli-connector-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-cli-connector-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-cli-debug-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-cli-debug-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-componentdsl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-componentdsl-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-dsl-modeline-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-dsl-modeline-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-endpointdsl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-endpointdsl-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-java-joor-dsl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-java-joor-dsl-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-xml-io-dsl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-xml-io-dsl-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-xml-io-dsl-starter/src/main/docs/xml-io-dsl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-xml-io-dsl-starter/src/main/docs/xml-io-dsl.json -------------------------------------------------------------------------------- /dsl-starter/camel-xml-jaxb-dsl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-xml-jaxb-dsl-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-yaml-dsl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-yaml-dsl-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/camel-yaml-io-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/camel-yaml-io-starter/pom.xml -------------------------------------------------------------------------------- /dsl-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/dsl-starter/pom.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/parent/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/pom.xml -------------------------------------------------------------------------------- /starter-create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/starter-create -------------------------------------------------------------------------------- /starter-create.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/starter-create.cmd -------------------------------------------------------------------------------- /starter-delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/starter-delete -------------------------------------------------------------------------------- /starter-delete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/starter-delete.cmd -------------------------------------------------------------------------------- /tests/camel-itest-spring-boot/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tests/camel-itest-spring-boot/README.adoc -------------------------------------------------------------------------------- /tests/camel-itest-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tests/camel-itest-spring-boot/pom.xml -------------------------------------------------------------------------------- /tests/camel-itest-spring-boot/src/test/resources/BOOT-MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tests/camel-itest-spring-boot/src/test/resources/BOOT-MANIFEST.MF -------------------------------------------------------------------------------- /tests/camel-itest-spring-boot/src/test/resources/arquillian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tests/camel-itest-spring-boot/src/test/resources/arquillian.xml -------------------------------------------------------------------------------- /tests/camel-itest-spring-boot/src/test/resources/jul.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tests/camel-itest-spring-boot/src/test/resources/jul.properties -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tests/pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-bom-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-bom-generator/pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-bom-generator/target-template-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-bom-generator/target-template-pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-bom/pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-config-generator-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-config-generator-maven-plugin/pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-dependencies-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-dependencies-generator/pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-dependencies/pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-generator-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-generator-maven-plugin/pom.xml -------------------------------------------------------------------------------- /tooling/camel-spring-boot-starter-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-spring-boot-starter-generator/pom.xml -------------------------------------------------------------------------------- /tooling/camel-starter-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/camel-starter-parent/pom.xml -------------------------------------------------------------------------------- /tooling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-spring-boot/HEAD/tooling/pom.xml --------------------------------------------------------------------------------