Copy disabled (too large)
Download .txt
Showing preview only (53,712K chars total). Download the full file to get everything.
Repository: apache/camel-spring-boot
Branch: main
Commit: 30ca81f8eb47
Files: 5573
Total size: 49.4 MB
Directory structure:
gitextract_48t35rhg/
├── .asf.yaml
├── .gitattributes
├── .github/
│ ├── actions/
│ │ └── incremental-build/
│ │ ├── exclusions.sh
│ │ └── parse_errors.sh
│ ├── asf-deploy-settings.xml
│ ├── dependabot.yml
│ └── workflows/
│ ├── automatic-sync-main.yml
│ ├── depsreview.yaml
│ ├── generate-sbom-main.yml
│ ├── pr-build-main.yml
│ └── pr-doc-validation.yml
├── .gitignore
├── .mvn/
│ ├── extensions.xml
│ ├── jvm.config
│ └── wrapper/
│ ├── maven-wrapper.jar
│ └── maven-wrapper.properties
├── Jenkinsfile.sb
├── Jenkinsfile.sb.deploy
├── Jenkinsfile.sb.ppc64le
├── KEYS
├── LICENSE.txt
├── NOTICE.txt
├── README.md
├── archetypes/
│ ├── camel-archetype-spring-boot/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── resources/
│ │ │ │ ├── META-INF/
│ │ │ │ │ ├── LICENSE.txt
│ │ │ │ │ ├── NOTICE.txt
│ │ │ │ │ └── archetype-post-generate.groovy
│ │ │ │ └── archetype-resources/
│ │ │ │ ├── README.adoc
│ │ │ │ ├── pom.xml
│ │ │ │ └── src/
│ │ │ │ ├── main/
│ │ │ │ │ ├── java/
│ │ │ │ │ │ ├── MySpringBean.java
│ │ │ │ │ │ ├── MySpringBootApplication.java
│ │ │ │ │ │ └── MySpringBootRouter.java
│ │ │ │ │ └── resources/
│ │ │ │ │ ├── META-INF/
│ │ │ │ │ │ ├── LICENSE.txt
│ │ │ │ │ │ └── NOTICE.txt
│ │ │ │ │ └── application.properties
│ │ │ │ └── test/
│ │ │ │ └── java/
│ │ │ │ └── MySpringBootApplicationTest.java
│ │ │ └── resources-filtered/
│ │ │ └── META-INF/
│ │ │ └── maven/
│ │ │ └── archetype-metadata.xml
│ │ └── test/
│ │ └── resources/
│ │ ├── projects/
│ │ │ ├── build-it/
│ │ │ │ ├── archetype.properties
│ │ │ │ └── goal.txt
│ │ │ └── run-it/
│ │ │ ├── archetype.properties
│ │ │ └── goal.txt
│ │ └── settings.xml
│ └── pom.xml
├── camel-spring-boot-sbom/
│ ├── camel-spring-boot-sbom.json
│ ├── camel-spring-boot-sbom.vex.json
│ └── camel-spring-boot-sbom.xml
├── catalog/
│ ├── camel-catalog-provider-springboot/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── springboot/
│ │ │ │ └── catalog/
│ │ │ │ └── SpringBootRuntimeProvider.java
│ │ │ └── resources/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── springboot/
│ │ │ └── catalog/
│ │ │ ├── beans/
│ │ │ │ ├── CaffeineAggregationRepository.json
│ │ │ │ ├── CaffeineIdempotentRepository.json
│ │ │ │ ├── CassandraAggregationRepository.json
│ │ │ │ ├── CassandraIdempotentRepository.json
│ │ │ │ ├── ConsulClusterService.json
│ │ │ │ ├── CronScheduledRoutePolicy.json
│ │ │ │ ├── EhcacheAggregationRepository.json
│ │ │ │ ├── EhcacheIdempotentRepository.json
│ │ │ │ ├── ElasticsearchBulkRequestAggregationStrategy.json
│ │ │ │ ├── Etcd3AggregationRepository.json
│ │ │ │ ├── FileLockClusterService.json
│ │ │ │ ├── HazelcastAggregationRepository.json
│ │ │ │ ├── HazelcastIdempotentRepository.json
│ │ │ │ ├── InfinispanEmbeddedAggregationRepository.json
│ │ │ │ ├── InfinispanEmbeddedClusterService.json
│ │ │ │ ├── InfinispanEmbeddedIdempotentRepository.json
│ │ │ │ ├── InfinispanRemoteAggregationRepository.json
│ │ │ │ ├── InfinispanRemoteClusterService.json
│ │ │ │ ├── InfinispanRemoteIdempotentRepository.json
│ │ │ │ ├── JCacheAggregationRepository.json
│ │ │ │ ├── JCacheIdempotentRepository.json
│ │ │ │ ├── JGroupsRaftClusterService.json
│ │ │ │ ├── JdbcAggregationRepository.json
│ │ │ │ ├── JdbcMessageIdRepository.json
│ │ │ │ ├── KafkaIdempotentRepository.json
│ │ │ │ ├── KubernetesClusterService.json
│ │ │ │ ├── LevelDBAggregationRepository.json
│ │ │ │ ├── LoggingHttpActivityListener.json
│ │ │ │ ├── MongoDbIdempotentRepository.json
│ │ │ │ ├── OpensearchBulkRequestAggregationStrategy.json
│ │ │ │ ├── SimpleScheduledRoutePolicy.json
│ │ │ │ ├── SpringCacheIdempotentRepository.json
│ │ │ │ ├── SpringRedisIdempotentRepository.json
│ │ │ │ ├── TarAggregationStrategy.json
│ │ │ │ ├── XsltAggregationStrategy.json
│ │ │ │ ├── XsltSaxonAggregationStrategy.json
│ │ │ │ ├── ZipAggregationStrategy.json
│ │ │ │ └── ZooKeeperClusterService.json
│ │ │ ├── beans.properties
│ │ │ ├── components/
│ │ │ │ ├── activemq.json
│ │ │ │ ├── activemq6.json
│ │ │ │ ├── amqp.json
│ │ │ │ ├── arangodb.json
│ │ │ │ ├── as2.json
│ │ │ │ ├── asterisk.json
│ │ │ │ ├── atmosphere-websocket.json
│ │ │ │ ├── atom.json
│ │ │ │ ├── avro.json
│ │ │ │ ├── aws-bedrock-agent-runtime.json
│ │ │ │ ├── aws-bedrock-agent.json
│ │ │ │ ├── aws-bedrock.json
│ │ │ │ ├── aws-cloudtrail.json
│ │ │ │ ├── aws-config.json
│ │ │ │ ├── aws-parameter-store.json
│ │ │ │ ├── aws-secrets-manager.json
│ │ │ │ ├── aws-security-hub.json
│ │ │ │ ├── aws2-athena.json
│ │ │ │ ├── aws2-comprehend.json
│ │ │ │ ├── aws2-cw.json
│ │ │ │ ├── aws2-ddb.json
│ │ │ │ ├── aws2-ddbstream.json
│ │ │ │ ├── aws2-ec2.json
│ │ │ │ ├── aws2-ecs.json
│ │ │ │ ├── aws2-eks.json
│ │ │ │ ├── aws2-eventbridge.json
│ │ │ │ ├── aws2-iam.json
│ │ │ │ ├── aws2-kinesis-firehose.json
│ │ │ │ ├── aws2-kinesis.json
│ │ │ │ ├── aws2-kms.json
│ │ │ │ ├── aws2-lambda.json
│ │ │ │ ├── aws2-mq.json
│ │ │ │ ├── aws2-msk.json
│ │ │ │ ├── aws2-polly.json
│ │ │ │ ├── aws2-redshift-data.json
│ │ │ │ ├── aws2-rekognition.json
│ │ │ │ ├── aws2-s3-vectors.json
│ │ │ │ ├── aws2-s3.json
│ │ │ │ ├── aws2-ses.json
│ │ │ │ ├── aws2-sns.json
│ │ │ │ ├── aws2-sqs.json
│ │ │ │ ├── aws2-step-functions.json
│ │ │ │ ├── aws2-sts.json
│ │ │ │ ├── aws2-textract.json
│ │ │ │ ├── aws2-timestream.json
│ │ │ │ ├── aws2-transcribe.json
│ │ │ │ ├── aws2-translate.json
│ │ │ │ ├── azure-cosmosdb.json
│ │ │ │ ├── azure-eventgrid.json
│ │ │ │ ├── azure-eventhubs.json
│ │ │ │ ├── azure-files.json
│ │ │ │ ├── azure-functions.json
│ │ │ │ ├── azure-key-vault.json
│ │ │ │ ├── azure-servicebus.json
│ │ │ │ ├── azure-storage-blob.json
│ │ │ │ ├── azure-storage-datalake.json
│ │ │ │ ├── azure-storage-queue.json
│ │ │ │ ├── bean-validator.json
│ │ │ │ ├── bean.json
│ │ │ │ ├── bonita.json
│ │ │ │ ├── box.json
│ │ │ │ ├── braintree.json
│ │ │ │ ├── browse.json
│ │ │ │ ├── caffeine-cache.json
│ │ │ │ ├── caffeine-loadcache.json
│ │ │ │ ├── chatscript.json
│ │ │ │ ├── chunk.json
│ │ │ │ ├── class.json
│ │ │ │ ├── clickup.json
│ │ │ │ ├── cm-sms.json
│ │ │ │ ├── coap+tcp.json
│ │ │ │ ├── coap.json
│ │ │ │ ├── coaps+tcp.json
│ │ │ │ ├── coaps.json
│ │ │ │ ├── cometd.json
│ │ │ │ ├── cometds.json
│ │ │ │ ├── consul.json
│ │ │ │ ├── controlbus.json
│ │ │ │ ├── couchbase.json
│ │ │ │ ├── couchdb.json
│ │ │ │ ├── cql.json
│ │ │ │ ├── cron.json
│ │ │ │ ├── crypto.json
│ │ │ │ ├── cxf.json
│ │ │ │ ├── cxfrs.json
│ │ │ │ ├── cyberark-vault.json
│ │ │ │ ├── dapr.json
│ │ │ │ ├── dataformat.json
│ │ │ │ ├── dataset-test.json
│ │ │ │ ├── dataset.json
│ │ │ │ ├── debezium-db2.json
│ │ │ │ ├── debezium-mongodb.json
│ │ │ │ ├── debezium-mysql.json
│ │ │ │ ├── debezium-oracle.json
│ │ │ │ ├── debezium-postgres.json
│ │ │ │ ├── debezium-sqlserver.json
│ │ │ │ ├── dfdl.json
│ │ │ │ ├── dhis2.json
│ │ │ │ ├── digitalocean.json
│ │ │ │ ├── direct.json
│ │ │ │ ├── disruptor-vm.json
│ │ │ │ ├── disruptor.json
│ │ │ │ ├── djl.json
│ │ │ │ ├── dns.json
│ │ │ │ ├── docker.json
│ │ │ │ ├── docling.json
│ │ │ │ ├── drill.json
│ │ │ │ ├── dropbox.json
│ │ │ │ ├── dynamic-router-control.json
│ │ │ │ ├── dynamic-router.json
│ │ │ │ ├── ehcache.json
│ │ │ │ ├── elasticsearch-rest-client.json
│ │ │ │ ├── elasticsearch.json
│ │ │ │ ├── etcd3.json
│ │ │ │ ├── exec.json
│ │ │ │ ├── fhir.json
│ │ │ │ ├── file-watch.json
│ │ │ │ ├── file.json
│ │ │ │ ├── flatpack.json
│ │ │ │ ├── flink.json
│ │ │ │ ├── flowable.json
│ │ │ │ ├── fop.json
│ │ │ │ ├── freemarker.json
│ │ │ │ ├── ftp.json
│ │ │ │ ├── ftps.json
│ │ │ │ ├── geocoder.json
│ │ │ │ ├── git.json
│ │ │ │ ├── github.json
│ │ │ │ ├── github2.json
│ │ │ │ ├── google-bigquery-sql.json
│ │ │ │ ├── google-bigquery.json
│ │ │ │ ├── google-calendar-stream.json
│ │ │ │ ├── google-calendar.json
│ │ │ │ ├── google-drive.json
│ │ │ │ ├── google-firestore.json
│ │ │ │ ├── google-functions.json
│ │ │ │ ├── google-mail-stream.json
│ │ │ │ ├── google-mail.json
│ │ │ │ ├── google-pubsub.json
│ │ │ │ ├── google-secret-manager.json
│ │ │ │ ├── google-sheets-stream.json
│ │ │ │ ├── google-sheets.json
│ │ │ │ ├── google-speech-to-text.json
│ │ │ │ ├── google-storage.json
│ │ │ │ ├── google-text-to-speech.json
│ │ │ │ ├── google-vertexai.json
│ │ │ │ ├── google-vision.json
│ │ │ │ ├── graphql.json
│ │ │ │ ├── grpc.json
│ │ │ │ ├── hashicorp-vault.json
│ │ │ │ ├── hazelcast-atomicvalue.json
│ │ │ │ ├── hazelcast-instance.json
│ │ │ │ ├── hazelcast-list.json
│ │ │ │ ├── hazelcast-map.json
│ │ │ │ ├── hazelcast-multimap.json
│ │ │ │ ├── hazelcast-pncounter.json
│ │ │ │ ├── hazelcast-queue.json
│ │ │ │ ├── hazelcast-replicatedmap.json
│ │ │ │ ├── hazelcast-ringbuffer.json
│ │ │ │ ├── hazelcast-seda.json
│ │ │ │ ├── hazelcast-set.json
│ │ │ │ ├── hazelcast-topic.json
│ │ │ │ ├── http.json
│ │ │ │ ├── https.json
│ │ │ │ ├── huggingface.json
│ │ │ │ ├── hwcloud-dms.json
│ │ │ │ ├── hwcloud-frs.json
│ │ │ │ ├── hwcloud-functiongraph.json
│ │ │ │ ├── hwcloud-iam.json
│ │ │ │ ├── hwcloud-imagerecognition.json
│ │ │ │ ├── hwcloud-obs.json
│ │ │ │ ├── hwcloud-smn.json
│ │ │ │ ├── ibm-cos.json
│ │ │ │ ├── ibm-secrets-manager.json
│ │ │ │ ├── ibm-watson-discovery.json
│ │ │ │ ├── ibm-watson-language.json
│ │ │ │ ├── ibm-watson-speech-to-text.json
│ │ │ │ ├── ibm-watson-text-to-speech.json
│ │ │ │ ├── ibm-watsonx-ai.json
│ │ │ │ ├── iec60870-client.json
│ │ │ │ ├── iec60870-server.json
│ │ │ │ ├── iggy.json
│ │ │ │ ├── ignite-cache.json
│ │ │ │ ├── ignite-compute.json
│ │ │ │ ├── ignite-events.json
│ │ │ │ ├── ignite-idgen.json
│ │ │ │ ├── ignite-messaging.json
│ │ │ │ ├── ignite-queue.json
│ │ │ │ ├── ignite-set.json
│ │ │ │ ├── imap.json
│ │ │ │ ├── imaps.json
│ │ │ │ ├── infinispan-embedded.json
│ │ │ │ ├── infinispan.json
│ │ │ │ ├── influxdb.json
│ │ │ │ ├── influxdb2.json
│ │ │ │ ├── irc.json
│ │ │ │ ├── ironmq.json
│ │ │ │ ├── jcache.json
│ │ │ │ ├── jcr.json
│ │ │ │ ├── jdbc.json
│ │ │ │ ├── jetty.json
│ │ │ │ ├── jgroups-raft.json
│ │ │ │ ├── jgroups.json
│ │ │ │ ├── jira.json
│ │ │ │ ├── jms.json
│ │ │ │ ├── jmx.json
│ │ │ │ ├── jolt.json
│ │ │ │ ├── jooq.json
│ │ │ │ ├── jpa.json
│ │ │ │ ├── jslt.json
│ │ │ │ ├── json-patch.json
│ │ │ │ ├── json-validator.json
│ │ │ │ ├── jsonata.json
│ │ │ │ ├── jt400.json
│ │ │ │ ├── jte.json
│ │ │ │ ├── kafka.json
│ │ │ │ ├── kamelet.json
│ │ │ │ ├── keycloak.json
│ │ │ │ ├── knative.json
│ │ │ │ ├── kserve.json
│ │ │ │ ├── kubernetes-config-maps.json
│ │ │ │ ├── kubernetes-cronjob.json
│ │ │ │ ├── kubernetes-custom-resources.json
│ │ │ │ ├── kubernetes-deployments.json
│ │ │ │ ├── kubernetes-events.json
│ │ │ │ ├── kubernetes-hpa.json
│ │ │ │ ├── kubernetes-job.json
│ │ │ │ ├── kubernetes-namespaces.json
│ │ │ │ ├── kubernetes-nodes.json
│ │ │ │ ├── kubernetes-persistent-volumes-claims.json
│ │ │ │ ├── kubernetes-persistent-volumes.json
│ │ │ │ ├── kubernetes-pods.json
│ │ │ │ ├── kubernetes-replication-controllers.json
│ │ │ │ ├── kubernetes-resources-quota.json
│ │ │ │ ├── kubernetes-secrets.json
│ │ │ │ ├── kubernetes-service-accounts.json
│ │ │ │ ├── kubernetes-services.json
│ │ │ │ ├── kudu.json
│ │ │ │ ├── langchain4j-agent.json
│ │ │ │ ├── langchain4j-chat.json
│ │ │ │ ├── langchain4j-embeddings.json
│ │ │ │ ├── langchain4j-embeddingstore.json
│ │ │ │ ├── langchain4j-tools.json
│ │ │ │ ├── langchain4j-web-search.json
│ │ │ │ ├── language.json
│ │ │ │ ├── ldap.json
│ │ │ │ ├── ldif.json
│ │ │ │ ├── log.json
│ │ │ │ ├── lpr.json
│ │ │ │ ├── lucene.json
│ │ │ │ ├── lumberjack.json
│ │ │ │ ├── mapstruct.json
│ │ │ │ ├── master.json
│ │ │ │ ├── metrics.json
│ │ │ │ ├── micrometer.json
│ │ │ │ ├── milo-browse.json
│ │ │ │ ├── milo-client.json
│ │ │ │ ├── milo-server.json
│ │ │ │ ├── milvus.json
│ │ │ │ ├── mina-sftp.json
│ │ │ │ ├── mina.json
│ │ │ │ ├── minio.json
│ │ │ │ ├── mllp.json
│ │ │ │ ├── mock.json
│ │ │ │ ├── mongodb-gridfs.json
│ │ │ │ ├── mongodb.json
│ │ │ │ ├── mustache.json
│ │ │ │ ├── mvel.json
│ │ │ │ ├── mybatis-bean.json
│ │ │ │ ├── mybatis.json
│ │ │ │ ├── nats.json
│ │ │ │ ├── neo4j.json
│ │ │ │ ├── netty-http.json
│ │ │ │ ├── netty.json
│ │ │ │ ├── oaipmh.json
│ │ │ │ ├── olingo2.json
│ │ │ │ ├── olingo4.json
│ │ │ │ ├── once.json
│ │ │ │ ├── openai.json
│ │ │ │ ├── opensearch.json
│ │ │ │ ├── openshift-build-configs.json
│ │ │ │ ├── openshift-builds.json
│ │ │ │ ├── openshift-deploymentconfigs.json
│ │ │ │ ├── openstack-cinder.json
│ │ │ │ ├── openstack-glance.json
│ │ │ │ ├── openstack-keystone.json
│ │ │ │ ├── openstack-neutron.json
│ │ │ │ ├── openstack-nova.json
│ │ │ │ ├── openstack-swift.json
│ │ │ │ ├── opentelemetry-metrics.json
│ │ │ │ ├── optaplanner.json
│ │ │ │ ├── paho-mqtt5.json
│ │ │ │ ├── paho.json
│ │ │ │ ├── pdf.json
│ │ │ │ ├── pg-replication-slot.json
│ │ │ │ ├── pgevent.json
│ │ │ │ ├── pinecone.json
│ │ │ │ ├── platform-http.json
│ │ │ │ ├── plc4x.json
│ │ │ │ ├── pop3.json
│ │ │ │ ├── pop3s.json
│ │ │ │ ├── pqc.json
│ │ │ │ ├── pubnub.json
│ │ │ │ ├── pulsar.json
│ │ │ │ ├── qdrant.json
│ │ │ │ ├── quartz.json
│ │ │ │ ├── quickfix.json
│ │ │ │ ├── reactive-streams.json
│ │ │ │ ├── ref.json
│ │ │ │ ├── rest-api.json
│ │ │ │ ├── rest-openapi.json
│ │ │ │ ├── rest.json
│ │ │ │ ├── robotframework.json
│ │ │ │ ├── rocketmq.json
│ │ │ │ ├── rss.json
│ │ │ │ ├── saga.json
│ │ │ │ ├── salesforce.json
│ │ │ │ ├── sap-netweaver.json
│ │ │ │ ├── scheduler.json
│ │ │ │ ├── schematron.json
│ │ │ │ ├── scp.json
│ │ │ │ ├── seda.json
│ │ │ │ ├── service.json
│ │ │ │ ├── servicenow.json
│ │ │ │ ├── servlet.json
│ │ │ │ ├── sftp.json
│ │ │ │ ├── sjms.json
│ │ │ │ ├── sjms2.json
│ │ │ │ ├── slack.json
│ │ │ │ ├── smb.json
│ │ │ │ ├── smooks.json
│ │ │ │ ├── smpp.json
│ │ │ │ ├── smpps.json
│ │ │ │ ├── smtp.json
│ │ │ │ ├── smtps.json
│ │ │ │ ├── snmp.json
│ │ │ │ ├── solr.json
│ │ │ │ ├── solrCloud.json
│ │ │ │ ├── solrs.json
│ │ │ │ ├── splunk-hec.json
│ │ │ │ ├── splunk.json
│ │ │ │ ├── spring-ai-chat.json
│ │ │ │ ├── spring-ai-embeddings.json
│ │ │ │ ├── spring-ai-image.json
│ │ │ │ ├── spring-ai-tools.json
│ │ │ │ ├── spring-ai-vector-store.json
│ │ │ │ ├── spring-batch.json
│ │ │ │ ├── spring-event.json
│ │ │ │ ├── spring-jdbc.json
│ │ │ │ ├── spring-ldap.json
│ │ │ │ ├── spring-rabbitmq.json
│ │ │ │ ├── spring-redis.json
│ │ │ │ ├── spring-ws.json
│ │ │ │ ├── sql-stored.json
│ │ │ │ ├── sql.json
│ │ │ │ ├── ssh.json
│ │ │ │ ├── stax.json
│ │ │ │ ├── stitch.json
│ │ │ │ ├── stream.json
│ │ │ │ ├── string-template.json
│ │ │ │ ├── stripe.json
│ │ │ │ ├── stub.json
│ │ │ │ ├── tahu-edge.json
│ │ │ │ ├── tahu-host.json
│ │ │ │ ├── telegram.json
│ │ │ │ ├── tensorflow-serving.json
│ │ │ │ ├── thrift.json
│ │ │ │ ├── thymeleaf.json
│ │ │ │ ├── tika.json
│ │ │ │ ├── timer.json
│ │ │ │ ├── twilio.json
│ │ │ │ ├── twitter-directmessage.json
│ │ │ │ ├── twitter-search.json
│ │ │ │ ├── twitter-timeline.json
│ │ │ │ ├── undertow.json
│ │ │ │ ├── validator.json
│ │ │ │ ├── velocity.json
│ │ │ │ ├── vertx-http.json
│ │ │ │ ├── vertx-websocket.json
│ │ │ │ ├── vertx.json
│ │ │ │ ├── wasm.json
│ │ │ │ ├── weather.json
│ │ │ │ ├── weaviate.json
│ │ │ │ ├── web3j.json
│ │ │ │ ├── webhook.json
│ │ │ │ ├── whatsapp.json
│ │ │ │ ├── wordpress.json
│ │ │ │ ├── workday.json
│ │ │ │ ├── xchange.json
│ │ │ │ ├── xj.json
│ │ │ │ ├── xmlsecurity-sign.json
│ │ │ │ ├── xmlsecurity-verify.json
│ │ │ │ ├── xmpp.json
│ │ │ │ ├── xquery.json
│ │ │ │ ├── xslt-saxon.json
│ │ │ │ ├── xslt.json
│ │ │ │ ├── zeebe.json
│ │ │ │ ├── zendesk.json
│ │ │ │ ├── zookeeper-master.json
│ │ │ │ └── zookeeper.json
│ │ │ ├── components.properties
│ │ │ ├── dataformats/
│ │ │ │ ├── asn1.json
│ │ │ │ ├── avro.json
│ │ │ │ ├── avroJackson.json
│ │ │ │ ├── barcode.json
│ │ │ │ ├── base64.json
│ │ │ │ ├── beanio.json
│ │ │ │ ├── bindyCsv.json
│ │ │ │ ├── bindyFixed.json
│ │ │ │ ├── bindyKvp.json
│ │ │ │ ├── cbor.json
│ │ │ │ ├── crypto.json
│ │ │ │ ├── csv.json
│ │ │ │ ├── dfdl.json
│ │ │ │ ├── fastjson.json
│ │ │ │ ├── fhirJson.json
│ │ │ │ ├── fhirXml.json
│ │ │ │ ├── flatpack.json
│ │ │ │ ├── fory.json
│ │ │ │ ├── grok.json
│ │ │ │ ├── groovyJson.json
│ │ │ │ ├── groovyXml.json
│ │ │ │ ├── gson.json
│ │ │ │ ├── gzipDeflater.json
│ │ │ │ ├── hl7.json
│ │ │ │ ├── ical.json
│ │ │ │ ├── iso8583.json
│ │ │ │ ├── jackson.json
│ │ │ │ ├── jacksonXml.json
│ │ │ │ ├── jaxb.json
│ │ │ │ ├── jsonApi.json
│ │ │ │ ├── jsonb.json
│ │ │ │ ├── lzf.json
│ │ │ │ ├── mimeMultipart.json
│ │ │ │ ├── ocsf.json
│ │ │ │ ├── parquetAvro.json
│ │ │ │ ├── pgp.json
│ │ │ │ ├── pqc.json
│ │ │ │ ├── protobuf.json
│ │ │ │ ├── protobufJackson.json
│ │ │ │ ├── rss.json
│ │ │ │ ├── smooks.json
│ │ │ │ ├── snakeYaml.json
│ │ │ │ ├── soap.json
│ │ │ │ ├── swiftMt.json
│ │ │ │ ├── swiftMx.json
│ │ │ │ ├── syslog.json
│ │ │ │ ├── tarFile.json
│ │ │ │ ├── thrift.json
│ │ │ │ ├── univocityCsv.json
│ │ │ │ ├── univocityFixed.json
│ │ │ │ ├── univocityTsv.json
│ │ │ │ ├── xmlSecurity.json
│ │ │ │ ├── zipDeflater.json
│ │ │ │ └── zipFile.json
│ │ │ ├── dataformats.properties
│ │ │ ├── dev-consoles/
│ │ │ │ ├── aws-secrets.json
│ │ │ │ ├── aws2-s3.json
│ │ │ │ ├── azure-secrets.json
│ │ │ │ ├── bean.json
│ │ │ │ ├── blocked.json
│ │ │ │ ├── browse.json
│ │ │ │ ├── circuit-breaker.json
│ │ │ │ ├── consumer.json
│ │ │ │ ├── context.json
│ │ │ │ ├── debug.json
│ │ │ │ ├── endpoint.json
│ │ │ │ ├── errors.json
│ │ │ │ ├── eval-language.json
│ │ │ │ ├── event.json
│ │ │ │ ├── gc.json
│ │ │ │ ├── gcp-secrets.json
│ │ │ │ ├── groovy.json
│ │ │ │ ├── hashicorp-secrets.json
│ │ │ │ ├── health.json
│ │ │ │ ├── inflight.json
│ │ │ │ ├── internal-tasks.json
│ │ │ │ ├── java-security.json
│ │ │ │ ├── jvm.json
│ │ │ │ ├── kafka.json
│ │ │ │ ├── kubernetes-configmaps.json
│ │ │ │ ├── kubernetes-secrets.json
│ │ │ │ ├── log.json
│ │ │ │ ├── memory.json
│ │ │ │ ├── message-history.json
│ │ │ │ ├── micrometer.json
│ │ │ │ ├── platform-http.json
│ │ │ │ ├── processor.json
│ │ │ │ ├── producer.json
│ │ │ │ ├── properties.json
│ │ │ │ ├── quartz.json
│ │ │ │ ├── receive.json
│ │ │ │ ├── reload.json
│ │ │ │ ├── resilience4j.json
│ │ │ │ ├── rest.json
│ │ │ │ ├── route-controller.json
│ │ │ │ ├── route-dump.json
│ │ │ │ ├── route-group.json
│ │ │ │ ├── route-structure.json
│ │ │ │ ├── route.json
│ │ │ │ ├── send.json
│ │ │ │ ├── service.json
│ │ │ │ ├── sftp.json
│ │ │ │ ├── simple-language.json
│ │ │ │ ├── source.json
│ │ │ │ ├── startup-recorder.json
│ │ │ │ ├── stub.json
│ │ │ │ ├── system-properties.json
│ │ │ │ ├── thread.json
│ │ │ │ ├── top.json
│ │ │ │ ├── trace.json
│ │ │ │ ├── transformers.json
│ │ │ │ ├── type-converters.json
│ │ │ │ ├── variables.json
│ │ │ │ └── vertx-websocket.json
│ │ │ ├── dev-consoles.properties
│ │ │ ├── languages/
│ │ │ │ ├── bean.json
│ │ │ │ ├── constant.json
│ │ │ │ ├── csimple.json
│ │ │ │ ├── datasonnet.json
│ │ │ │ ├── exchangeProperty.json
│ │ │ │ ├── file.json
│ │ │ │ ├── groovy.json
│ │ │ │ ├── header.json
│ │ │ │ ├── hl7terser.json
│ │ │ │ ├── java.json
│ │ │ │ ├── joor.json
│ │ │ │ ├── jq.json
│ │ │ │ ├── js.json
│ │ │ │ ├── jsonpath.json
│ │ │ │ ├── mvel.json
│ │ │ │ ├── ognl.json
│ │ │ │ ├── python.json
│ │ │ │ ├── ref.json
│ │ │ │ ├── simple.json
│ │ │ │ ├── spel.json
│ │ │ │ ├── tokenize.json
│ │ │ │ ├── variable.json
│ │ │ │ ├── wasm.json
│ │ │ │ ├── xpath.json
│ │ │ │ ├── xquery.json
│ │ │ │ └── xtokenize.json
│ │ │ ├── languages.properties
│ │ │ ├── others/
│ │ │ │ ├── cli-connector.json
│ │ │ │ ├── cli-debug.json
│ │ │ │ ├── cloudevents.json
│ │ │ │ ├── componentdsl.json
│ │ │ │ ├── console.json
│ │ │ │ ├── core-engine.json
│ │ │ │ ├── csimple-joor.json
│ │ │ │ ├── cxf-transport.json
│ │ │ │ ├── debug.json
│ │ │ │ ├── dsl-modeline.json
│ │ │ │ ├── endpointdsl.json
│ │ │ │ ├── github2.json
│ │ │ │ ├── jandex.json
│ │ │ │ ├── jasypt.json
│ │ │ │ ├── java-joor-dsl.json
│ │ │ │ ├── jfr.json
│ │ │ │ ├── jsoup.json
│ │ │ │ ├── keycloak.json
│ │ │ │ ├── langchain4j-tokenizer.json
│ │ │ │ ├── leveldb.json
│ │ │ │ ├── lra.json
│ │ │ │ ├── mail-microsoft-oauth.json
│ │ │ │ ├── management.json
│ │ │ │ ├── mdc.json
│ │ │ │ ├── micrometer-observability.json
│ │ │ │ ├── observability-services.json
│ │ │ │ ├── observation.json
│ │ │ │ ├── openapi-java.json
│ │ │ │ ├── openapi-validator.json
│ │ │ │ ├── opentelemetry.json
│ │ │ │ ├── opentelemetry2.json
│ │ │ │ ├── reactor.json
│ │ │ │ ├── resilience4j-micrometer.json
│ │ │ │ ├── resilience4j.json
│ │ │ │ ├── rxjava.json
│ │ │ │ ├── shiro.json
│ │ │ │ ├── spring-cloud-config.json
│ │ │ │ ├── spring-security.json
│ │ │ │ ├── telemetry-dev.json
│ │ │ │ ├── undertow-spring-security.json
│ │ │ │ ├── xml-io-dsl.json
│ │ │ │ ├── xml-jaxb-dsl.json
│ │ │ │ ├── xml-jaxb.json
│ │ │ │ ├── xml-jaxp.json
│ │ │ │ ├── yaml-dsl.json
│ │ │ │ └── yaml-io.json
│ │ │ ├── others.properties
│ │ │ ├── transformers/
│ │ │ │ ├── application-cloudevents+json.json
│ │ │ │ ├── application-json.json
│ │ │ │ ├── application-x-java-object.json
│ │ │ │ ├── application-x-struct.json
│ │ │ │ ├── avro-binary.json
│ │ │ │ ├── avro-x-java-object.json
│ │ │ │ ├── avro-x-struct.json
│ │ │ │ ├── aws-cloudtrail-application-cloudevents.json
│ │ │ │ ├── aws2-ddb-application-json.json
│ │ │ │ ├── aws2-ddb-application-x-struct.json
│ │ │ │ ├── aws2-ddbstream-application-cloudevents.json
│ │ │ │ ├── aws2-kinesis-application-cloudevents.json
│ │ │ │ ├── aws2-s3-application-cloudevents.json
│ │ │ │ ├── aws2-sqs-application-cloudevents.json
│ │ │ │ ├── azure-cosmosdb-application-cloudevents.json
│ │ │ │ ├── azure-eventhubs-application-cloudevents.json
│ │ │ │ ├── azure-files-application-cloudevents.json
│ │ │ │ ├── azure-servicebus-application-cloudevents.json
│ │ │ │ ├── azure-storage-blob-application-cloudevents.json
│ │ │ │ ├── azure-storage-datalake-application-cloudevents.json
│ │ │ │ ├── azure-storage-queue-application-cloudevents.json
│ │ │ │ ├── google-calendar-stream-application-cloudevents.json
│ │ │ │ ├── google-mail-draft.json
│ │ │ │ ├── google-mail-stream-application-cloudevents.json
│ │ │ │ ├── google-mail-update-message-labels.json
│ │ │ │ ├── google-pubsub-application-cloudevents.json
│ │ │ │ ├── google-sheets-application-x-struct.json
│ │ │ │ ├── google-sheets-stream-application-cloudevents.json
│ │ │ │ ├── google-storage-application-cloudevents.json
│ │ │ │ ├── http-application-cloudevents.json
│ │ │ │ ├── infinispan-embeddings.json
│ │ │ │ ├── milvus-embeddings.json
│ │ │ │ ├── neo4j-embeddings.json
│ │ │ │ ├── neo4j-rag.json
│ │ │ │ ├── pinecone-embeddings.json
│ │ │ │ ├── pinecone-rag.json
│ │ │ │ ├── protobuf-binary.json
│ │ │ │ ├── protobuf-x-java-object.json
│ │ │ │ ├── protobuf-x-struct.json
│ │ │ │ ├── qdrant-embeddings.json
│ │ │ │ ├── qdrant-rag.json
│ │ │ │ ├── slack-application-cloudevents.json
│ │ │ │ └── weaviate-embeddings.json
│ │ │ └── transformers.properties
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── springboot/
│ │ └── catalog/
│ │ └── SpringBootRuntimeProviderTest.java
│ └── pom.xml
├── components-starter/
│ ├── ac-mappings.yml
│ ├── antora.yml
│ ├── camel-activemq-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── activemq.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── activemq/
│ │ │ └── springboot/
│ │ │ ├── ActiveMQComponentAutoConfiguration.java
│ │ │ ├── ActiveMQComponentConfiguration.java
│ │ │ └── ActiveMQComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-activemq6-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── activemq6.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── activemq6/
│ │ │ └── springboot/
│ │ │ ├── ActiveMQComponentAutoConfiguration.java
│ │ │ ├── ActiveMQComponentConfiguration.java
│ │ │ └── ActiveMQComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-amqp-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── amqp.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── amqp/
│ │ │ └── springboot/
│ │ │ ├── AMQPComponentAutoConfiguration.java
│ │ │ ├── AMQPComponentConfiguration.java
│ │ │ └── AMQPComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-arangodb-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── arangodb.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── arangodb/
│ │ │ └── springboot/
│ │ │ ├── ArangoDbComponentAutoConfiguration.java
│ │ │ ├── ArangoDbComponentConfiguration.java
│ │ │ └── ArangoDbComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-as2-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── as2.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── as2/
│ │ │ └── springboot/
│ │ │ ├── AS2ComponentAutoConfiguration.java
│ │ │ ├── AS2ComponentConfiguration.java
│ │ │ └── AS2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-asn1-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── asn1.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── asn1/
│ │ │ └── springboot/
│ │ │ ├── ASN1DataFormatAutoConfiguration.java
│ │ │ └── ASN1DataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-asterisk-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── asterisk.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── asterisk/
│ │ │ └── springboot/
│ │ │ ├── AsteriskComponentAutoConfiguration.java
│ │ │ └── AsteriskComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-atmosphere-websocket-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── atmosphere-websocket.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── atmosphere/
│ │ │ └── websocket/
│ │ │ └── springboot/
│ │ │ ├── WebsocketComponentAutoConfiguration.java
│ │ │ ├── WebsocketComponentConfiguration.java
│ │ │ └── WebsocketComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-atom-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── atom.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── atom/
│ │ │ └── springboot/
│ │ │ ├── AtomComponentAutoConfiguration.java
│ │ │ └── AtomComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-avro-rpc-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── avro-rpc.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── avro/
│ │ │ └── springboot/
│ │ │ ├── AvroComponentAutoConfiguration.java
│ │ │ ├── AvroComponentConfiguration.java
│ │ │ └── AvroComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-avro-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── avro.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── dataformat/
│ │ │ │ └── avro/
│ │ │ │ └── springboot/
│ │ │ │ ├── AvroDataFormatAutoConfiguration.java
│ │ │ │ └── AvroDataFormatConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── avro/
│ │ │ └── springboot/
│ │ │ └── test/
│ │ │ ├── AvroGenericMarshaAndUnmarshaTest.java
│ │ │ ├── AvroMarshalAndUnmarshallTest.java
│ │ │ ├── AvroMarshalAndUnmarshallXmlTest.java
│ │ │ └── Value.java
│ │ └── resources/
│ │ ├── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── avro/
│ │ │ └── springboot/
│ │ │ └── test/
│ │ │ └── user.avsc
│ │ └── routes/
│ │ └── springDataFormat.xml
│ ├── camel-aws-bedrock-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws-bedrock.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── bedrock/
│ │ │ ├── agent/
│ │ │ │ └── springboot/
│ │ │ │ ├── BedrockAgentComponentAutoConfiguration.java
│ │ │ │ ├── BedrockAgentComponentConfiguration.java
│ │ │ │ └── BedrockAgentComponentConverter.java
│ │ │ ├── agentruntime/
│ │ │ │ └── springboot/
│ │ │ │ ├── BedrockAgentRuntimeComponentAutoConfiguration.java
│ │ │ │ ├── BedrockAgentRuntimeComponentConfiguration.java
│ │ │ │ └── BedrockAgentRuntimeComponentConverter.java
│ │ │ └── runtime/
│ │ │ └── springboot/
│ │ │ ├── BedrockComponentAutoConfiguration.java
│ │ │ ├── BedrockComponentConfiguration.java
│ │ │ └── BedrockComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws-cloudtrail-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws-cloudtrail.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws/
│ │ │ └── cloudtrail/
│ │ │ └── springboot/
│ │ │ ├── CloudtrailComponentAutoConfiguration.java
│ │ │ ├── CloudtrailComponentConfiguration.java
│ │ │ └── CloudtrailComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws-config-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws-config.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws/
│ │ │ └── config/
│ │ │ └── springboot/
│ │ │ ├── AWSConfigComponentAutoConfiguration.java
│ │ │ ├── AWSConfigComponentConfiguration.java
│ │ │ └── AWSConfigComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws-parameter-store-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws-parameter-store.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws/
│ │ │ └── parameterstore/
│ │ │ └── springboot/
│ │ │ ├── ParameterStoreComponentAutoConfiguration.java
│ │ │ ├── ParameterStoreComponentConfiguration.java
│ │ │ └── ParameterStoreComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws-secrets-manager-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── aws-secrets-manager.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── aws/
│ │ │ │ └── secretsmanager/
│ │ │ │ └── springboot/
│ │ │ │ ├── SecretsManagerComponentAutoConfiguration.java
│ │ │ │ ├── SecretsManagerComponentConfiguration.java
│ │ │ │ ├── SecretsManagerComponentConverter.java
│ │ │ │ └── SpringBootAwsSecretsManagerPropertiesParser.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ ├── spring/
│ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ │ └── spring.factories
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws/
│ │ │ └── secretsmanager/
│ │ │ └── springboot/
│ │ │ └── EarlyResolvedPropertiesTest.java
│ │ └── resources/
│ │ └── application.properties
│ ├── camel-aws-security-hub-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws-security-hub.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws/
│ │ │ └── securityhub/
│ │ │ └── springboot/
│ │ │ ├── SecurityHubComponentAutoConfiguration.java
│ │ │ ├── SecurityHubComponentConfiguration.java
│ │ │ └── SecurityHubComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-athena-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-athena.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── athena/
│ │ │ └── springboot/
│ │ │ ├── Athena2ComponentAutoConfiguration.java
│ │ │ ├── Athena2ComponentConfiguration.java
│ │ │ └── Athena2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-comprehend-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-comprehend.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── comprehend/
│ │ │ └── springboot/
│ │ │ ├── Comprehend2ComponentAutoConfiguration.java
│ │ │ ├── Comprehend2ComponentConfiguration.java
│ │ │ └── Comprehend2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-cw-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── aws2-cw.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── aws2/
│ │ │ │ └── cw/
│ │ │ │ └── springboot/
│ │ │ │ ├── Cw2ComponentAutoConfiguration.java
│ │ │ │ ├── Cw2ComponentConfiguration.java
│ │ │ │ └── Cw2ComponentConverter.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── aws2/
│ │ └── cw/
│ │ ├── BaseCw.java
│ │ └── CwComponentTest.java
│ ├── camel-aws2-ddb-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── aws2-ddb.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── aws2/
│ │ │ │ ├── ddb/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── Ddb2ComponentAutoConfiguration.java
│ │ │ │ │ ├── Ddb2ComponentConfiguration.java
│ │ │ │ │ └── Ddb2ComponentConverter.java
│ │ │ │ └── ddbstream/
│ │ │ │ └── springboot/
│ │ │ │ ├── Ddb2StreamComponentAutoConfiguration.java
│ │ │ │ ├── Ddb2StreamComponentConfiguration.java
│ │ │ │ └── Ddb2StreamComponentConverter.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── aws2/
│ │ ├── BaseDdb2.java
│ │ ├── ddb/
│ │ │ ├── Ddb2BatchGetItemsTest.java
│ │ │ ├── Ddb2DeleteItemTest.java
│ │ │ ├── Ddb2DeleteTableTest.java
│ │ │ ├── Ddb2DescribeTableRuleIT.java
│ │ │ ├── Ddb2GetItemTest.java
│ │ │ ├── Ddb2QueryTest.java
│ │ │ ├── Ddb2ScanTest.java
│ │ │ ├── Ddb2UpdateItemTest.java
│ │ │ └── Ddb2UpdateTableByIdTest.java
│ │ └── ddbstream/
│ │ └── Ddb2StreamTest.java
│ ├── camel-aws2-ec2-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-ec2.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── ec2/
│ │ │ └── springboot/
│ │ │ ├── AWS2EC2ComponentAutoConfiguration.java
│ │ │ ├── AWS2EC2ComponentConfiguration.java
│ │ │ └── AWS2EC2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-ecs-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-ecs.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── ecs/
│ │ │ └── springboot/
│ │ │ ├── ECS2ComponentAutoConfiguration.java
│ │ │ ├── ECS2ComponentConfiguration.java
│ │ │ └── ECS2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-eks-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-eks.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── eks/
│ │ │ └── springboot/
│ │ │ ├── EKS2ComponentAutoConfiguration.java
│ │ │ ├── EKS2ComponentConfiguration.java
│ │ │ └── EKS2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-eventbridge-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-eventbridge.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── eventbridge/
│ │ │ └── springboot/
│ │ │ ├── EventbridgeComponentAutoConfiguration.java
│ │ │ ├── EventbridgeComponentConfiguration.java
│ │ │ └── EventbridgeComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-iam-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-iam.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── iam/
│ │ │ └── springboot/
│ │ │ ├── IAM2ComponentAutoConfiguration.java
│ │ │ ├── IAM2ComponentConfiguration.java
│ │ │ └── IAM2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-kinesis-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── aws2-kinesis.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── aws2/
│ │ │ │ ├── firehose/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── KinesisFirehose2ComponentAutoConfiguration.java
│ │ │ │ │ ├── KinesisFirehose2ComponentConfiguration.java
│ │ │ │ │ └── KinesisFirehose2ComponentConverter.java
│ │ │ │ └── kinesis/
│ │ │ │ └── springboot/
│ │ │ │ ├── Kinesis2ComponentAutoConfiguration.java
│ │ │ │ ├── Kinesis2ComponentConfiguration.java
│ │ │ │ └── Kinesis2ComponentConverter.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── aws2/
│ │ └── kinesis/
│ │ ├── BaseKinesis.java
│ │ └── KinesisComponentTest.java
│ ├── camel-aws2-kms-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-kms.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── kms/
│ │ │ └── springboot/
│ │ │ ├── KMS2ComponentAutoConfiguration.java
│ │ │ ├── KMS2ComponentConfiguration.java
│ │ │ └── KMS2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-lambda-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-lambda.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── lambda/
│ │ │ └── springboot/
│ │ │ ├── Lambda2ComponentAutoConfiguration.java
│ │ │ ├── Lambda2ComponentConfiguration.java
│ │ │ └── Lambda2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-mq-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-mq.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── mq/
│ │ │ └── springboot/
│ │ │ ├── MQ2ComponentAutoConfiguration.java
│ │ │ ├── MQ2ComponentConfiguration.java
│ │ │ └── MQ2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-msk-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-msk.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── msk/
│ │ │ └── springboot/
│ │ │ ├── MSK2ComponentAutoConfiguration.java
│ │ │ ├── MSK2ComponentConfiguration.java
│ │ │ └── MSK2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-polly-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-polly.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── polly/
│ │ │ └── springboot/
│ │ │ ├── Polly2ComponentAutoConfiguration.java
│ │ │ ├── Polly2ComponentConfiguration.java
│ │ │ └── Polly2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-redshift-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-redshift.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── redshift/
│ │ │ └── data/
│ │ │ └── springboot/
│ │ │ ├── RedshiftData2ComponentAutoConfiguration.java
│ │ │ ├── RedshiftData2ComponentConfiguration.java
│ │ │ └── RedshiftData2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-rekognition-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-rekognition.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── rekognition/
│ │ │ └── springboot/
│ │ │ ├── Rekognition2ComponentAutoConfiguration.java
│ │ │ ├── Rekognition2ComponentConfiguration.java
│ │ │ └── Rekognition2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-s3-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── aws2-s3.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── aws2/
│ │ │ │ └── s3/
│ │ │ │ └── springboot/
│ │ │ │ ├── AWS2S3ComponentAutoConfiguration.java
│ │ │ │ ├── AWS2S3ComponentConfiguration.java
│ │ │ │ └── AWS2S3ComponentConverter.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── s3/
│ │ │ ├── BaseS3.java
│ │ │ ├── S3BatchConsumerTest.java
│ │ │ ├── S3ComponentTest.java
│ │ │ ├── S3CopyObjectCustomerKeyTest.java
│ │ │ ├── S3CopyObjectOperationTest.java
│ │ │ ├── S3CreateDownloadLinkOperationTest.java
│ │ │ ├── S3ListObjectsOperationTest.java
│ │ │ ├── S3MoveAfterReadConsumerTest.java
│ │ │ ├── S3MultipartUploadOperationTest.java
│ │ │ ├── S3ObjectRangeOperationTest.java
│ │ │ ├── S3PojoAsBodyTest.java
│ │ │ ├── S3SimpleEncryptedUploadOperationTest.java
│ │ │ └── S3StreamUploadOperationTest.java
│ │ └── resources/
│ │ └── empty.txt
│ ├── camel-aws2-s3-vectors-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-s3-vectors.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── s3vectors/
│ │ │ └── springboot/
│ │ │ ├── AWS2S3VectorsComponentAutoConfiguration.java
│ │ │ ├── AWS2S3VectorsComponentConfiguration.java
│ │ │ └── AWS2S3VectorsComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-ses-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-ses.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── ses/
│ │ │ └── springboot/
│ │ │ ├── Ses2ComponentAutoConfiguration.java
│ │ │ ├── Ses2ComponentConfiguration.java
│ │ │ └── Ses2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-sns-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── aws2-sns.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── aws2/
│ │ │ │ └── sns/
│ │ │ │ └── springboot/
│ │ │ │ ├── Sns2ComponentAutoConfiguration.java
│ │ │ │ ├── Sns2ComponentConfiguration.java
│ │ │ │ └── Sns2ComponentConverter.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── aws2/
│ │ └── sns/
│ │ ├── BaseSns.java
│ │ ├── EmptyTestSnsConfiguration.java
│ │ ├── SnsAdvancedConfigurationTest.java
│ │ ├── SnsComponentFifoTest.java
│ │ ├── SnsTopicProducerCustomConfigTest.java
│ │ ├── SnsTopicProducerTest.java
│ │ ├── SnsTopicProducerWithSubscriptionTest.java
│ │ ├── SnsTopicWithKmsEncryptionTest.java
│ │ └── TestSnsConfiguration.java
│ ├── camel-aws2-sqs-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── aws2-sqs.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── aws2/
│ │ │ │ └── sqs/
│ │ │ │ └── springboot/
│ │ │ │ ├── Sqs2ComponentAutoConfiguration.java
│ │ │ │ ├── Sqs2ComponentConfiguration.java
│ │ │ │ └── Sqs2ComponentConverter.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── sqs/
│ │ │ ├── BaseSqs.java
│ │ │ ├── JmsStyleSelectorTest.java
│ │ │ ├── SqsComponentTest.java
│ │ │ ├── SqsDeadletterTest.java
│ │ │ ├── SqsDelayedQueueTest.java
│ │ │ ├── SqsOperationsTest.java
│ │ │ └── SqsProducerAutoCreateQueueTest.java
│ │ └── resources/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── aws2/
│ │ └── sqs/
│ │ └── policy.txt
│ ├── camel-aws2-step-functions-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-step-functions.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── stepfunctions/
│ │ │ └── springboot/
│ │ │ ├── StepFunctions2ComponentAutoConfiguration.java
│ │ │ ├── StepFunctions2ComponentConfiguration.java
│ │ │ └── StepFunctions2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-sts-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-sts.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── sts/
│ │ │ └── springboot/
│ │ │ ├── STS2ComponentAutoConfiguration.java
│ │ │ ├── STS2ComponentConfiguration.java
│ │ │ └── STS2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-textract-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-textract.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── textract/
│ │ │ └── springboot/
│ │ │ ├── Textract2ComponentAutoConfiguration.java
│ │ │ ├── Textract2ComponentConfiguration.java
│ │ │ └── Textract2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-timestream-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-timestream.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── timestream/
│ │ │ └── springboot/
│ │ │ ├── Timestream2ComponentAutoConfiguration.java
│ │ │ ├── Timestream2ComponentConfiguration.java
│ │ │ └── Timestream2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-transcribe-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-transcribe.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── transcribe/
│ │ │ └── springboot/
│ │ │ ├── Transcribe2ComponentAutoConfiguration.java
│ │ │ ├── Transcribe2ComponentConfiguration.java
│ │ │ └── Transcribe2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-aws2-translate-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── aws2-translate.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── aws2/
│ │ │ └── translate/
│ │ │ └── springboot/
│ │ │ ├── Translate2ComponentAutoConfiguration.java
│ │ │ ├── Translate2ComponentConfiguration.java
│ │ │ └── Translate2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-cosmosdb-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-cosmosdb.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── cosmosdb/
│ │ │ └── springboot/
│ │ │ ├── CosmosDbComponentAutoConfiguration.java
│ │ │ ├── CosmosDbComponentConfiguration.java
│ │ │ └── CosmosDbComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-eventgrid-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-eventgrid.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── eventgrid/
│ │ │ └── springboot/
│ │ │ ├── EventGridComponentAutoConfiguration.java
│ │ │ ├── EventGridComponentConfiguration.java
│ │ │ └── EventGridComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-eventhubs-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-eventhubs.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── eventhubs/
│ │ │ └── springboot/
│ │ │ ├── EventHubsComponentAutoConfiguration.java
│ │ │ ├── EventHubsComponentConfiguration.java
│ │ │ └── EventHubsComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-files-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-files.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── file/
│ │ │ └── azure/
│ │ │ └── springboot/
│ │ │ ├── FilesComponentAutoConfiguration.java
│ │ │ └── FilesComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-functions-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-functions.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── functions/
│ │ │ └── springboot/
│ │ │ ├── FunctionsComponentAutoConfiguration.java
│ │ │ ├── FunctionsComponentConfiguration.java
│ │ │ └── FunctionsComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-key-vault-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── azure-key-vault.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── azure/
│ │ │ │ └── key/
│ │ │ │ └── vault/
│ │ │ │ └── springboot/
│ │ │ │ ├── KeyVaultComponentAutoConfiguration.java
│ │ │ │ ├── KeyVaultComponentConfiguration.java
│ │ │ │ └── SpringBootAzureKeyVaultPropertiesParser.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ ├── spring/
│ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ │ └── spring.factories
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── key/
│ │ │ └── vault/
│ │ │ └── springboot/
│ │ │ └── EarlyResolvedPropertiesTest.java
│ │ └── resources/
│ │ └── application.properties
│ ├── camel-azure-servicebus-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-servicebus.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── servicebus/
│ │ │ └── springboot/
│ │ │ ├── ServiceBusComponentAutoConfiguration.java
│ │ │ ├── ServiceBusComponentConfiguration.java
│ │ │ └── ServiceBusComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-storage-blob-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-storage-blob.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── storage/
│ │ │ └── blob/
│ │ │ └── springboot/
│ │ │ ├── BlobComponentAutoConfiguration.java
│ │ │ ├── BlobComponentConfiguration.java
│ │ │ └── BlobComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-storage-datalake-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-storage-datalake.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── storage/
│ │ │ └── datalake/
│ │ │ └── springboot/
│ │ │ ├── DataLakeComponentAutoConfiguration.java
│ │ │ ├── DataLakeComponentConfiguration.java
│ │ │ └── DataLakeComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-azure-storage-queue-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── azure-storage-queue.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── azure/
│ │ │ └── storage/
│ │ │ └── queue/
│ │ │ └── springboot/
│ │ │ ├── QueueComponentAutoConfiguration.java
│ │ │ ├── QueueComponentConfiguration.java
│ │ │ └── QueueComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-barcode-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── barcode.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── barcode/
│ │ │ └── springboot/
│ │ │ ├── BarcodeDataFormatAutoConfiguration.java
│ │ │ └── BarcodeDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-base64-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── base64.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── base64/
│ │ │ └── springboot/
│ │ │ ├── Base64DataFormatAutoConfiguration.java
│ │ │ └── Base64DataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-bean-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── bean.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ ├── component/
│ │ │ │ ├── bean/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── BeanComponentAutoConfiguration.java
│ │ │ │ │ ├── BeanComponentConfiguration.java
│ │ │ │ │ └── BeanComponentConverter.java
│ │ │ │ └── beanclass/
│ │ │ │ └── springboot/
│ │ │ │ ├── ClassComponentAutoConfiguration.java
│ │ │ │ ├── ClassComponentConfiguration.java
│ │ │ │ └── ClassComponentConverter.java
│ │ │ └── language/
│ │ │ └── bean/
│ │ │ └── springboot/
│ │ │ ├── BeanLanguageAutoConfiguration.java
│ │ │ └── BeanLanguageConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-bean-validator-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── bean-validator.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── bean/
│ │ │ └── validator/
│ │ │ └── springboot/
│ │ │ ├── BeanValidatorComponentAutoConfiguration.java
│ │ │ ├── BeanValidatorComponentConfiguration.java
│ │ │ └── BeanValidatorComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-beanio-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── beanio.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── beanio/
│ │ │ └── springboot/
│ │ │ ├── BeanIODataFormatAutoConfiguration.java
│ │ │ └── BeanIODataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-bindy-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── bindy.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── bindy/
│ │ │ ├── csv/
│ │ │ │ └── springboot/
│ │ │ │ ├── BindyCsvDataFormatAutoConfiguration.java
│ │ │ │ └── BindyCsvDataFormatConfiguration.java
│ │ │ ├── fixed/
│ │ │ │ └── springboot/
│ │ │ │ ├── BindyFixedLengthDataFormatAutoConfiguration.java
│ │ │ │ └── BindyFixedLengthDataFormatConfiguration.java
│ │ │ └── kvp/
│ │ │ └── springboot/
│ │ │ ├── BindyKeyValuePairDataFormatAutoConfiguration.java
│ │ │ └── BindyKeyValuePairDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-bonita-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── bonita.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── bonita/
│ │ │ └── springboot/
│ │ │ ├── BonitaComponentAutoConfiguration.java
│ │ │ └── BonitaComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-box-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── box.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── box/
│ │ │ └── springboot/
│ │ │ ├── BoxComponentAutoConfiguration.java
│ │ │ ├── BoxComponentConfiguration.java
│ │ │ └── BoxComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-braintree-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── braintree.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── braintree/
│ │ │ └── springboot/
│ │ │ ├── BraintreeComponentAutoConfiguration.java
│ │ │ ├── BraintreeComponentConfiguration.java
│ │ │ └── BraintreeComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-browse-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── browse.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── browse/
│ │ │ └── springboot/
│ │ │ ├── BrowseComponentAutoConfiguration.java
│ │ │ └── BrowseComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-caffeine-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── caffeine.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── caffeine/
│ │ │ ├── cache/
│ │ │ │ └── springboot/
│ │ │ │ ├── CaffeineCacheComponentAutoConfiguration.java
│ │ │ │ ├── CaffeineCacheComponentConfiguration.java
│ │ │ │ └── CaffeineCacheComponentConverter.java
│ │ │ └── load/
│ │ │ └── springboot/
│ │ │ ├── CaffeineLoadCacheComponentAutoConfiguration.java
│ │ │ ├── CaffeineLoadCacheComponentConfiguration.java
│ │ │ └── CaffeineLoadCacheComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-cassandraql-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── cassandraql.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── cassandra/
│ │ │ │ └── springboot/
│ │ │ │ ├── CassandraComponentAutoConfiguration.java
│ │ │ │ └── CassandraComponentConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ ├── component/
│ │ │ │ └── cassandra/
│ │ │ │ ├── MockLoadBalancingPolicy.java
│ │ │ │ ├── integration/
│ │ │ │ │ ├── CassandraComponentBeanRefIT.java
│ │ │ │ │ ├── CassandraComponentConsumerIT.java
│ │ │ │ │ ├── CassandraComponentProducerIT.java
│ │ │ │ │ └── CassandraComponentProducerUnpreparedIT.java
│ │ │ │ └── springboot/
│ │ │ │ └── BaseCassandra.java
│ │ │ └── processor/
│ │ │ ├── aggregate/
│ │ │ │ ├── cassandra/
│ │ │ │ │ ├── CassandraAggregationIT.java
│ │ │ │ │ ├── CassandraAggregationRepositoryIT.java
│ │ │ │ │ ├── CassandraAggregationSerializedHeadersIT.java
│ │ │ │ │ └── NamedCassandraAggregationRepositoryIT.java
│ │ │ │ └── util/
│ │ │ │ └── HeaderDto.java
│ │ │ └── idempotent/
│ │ │ └── cassandra/
│ │ │ ├── CassandraIdempotentIT.java
│ │ │ ├── CassandraIdempotentRepositoryIT.java
│ │ │ └── NamedCassandraIdempotentRepositoryIT.java
│ │ └── resources/
│ │ ├── BasicDataSet.cql
│ │ ├── IdempotentDataSet.cql
│ │ ├── NamedIdempotentDataSet.cql
│ │ └── initScript.cql
│ ├── camel-cbor-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── cbor.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── cbor/
│ │ │ └── springboot/
│ │ │ ├── CBORDataFormatAutoConfiguration.java
│ │ │ └── CBORDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-chatscript-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── chatscript.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── chatscript/
│ │ │ └── springboot/
│ │ │ ├── ChatScriptComponentAutoConfiguration.java
│ │ │ └── ChatScriptComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-chunk-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── chunk.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── chunk/
│ │ │ └── springboot/
│ │ │ ├── ChunkComponentAutoConfiguration.java
│ │ │ └── ChunkComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-clickup-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── clickup.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── clickup/
│ │ │ └── springboot/
│ │ │ ├── ClickUpComponentAutoConfiguration.java
│ │ │ └── ClickUpComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-cloudevents-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ └── NOTICE.txt
│ ├── camel-cm-sms-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── cm-sms.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── cm/
│ │ │ └── springboot/
│ │ │ ├── CMComponentAutoConfiguration.java
│ │ │ └── CMComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-coap-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── coap.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── coap/
│ │ │ └── springboot/
│ │ │ ├── CoAPComponentAutoConfiguration.java
│ │ │ ├── CoAPComponentConfiguration.java
│ │ │ └── CoAPComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-cometd-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── cometd.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── cometd/
│ │ │ └── springboot/
│ │ │ ├── CometdComponentAutoConfiguration.java
│ │ │ ├── CometdComponentConfiguration.java
│ │ │ └── CometdComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-console-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ └── NOTICE.txt
│ ├── camel-consul-cluster-service-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── consul-cluster-service.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── consul/
│ │ │ │ └── springboot/
│ │ │ │ └── cluster/
│ │ │ │ ├── ConsulClusterServiceAutoConfiguration.java
│ │ │ │ └── ConsulClusterServiceConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── consul/
│ │ │ └── springboot/
│ │ │ └── cluster/
│ │ │ └── ConsulClusterServiceAutoConfigurationTest.java
│ │ └── resources/
│ │ └── logback.xml
│ ├── camel-consul-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── consul.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── consul/
│ │ │ └── springboot/
│ │ │ ├── ConsulComponentAutoConfiguration.java
│ │ │ ├── ConsulComponentConfiguration.java
│ │ │ └── ConsulComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-controlbus-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── controlbus.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── controlbus/
│ │ │ └── springboot/
│ │ │ ├── ControlBusComponentAutoConfiguration.java
│ │ │ └── ControlBusComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-core-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── core.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ ├── language/
│ │ │ │ ├── constant/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── ConstantLanguageAutoConfiguration.java
│ │ │ │ │ └── ConstantLanguageConfiguration.java
│ │ │ │ ├── csimple/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── CSimpleLanguageAutoConfiguration.java
│ │ │ │ │ └── CSimpleLanguageConfiguration.java
│ │ │ │ ├── header/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── HeaderLanguageAutoConfiguration.java
│ │ │ │ │ └── HeaderLanguageConfiguration.java
│ │ │ │ ├── property/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── ExchangePropertyLanguageAutoConfiguration.java
│ │ │ │ │ └── ExchangePropertyLanguageConfiguration.java
│ │ │ │ ├── ref/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── RefLanguageAutoConfiguration.java
│ │ │ │ │ └── RefLanguageConfiguration.java
│ │ │ │ ├── simple/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── FileLanguageAutoConfiguration.java
│ │ │ │ │ ├── FileLanguageConfiguration.java
│ │ │ │ │ ├── SimpleLanguageAutoConfiguration.java
│ │ │ │ │ └── SimpleLanguageConfiguration.java
│ │ │ │ ├── tokenizer/
│ │ │ │ │ └── springboot/
│ │ │ │ │ ├── TokenizeLanguageAutoConfiguration.java
│ │ │ │ │ └── TokenizeLanguageConfiguration.java
│ │ │ │ └── variable/
│ │ │ │ └── springboot/
│ │ │ │ ├── VariableLanguageAutoConfiguration.java
│ │ │ │ └── VariableLanguageConfiguration.java
│ │ │ └── model/
│ │ │ ├── cloud/
│ │ │ │ └── springboot/
│ │ │ │ ├── ConsulServiceCallServiceDiscoveryConfigurationCommon.java
│ │ │ │ ├── ConsulServiceCallServiceDiscoveryConfigurationProperties.java
│ │ │ │ ├── DnsServiceCallServiceDiscoveryConfigurationCommon.java
│ │ │ │ ├── DnsServiceCallServiceDiscoveryConfigurationProperties.java
│ │ │ │ ├── KubernetesServiceCallServiceDiscoveryConfigurationCommon.java
│ │ │ │ └── KubernetesServiceCallServiceDiscoveryConfigurationProperties.java
│ │ │ ├── rest/
│ │ │ │ └── springboot/
│ │ │ │ ├── RestConfigurationDefinitionAutoConfiguration.java
│ │ │ │ └── RestConfigurationDefinitionProperties.java
│ │ │ └── springboot/
│ │ │ ├── Resilience4jConfigurationDefinitionCommon.java
│ │ │ └── Resilience4jConfigurationDefinitionProperties.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-couchbase-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── couchbase.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── couchbase/
│ │ │ └── springboot/
│ │ │ ├── CouchbaseComponentAutoConfiguration.java
│ │ │ └── CouchbaseComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-couchdb-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── couchdb.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── couchdb/
│ │ │ └── springboot/
│ │ │ ├── CouchDbComponentAutoConfiguration.java
│ │ │ └── CouchDbComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-cron-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── cron.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── cron/
│ │ │ │ └── springboot/
│ │ │ │ ├── CronComponentAutoConfiguration.java
│ │ │ │ └── CronComponentConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── cron/
│ │ └── springboot/
│ │ ├── CronLoaderTest.java
│ │ └── DummyCamelCronService.java
│ ├── camel-crypto-pgp-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── crypto-pgp.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── converter/
│ │ │ └── crypto/
│ │ │ └── springboot/
│ │ │ ├── PGPDataFormatAutoConfiguration.java
│ │ │ └── PGPDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-crypto-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── crypto.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ ├── component/
│ │ │ │ └── crypto/
│ │ │ │ └── springboot/
│ │ │ │ ├── DigitalSignatureComponentAutoConfiguration.java
│ │ │ │ ├── DigitalSignatureComponentConfiguration.java
│ │ │ │ └── DigitalSignatureComponentConverter.java
│ │ │ └── converter/
│ │ │ └── crypto/
│ │ │ └── springboot/
│ │ │ ├── CryptoDataFormatAutoConfiguration.java
│ │ │ ├── CryptoDataFormatConfiguration.java
│ │ │ └── CryptoDataFormatConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-csimple-joor-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── csimple-joor.json
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ └── NOTICE.txt
│ ├── camel-csv-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── csv.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── dataformat/
│ │ │ └── csv/
│ │ │ └── springboot/
│ │ │ ├── CsvDataFormatAutoConfiguration.java
│ │ │ └── CsvDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-cxf-rest-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── cxf-rest.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── cxf/
│ │ │ └── jaxrs/
│ │ │ └── springboot/
│ │ │ ├── CxfRsComponentAutoConfiguration.java
│ │ │ ├── CxfRsComponentConfiguration.java
│ │ │ └── CxfRsComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-cxf-soap-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── cxf-soap.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── cxf/
│ │ │ └── jaxws/
│ │ │ └── springboot/
│ │ │ ├── CxfComponentAutoConfiguration.java
│ │ │ ├── CxfComponentConfiguration.java
│ │ │ └── CxfComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-cxf-transport-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── cxf-transport.json
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ └── NOTICE.txt
│ ├── camel-cyberark-vault-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── cyberark-vault.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── cyberark/
│ │ │ │ └── vault/
│ │ │ │ └── springboot/
│ │ │ │ ├── CyberArkVaultComponentAutoConfiguration.java
│ │ │ │ ├── CyberArkVaultComponentConfiguration.java
│ │ │ │ ├── CyberArkVaultComponentConverter.java
│ │ │ │ └── SpringBootCyberArkVaultPropertiesParser.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ ├── spring/
│ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ │ └── spring.factories
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── cyberark/
│ │ └── vault/
│ │ └── springboot/
│ │ └── EarlyResolvedPropertiesTest.java
│ ├── camel-dapr-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dapr.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── dapr/
│ │ │ └── springboot/
│ │ │ ├── DaprComponentAutoConfiguration.java
│ │ │ ├── DaprComponentConfiguration.java
│ │ │ └── DaprComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-dataformat-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dataformat.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── dataformat/
│ │ │ └── springboot/
│ │ │ ├── DataFormatComponentAutoConfiguration.java
│ │ │ └── DataFormatComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-dataset-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dataset.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── dataset/
│ │ │ └── springboot/
│ │ │ ├── DataSetComponentAutoConfiguration.java
│ │ │ ├── DataSetComponentConfiguration.java
│ │ │ ├── DataSetComponentConverter.java
│ │ │ ├── DataSetTestComponentAutoConfiguration.java
│ │ │ ├── DataSetTestComponentConfiguration.java
│ │ │ └── DataSetTestComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-datasonnet-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── datasonnet.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── language/
│ │ │ └── datasonnet/
│ │ │ └── springboot/
│ │ │ ├── DatasonnetLanguageAutoConfiguration.java
│ │ │ └── DatasonnetLanguageConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-debezium-db2-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── debezium-db2.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── debezium/
│ │ │ └── db2/
│ │ │ └── springboot/
│ │ │ ├── DebeziumDb2ComponentAutoConfiguration.java
│ │ │ ├── DebeziumDb2ComponentConfiguration.java
│ │ │ └── DebeziumDb2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-debezium-mongodb-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── debezium-mongodb.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── debezium/
│ │ │ └── mongodb/
│ │ │ └── springboot/
│ │ │ ├── DebeziumMongodbComponentAutoConfiguration.java
│ │ │ ├── DebeziumMongodbComponentConfiguration.java
│ │ │ └── DebeziumMongodbComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-debezium-mysql-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── debezium-mysql.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── debezium/
│ │ │ └── mysql/
│ │ │ └── springboot/
│ │ │ ├── DebeziumMySqlComponentAutoConfiguration.java
│ │ │ ├── DebeziumMySqlComponentConfiguration.java
│ │ │ └── DebeziumMySqlComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-debezium-oracle-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── debezium-oracle.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── debezium/
│ │ │ └── oracle/
│ │ │ └── springboot/
│ │ │ ├── DebeziumOracleComponentAutoConfiguration.java
│ │ │ ├── DebeziumOracleComponentConfiguration.java
│ │ │ └── DebeziumOracleComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-debezium-postgres-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── debezium-postgres.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── debezium/
│ │ │ └── postgres/
│ │ │ └── springboot/
│ │ │ ├── DebeziumPostgresComponentAutoConfiguration.java
│ │ │ ├── DebeziumPostgresComponentConfiguration.java
│ │ │ └── DebeziumPostgresComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-debezium-sqlserver-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── debezium-sqlserver.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── debezium/
│ │ │ └── sqlserver/
│ │ │ └── springboot/
│ │ │ ├── DebeziumSqlserverComponentAutoConfiguration.java
│ │ │ ├── DebeziumSqlserverComponentConfiguration.java
│ │ │ └── DebeziumSqlserverComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-debug-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── debug.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── spring/
│ │ │ └── boot/
│ │ │ └── debug/
│ │ │ ├── CamelDebugAutoConfiguration.java
│ │ │ └── CamelDebugConfigurationProperties.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-dfdl-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dfdl.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ ├── component/
│ │ │ │ └── dfdl/
│ │ │ │ └── springboot/
│ │ │ │ ├── DfdlComponentAutoConfiguration.java
│ │ │ │ └── DfdlComponentConfiguration.java
│ │ │ └── dataformat/
│ │ │ └── dfdl/
│ │ │ └── springboot/
│ │ │ ├── DfdlDataFormatAutoConfiguration.java
│ │ │ └── DfdlDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-dhis2-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dhis2.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── dhis2/
│ │ │ └── springboot/
│ │ │ ├── Dhis2ComponentAutoConfiguration.java
│ │ │ ├── Dhis2ComponentConfiguration.java
│ │ │ └── Dhis2ComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-digitalocean-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── digitalocean.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── digitalocean/
│ │ │ └── springboot/
│ │ │ ├── DigitalOceanComponentAutoConfiguration.java
│ │ │ └── DigitalOceanComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-direct-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── direct.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── direct/
│ │ │ └── springboot/
│ │ │ ├── DirectComponentAutoConfiguration.java
│ │ │ └── DirectComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-disruptor-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── disruptor.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── disruptor/
│ │ │ ├── springboot/
│ │ │ │ ├── DisruptorComponentAutoConfiguration.java
│ │ │ │ ├── DisruptorComponentConfiguration.java
│ │ │ │ └── DisruptorComponentConverter.java
│ │ │ └── vm/
│ │ │ └── springboot/
│ │ │ ├── DisruptorVmComponentAutoConfiguration.java
│ │ │ ├── DisruptorVmComponentConfiguration.java
│ │ │ └── DisruptorVmComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-djl-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── djl.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── djl/
│ │ │ └── springboot/
│ │ │ ├── DJLComponentAutoConfiguration.java
│ │ │ └── DJLComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-dns-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dns.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── dns/
│ │ │ └── springboot/
│ │ │ ├── DnsComponentAutoConfiguration.java
│ │ │ └── DnsComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-docker-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── docker.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── docker/
│ │ │ └── springboot/
│ │ │ ├── DockerComponentAutoConfiguration.java
│ │ │ ├── DockerComponentConfiguration.java
│ │ │ └── DockerComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-docling-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── docling.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── docling/
│ │ │ └── springboot/
│ │ │ ├── DoclingComponentAutoConfiguration.java
│ │ │ ├── DoclingComponentConfiguration.java
│ │ │ └── DoclingComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-drill-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── drill.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── drill/
│ │ │ └── springboot/
│ │ │ ├── DrillComponentAutoConfiguration.java
│ │ │ └── DrillComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-dropbox-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dropbox.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── dropbox/
│ │ │ └── springboot/
│ │ │ ├── DropboxComponentAutoConfiguration.java
│ │ │ └── DropboxComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-dynamic-router-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── dynamic-router.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── dynamicrouter/
│ │ │ ├── control/
│ │ │ │ └── springboot/
│ │ │ │ ├── DynamicRouterControlComponentAutoConfiguration.java
│ │ │ │ └── DynamicRouterControlComponentConfiguration.java
│ │ │ └── routing/
│ │ │ └── springboot/
│ │ │ ├── DynamicRouterComponentAutoConfiguration.java
│ │ │ └── DynamicRouterComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-ehcache-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── ehcache.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── ehcache/
│ │ │ │ └── springboot/
│ │ │ │ ├── EhcacheComponentAutoConfiguration.java
│ │ │ │ ├── EhcacheComponentConfiguration.java
│ │ │ │ ├── EhcacheComponentConverter.java
│ │ │ │ └── customizer/
│ │ │ │ ├── CacheConfigurationCustomizer.java
│ │ │ │ ├── CacheConfigurationCustomizerConfiguration.java
│ │ │ │ ├── CacheManagerCustomizer.java
│ │ │ │ └── CacheManagerCustomizerConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── ehcache/
│ │ │ └── springboot/
│ │ │ └── customizer/
│ │ │ ├── CacheConfigurationCustomizerEnabledAppendTest.java
│ │ │ ├── CacheConfigurationCustomizerEnabledReplaceTest.java
│ │ │ ├── CacheConfigurationCustomizerNotEnabledGlobalTest.java
│ │ │ ├── CacheConfigurationCustomizerNotEnabledOnComponentTest.java
│ │ │ ├── CacheConfigurationCustomizerNotEnabledTest.java
│ │ │ ├── CacheConfigurationCustomizerNotEnabledTestBase.java
│ │ │ ├── CacheManagerCustomizerEnabledOnComponentTest.java
│ │ │ ├── CacheManagerCustomizerEnabledTest.java
│ │ │ ├── CacheManagerCustomizerEnabledTestBase.java
│ │ │ ├── CacheManagerCustomizerNoOverrideTest.java
│ │ │ ├── CacheManagerCustomizerNotEnabledGlobalTest.java
│ │ │ ├── CacheManagerCustomizerNotEnabledOnComponentTest.java
│ │ │ ├── CacheManagerCustomizerNotEnabledTest.java
│ │ │ ├── CacheManagerCustomizerNotEnabledTestBase.java
│ │ │ ├── CacheManagerCustomizerOverrideTest.java
│ │ │ ├── CacheManagerCustomizerTest.java
│ │ │ └── CacheManagerCustomizerWithoutCacheManagerTest.java
│ │ └── resources/
│ │ ├── application.properties
│ │ └── logback.xml
│ ├── camel-elasticsearch-rest-client-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── elasticsearch-rest-client.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── elasticsearch/
│ │ │ └── rest/
│ │ │ └── client/
│ │ │ └── springboot/
│ │ │ ├── ElasticsearchRestClientComponentAutoConfiguration.java
│ │ │ ├── ElasticsearchRestClientComponentConfiguration.java
│ │ │ └── ElasticsearchRestClientComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-elasticsearch-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── elasticsearch.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── es/
│ │ │ └── springboot/
│ │ │ ├── ElasticsearchComponentAutoConfiguration.java
│ │ │ ├── ElasticsearchComponentConfiguration.java
│ │ │ └── ElasticsearchComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-exec-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── exec.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── exec/
│ │ │ └── springboot/
│ │ │ ├── ExecComponentAutoConfiguration.java
│ │ │ ├── ExecComponentConfiguration.java
│ │ │ └── ExecComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-fastjson-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── fastjson.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── fastjson/
│ │ │ └── springboot/
│ │ │ ├── FastjsonDataFormatAutoConfiguration.java
│ │ │ └── FastjsonDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-fhir-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── fhir.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── fhir/
│ │ │ │ └── springboot/
│ │ │ │ ├── FhirComponentAutoConfiguration.java
│ │ │ │ ├── FhirComponentConfiguration.java
│ │ │ │ ├── FhirComponentConverter.java
│ │ │ │ ├── FhirJsonDataFormatAutoConfiguration.java
│ │ │ │ ├── FhirJsonDataFormatConfiguration.java
│ │ │ │ ├── FhirXmlDataFormatAutoConfiguration.java
│ │ │ │ └── FhirXmlDataFormatConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── fhir/
│ │ ├── AbstractFhirTestSupport.java
│ │ ├── CustomFhirConfiguration.java
│ │ ├── CustomNoFhirServerUrlCamelContext.java
│ │ ├── DefaultCamelContext.java
│ │ ├── FhirCapabilitiesIT.java
│ │ ├── FhirConfigurationIT.java
│ │ ├── FhirCreateIT.java
│ │ ├── FhirCustomClientConfigurationIT.java
│ │ ├── FhirDeleteIT.java
│ │ ├── FhirExtraParametersIT.java
│ │ ├── FhirHistoryIT.java
│ │ ├── FhirLoadPageIT.java
│ │ ├── FhirMetaIT.java
│ │ ├── FhirOperationIT.java
│ │ ├── FhirPatchIT.java
│ │ ├── FhirReadIT.java
│ │ ├── FhirSearchIT.java
│ │ ├── FhirServer.java
│ │ ├── FhirSimpleIT.java
│ │ ├── FhirTransactionIT.java
│ │ ├── FhirUpdateIT.java
│ │ ├── FhirValidateIT.java
│ │ ├── Hl7v2PatientToFhirPatientIT.java
│ │ ├── PatientProcessor.java
│ │ └── dataformat/
│ │ ├── FhirJsonDataFormatTest.java
│ │ ├── FhirJsonDataformatErrorHandlerTest.java
│ │ ├── FhirXmlDataFormatTest.java
│ │ └── FhirXmlDataformatErrorHandlerTest.java
│ ├── camel-file-cluster-service-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── file-cluster-service.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── file/
│ │ │ │ └── springboot/
│ │ │ │ └── cluster/
│ │ │ │ ├── FileLockClusterServiceAutoConfiguration.java
│ │ │ │ └── FileLockClusterServiceConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── file/
│ │ │ └── springboot/
│ │ │ └── cluster/
│ │ │ └── FileClusterServiceAutoConfigurationTest.java
│ │ └── resources/
│ │ └── logback.xml
│ ├── camel-file-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ ├── main/
│ │ │ ├── docs/
│ │ │ │ └── file.json
│ │ │ ├── java/
│ │ │ │ └── org/
│ │ │ │ └── apache/
│ │ │ │ └── camel/
│ │ │ │ └── component/
│ │ │ │ └── file/
│ │ │ │ └── springboot/
│ │ │ │ ├── FileComponentAutoConfiguration.java
│ │ │ │ └── FileComponentConfiguration.java
│ │ │ └── resources/
│ │ │ └── META-INF/
│ │ │ ├── LICENSE.txt
│ │ │ ├── NOTICE.txt
│ │ │ └── spring/
│ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ │ └── test/
│ │ └── java/
│ │ └── org/
│ │ └── apache/
│ │ └── camel/
│ │ └── component/
│ │ └── file/
│ │ ├── AntPathMatcherGenericFileFilterTest.java
│ │ ├── BaseFile.java
│ │ ├── FileBeginFailureOneTimeTest.java
│ │ ├── FileBridgeErrorHandlerTest.java
│ │ ├── FileBrowsableEndpointTest.java
│ │ ├── FileChangedReadLockMarkerFileFalseTest.java
│ │ ├── FileConsumerAbsolutePathDefaultMoveTest.java
│ │ ├── FileConsumerBatchTest.java
│ │ ├── FileConsumerFileExpressionTest.java
│ │ ├── FileConsumerFileFilterTest.java
│ │ ├── FileConsumerIdempotentTest.java
│ │ ├── FileConsumerMoveAndMoveFailureTest.java
│ │ ├── FileConsumerPreMoveTest.java
│ │ ├── FileIdempotentReadLockWithFileIdempRepoTest.java
│ │ ├── FileIdempotentReadSameFileAgainTest.java
│ │ ├── FileProduceTempPrefixTest.java
│ │ ├── FileProducerCharsetUTFtoISOTest.java
│ │ ├── FileProducerExpressionTest.java
│ │ ├── FileProducerFileExistOverrideTest.java
│ │ ├── FileProducerOverruleToDifferentFolderTest.java
│ │ ├── FileProducerRecursivelayToDifferentFolderTest.java
│ │ ├── FileProducerStreamTest.java
│ │ ├── FileSorterRefTest.java
│ │ ├── FileToFileWithFlattenTest.java
│ │ ├── FilerConsumerDoneFileNamePrefixTest.java
│ │ ├── FilerProducerDoneFileNameRouteTest.java
│ │ └── FromFileMoveFileIfProcessFailsTest.java
│ ├── camel-file-watch-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── file-watch.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── file/
│ │ │ └── watch/
│ │ │ └── springboot/
│ │ │ ├── FileWatchComponentAutoConfiguration.java
│ │ │ ├── FileWatchComponentConfiguration.java
│ │ │ └── FileWatchComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-flatpack-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── flatpack.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ ├── component/
│ │ │ │ └── flatpack/
│ │ │ │ └── springboot/
│ │ │ │ ├── FlatpackComponentAutoConfiguration.java
│ │ │ │ └── FlatpackComponentConfiguration.java
│ │ │ └── dataformat/
│ │ │ └── flatpack/
│ │ │ └── springboot/
│ │ │ ├── FlatpackDataFormatAutoConfiguration.java
│ │ │ ├── FlatpackDataFormatConfiguration.java
│ │ │ └── FlatpackDataFormatConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-flink-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── flink.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── flink/
│ │ │ └── springboot/
│ │ │ ├── FlinkComponentAutoConfiguration.java
│ │ │ ├── FlinkComponentConfiguration.java
│ │ │ └── FlinkComponentConverter.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-flowable-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── flowable.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── flowable/
│ │ │ └── springboot/
│ │ │ ├── FlowableComponentAutoConfiguration.java
│ │ │ └── FlowableComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-fop-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── fop.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── fop/
│ │ │ └── springboot/
│ │ │ ├── FopComponentAutoConfiguration.java
│ │ │ └── FopComponentConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-fory-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── fory.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── fory/
│ │ │ └── springboot/
│ │ │ ├── ForyDataFormatAutoConfiguration.java
│ │ │ └── ForyDataFormatConfiguration.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ └── spring/
│ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
│ ├── camel-freemarker-starter/
│ │ ├── pom.xml
│ │ └── src/
│ │ └── main/
│ │ ├── docs/
│ │ │ └── freemarker.json
│ │ ├── java/
│ │ │ └── org/
│ │ │ └── apache/
│ │ │ └── camel/
│ │ │ └── component/
│ │ │ └── freemarker/
│ │ │ └── springboot/
│ │ │ ├── FreemarkerComponentAutoConfiguration.java
│ │ │ ├── FreemarkerComponentConfiguration.java
│ │ │
================================================
FILE CONTENTS
================================================
================================================
FILE: .asf.yaml
================================================
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
github:
description: "Runs Camel on Spring Boot and provides starters for Camel components"
homepage: https://camel.apache.org
labels:
- camel
- integration
- eip
- microservices
- java
- spring-boot
notifications:
pullrequests: commits@camel.apache.org
================================================
FILE: .gitattributes
================================================
# OS specific line endings for the Maven wrapper script
mvnw text eol=lf
mvnw.cmd text eol=crlf
================================================
FILE: .github/actions/incremental-build/exclusions.sh
================================================
#!/bin/bash
# Exclusion list for camel-spring-boot incremental builds
# Override the default exclusion list from apache/camel which contains modules
# that don't exist in camel-spring-boot
# camel-spring-boot has fewer generated/meta modules to exclude
# Most exclusions from main Camel don't apply here
EXCLUSION_LIST=""
================================================
FILE: .github/actions/incremental-build/parse_errors.sh
================================================
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Disable exit on error for this script
set +e
LOG_FILE=$1
# Echo immediately to verify script is being invoked
echo "" >&2
echo "============================================================" >&2
echo "[parse_errors.sh START] $(date '+%Y-%m-%d %H:%M:%S')" >&2
echo "[parse_errors.sh] PWD: $(pwd)" >&2
echo "[parse_errors.sh] Processing: $LOG_FILE" >&2
echo "============================================================" >&2
# Extract module path from log file path
# e.g., ./components-starter/camel-slack-starter/target/surefire-reports/foo.txt -> components-starter/camel-slack-starter
MODULE_PATH=$(echo "$LOG_FILE" | sed 's|^\./||' | sed 's|/target/.*||')
echo "[parse_errors.sh] Module: $MODULE_PATH" >&2
# Skip if file doesn't exist or is not readable
if [[ ! -f "$LOG_FILE" ]]; then
echo "[parse_errors.sh] ⊘ File does not exist, skipping" >&2
echo "[parse_errors.sh END] $(date '+%Y-%m-%d %H:%M:%S') - exit 0" >&2
echo "============================================================" >&2
exit 0
fi
if [[ ! -r "$LOG_FILE" ]]; then
echo "[parse_errors.sh] ⊘ File not readable, skipping" >&2
echo "[parse_errors.sh END] $(date '+%Y-%m-%d %H:%M:%S') - exit 0" >&2
echo "============================================================" >&2
exit 0
fi
echo "[parse_errors.sh] File size: $(wc -c < "$LOG_FILE") bytes" >&2
# Extract failures/errors
echo "[parse_errors.sh] Searching for FAILURE|ERROR patterns..." >&2
raw_failures=$(cat "$LOG_FILE" | egrep "FAILURE|ERROR" 2>/dev/null || true)
if [[ -z "$raw_failures" ]]; then
echo "[parse_errors.sh] ✓ No failures found" >&2
echo "[parse_errors.sh END] $(date '+%Y-%m-%d %H:%M:%S') - exit 0" >&2
echo "============================================================" >&2
exit 0
fi
echo "[parse_errors.sh] ✗ Found FAILURE/ERROR entries: $(echo "$raw_failures" | wc -l)" >&2
echo "[parse_errors.sh] First 5 lines:" >&2
echo "$raw_failures" | head -5 >&2
# Look for "Time elapsed" entries and extract org.* test names
time_elapsed_entries=$(echo "$raw_failures" | grep "Time elapsed" 2>/dev/null || true)
echo "[parse_errors.sh] Time elapsed entries: $(echo "$time_elapsed_entries" | wc -l)" >&2
org_entries=$(echo "$time_elapsed_entries" | egrep "^org" 2>/dev/null || true)
echo "[parse_errors.sh] org.* test entries: $(echo "$org_entries" | wc -l)" >&2
if [[ -n "$org_entries" ]]; then
echo "[parse_errors.sh] Processing failures:" >&2
echo "$org_entries" >&2
# Generate summary with module path included in test name
# Format: | Module::TestClass | Duration | Type |
failed_summary=$(echo "$org_entries" | sed 's/\!//g' | awk -v mod="$MODULE_PATH" -F ' ' '{printf "| **%s**::%s | %s%s | %s |\n", mod, $1,$5,$6, $8}' 2>/dev/null || true)
if [[ -n "$failed_summary" ]]; then
if [[ -n "${GITHUB_STEP_SUMMARY:-}" ]]; then
echo "[parse_errors.sh] Writing to GITHUB_STEP_SUMMARY" >&2
# Add to GitHub step summary
echo "$failed_summary" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
# Add detailed error output
echo "" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
echo "<details><summary>❌ Failure details for $MODULE_PATH</summary>" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
echo "" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
cat "$LOG_FILE" | egrep -A 10 "FAILURE|ERROR" | head -100 >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
echo "</details>" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
echo "" >> "$GITHUB_STEP_SUMMARY" 2>/dev/null || true
else
echo "[parse_errors.sh] ⚠ GITHUB_STEP_SUMMARY not set, cannot write summary" >&2
fi
fi
# Output to stderr for CI logs
echo "" >&2
echo "╔═════════════════════════════════════════════╗" >&2
echo "║ FAILURE in module: $MODULE_PATH" >&2
echo "╚═════════════════════════════════════════════╝" >&2
echo "$org_entries" >&2
echo "" >&2
echo "Full error details:" >&2
cat "$LOG_FILE" | egrep -A 10 "FAILURE|ERROR" | head -50 >&2
echo "╚═════════════════════════════════════════════╝" >&2
echo "" >&2
else
echo "[parse_errors.sh] ⚠ No org.* pattern match (unusual format)" >&2
echo "" >&2
echo "╔═════════════════════════════════════════════╗" >&2
echo "║ ERROR in module: $MODULE_PATH (unusual format)" >&2
echo "╚═════════════════════════════════════════════╝" >&2
echo "Raw failures found:" >&2
echo "$raw_failures" | head -20 >&2
echo "" >&2
echo "Full log file content (first 100 lines):" >&2
head -100 "$LOG_FILE" >&2
echo "╚═════════════════════════════════════════════╝" >&2
echo "" >&2
fi
echo "============================================================" >&2
echo "[parse_errors.sh END] $(date '+%Y-%m-%d %H:%M:%S') - exit 0" >&2
echo "============================================================" >&2
exit 0
================================================
FILE: .github/asf-deploy-settings.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>apache.snapshots.https</id>
<username>${env.NEXUS_DEPLOY_USERNAME}</username>
<password>${env.NEXUS_DEPLOY_PASSWORD}</password>
</server>
</servers>
</settings>
================================================
FILE: .github/dependabot.yml
================================================
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: maven
directory: /
schedule:
interval: weekly
allow:
- dependency-name: "*-plugin"
================================================
FILE: .github/workflows/automatic-sync-main.yml
================================================
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Sync Camel Spring Boot (Camel 4)
on:
schedule:
# Run at midnight every day
- cron: '0 0 * * *'
jobs:
build:
name: Sync Camel Spring Boot Main Branch
if: github.repository == 'apache/camel-spring-boot'
runs-on: ubuntu-latest
steps:
- name: Checkout Camel project
uses: actions/checkout@v6
with:
repository: apache/camel
persist-credentials: false
ref: main
path: camel
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'
- name: Build Camel Project
run: ./mvnw -V --no-transfer-progress -Dquickly clean install
working-directory: ${{ github.workspace }}/camel
- name: Checkout Camel-spring-boot project
uses: actions/checkout@v6
with:
ref: main
persist-credentials: false
fetch-depth: 0
- name: Build Camel-spring-boot Project
run: ./mvnw -V --no-transfer-progress clean install -DskipTests
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8.1.1
with:
base: main
token: ${{ secrets.GITHUB_TOKEN }}
branch: automatic-periodic-sync
title: '[Github Actions] Periodic Sync Camel Spring Boot (Camel 4)'
body: |
Periodic Sync of Camel Spring Boot Main Branch with main Camel Main.
see https://github.com/apache/camel-spring-boot/blob/main/.github/workflows/automatic-sync-main.yml
================================================
FILE: .github/workflows/depsreview.yaml
================================================
name: 'Dependency Review'
on: [pull_request]
permissions:
contents: read
jobs:
dependency-review:
if: github.repository == 'apache/camel-spring-boot'
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v6
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
================================================
FILE: .github/workflows/generate-sbom-main.yml
================================================
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Generate SBOM (Camel Spring Boot 4)
on:
schedule:
# Every 24 hours
- cron: '30 17 * * 0'
workflow_dispatch:
jobs:
build:
name: Sync Camel Spring Boot Main Branch
if: github.repository == 'apache/camel-spring-boot'
runs-on: ubuntu-latest
steps:
- name: Checkout Camel project
uses: actions/checkout@v6
with:
repository: apache/camel
persist-credentials: false
ref: main
path: camel
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'
- name: Build Camel Project
run: ./mvnw -B -V --no-transfer-progress -Dquickly install
working-directory: ${{ github.workspace }}/camel
- name: Checkout Camel-spring-boot project
uses: actions/checkout@v6
with:
ref: main
persist-credentials: false
fetch-depth: 0
- name: Build Camel-spring-boot Project for generating SBOM
run: ./mvnw -V --no-transfer-progress clean install -DskipTests -Psbom
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8.1.1
with:
base: main
token: ${{ secrets.GITHUB_TOKEN }}
branch: automatic-periodic-sync
title: '[Github Actions] Periodic Sync Camel Spring Boot SBOM (Camel 4)'
body: |
Periodic Sync of Camel Spring Boot Main Branch with main Camel Main for SBOM Generation.
see https://github.com/apache/camel-spring-boot/blob/main/.github/workflows/generate-sbom-main.yml
================================================
FILE: .github/workflows/pr-build-main.yml
================================================
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: PR Build (Camel 4)
on:
pull_request:
branches:
- main
- camel-spring-boot-4.8.x
paths-ignore:
- README.md
- Jenkinsfile
- Jenkinsfile.*
- '*.txt'
permissions:
contents: read
jobs:
build:
if: github.repository == 'apache/camel-spring-boot'
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17', '21', '25']
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set Up Java
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Maven Test
uses: apache/camel/.github/actions/incremental-build@main
with:
mode: test
pr-id: ${{ github.event.number }}
github-token: ${{ secrets.GITHUB_TOKEN }}
skip-mvnd-install: 'false'
github-repo: apache/camel-spring-boot
artifact-upload-suffix: java-${{ matrix.java }}
================================================
FILE: .github/workflows/pr-doc-validation.yml
================================================
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: PR doc validation
on:
pull_request:
branches:
- main
- 'camel-spring-boot-*'
paths-ignore:
- README.md
- Jenkinsfile
- Jenkinsfile.*
- '*.txt'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check-doc:
if: github.repository == 'apache/camel-spring-boot'
runs-on: ubuntu-latest
steps:
- name: Checkout camel-spring-boot repo
uses: actions/checkout@v6
with:
persist-credentials: false
submodules: recursive
path: camel-spring-boot
- name: Checkout camel-website repo
uses: actions/checkout@v6
with:
repository: apache/camel-website
path: camel-website
ref: main
- name: Validate documentation
shell: bash
run: |
cd camel-website
yarn install
cd ../camel-spring-boot/docs
yarn install
./local-build.sh quick
================================================
FILE: .gitignore
================================================
target
*.iml
*.ipr
*.iws
build.metadata
.idea
.DS_Store
.classpath
.ekstazi
.project
.settings
.checkstyle
*.log
test-salesforce-login.properties
dependency-reduced-pom.xml
id_file
components/camel-solr/data
*.epoch
.factorypath
.pmd
.sts4-cache
log-camel-lsp.out
.vscode
*.code-workspace
components/camel-cxf/activemq-data
*.swp
.flattened-pom.xml
.java-version
================================================
FILE: .mvn/extensions.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<extensions>
</extensions>
================================================
FILE: .mvn/jvm.config
================================================
-Xmx3584m -Djava.awt.headless=true -XX:+UseG1GC -XX:+UseStringDeduplication
================================================
FILE: .mvn/wrapper/maven-wrapper.properties
================================================
wrapperVersion=3.3.4
distributionType=bin
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.4/maven-wrapper-3.3.4.jar
================================================
FILE: Jenkinsfile.sb
================================================
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
def LOCAL_REPOSITORY = env.LOCAL_REPOSITORY ?: '/home/jenkins/jenkins-slave/maven-repositories/0'
def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu'
def JDK_NAME = env.JDK_NAME ?: 'jdk_17_latest'
def MAVEN_PARAMS = '-U -B -e -fae -V -Dmaven.repo.local=/home/jenkins/.m2/repository -Dmaven.compiler.fork=true'
def spring_boot_itests_result
pipeline {
agent {
label AGENT_LABEL
}
triggers {
cron('@daily')
}
tools {
jdk JDK_NAME
}
environment {
MAVEN_SKIP_RC = true
}
options {
buildDiscarder(
logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
)
disableConcurrentBuilds()
}
parameters {
booleanParam(name: 'CLEAN', defaultValue: true, description: 'Perform the build in clean workspace')
}
stages {
stage('Clean workspace') {
when {
expression { params.CLEAN }
}
steps {
sh 'git clean -fdx'
}
}
stage('Build') {
steps {
script {
spring_boot_itests_result = sh script: "./mvnw $MAVEN_PARAMS -Dci.env.name=apache.org -Dmaven.test.failure.ignore=true clean install", returnStatus: true
}
}
post {
always {
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml,**/target/failsafe-reports/*.xml'
}
}
}
}
post {
always {
script {
currentBuild.result = spring_boot_itests_result == 0 ? 'SUCCESS' : 'FAILURE'
}
}
}
}
================================================
FILE: Jenkinsfile.sb.deploy
================================================
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
def LOCAL_REPOSITORY = env.LOCAL_REPOSITORY ?: '/home/jenkins/jenkins-slave/maven-repositories/0'
def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu'
def JDK_NAME = env.JDK_NAME ?: 'jdk_17_latest'
def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true "
def spring_boot_itests_result
pipeline {
agent {
label AGENT_LABEL
}
triggers {
cron('@daily')
}
tools {
jdk JDK_NAME
}
environment {
MAVEN_SKIP_RC = true
}
options {
buildDiscarder(
logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
)
disableConcurrentBuilds()
}
stages {
stage('Build & Deploy') {
when {
anyOf {
branch 'main'
}
}
steps {
sh "./mvnw $MAVEN_PARAMS -Pdeploy -Dmaven.test.skip.exec=true clean deploy"
}
}
}
post {
always {
emailext(
subject: '${DEFAULT_SUBJECT}',
body: '${DEFAULT_CONTENT}',
recipientProviders: [[$class: 'DevelopersRecipientProvider']]
)
}
}
}
================================================
FILE: Jenkinsfile.sb.ppc64le
================================================
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
def LOCAL_REPOSITORY = env.LOCAL_REPOSITORY ?: '/home/jenkins/jenkins-slave/maven-repositories/0'
def AGENT_LABEL = env.AGENT_LABEL ?: 'power-for-camel'
def JDK_NAME = env.JDK_NAME ?: 'jdk_17_latest'
def MAVEN_PARAMS = '-U -B -e -fae -V -Dmaven.repo.local=/home/jenkins/.m2/repository -Dmaven.compiler.fork=true'
def spring_boot_itests_result
pipeline {
agent {
label AGENT_LABEL
}
triggers {
cron('@daily')
}
tools {
jdk JDK_NAME
}
environment {
MAVEN_SKIP_RC = true
}
options {
buildDiscarder(
logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
)
disableConcurrentBuilds()
}
parameters {
booleanParam(name: 'CLEAN', defaultValue: true, description: 'Perform the build in clean workspace')
}
stages {
stage('Clean workspace') {
when {
expression { params.CLEAN }
}
steps {
sh 'git clean -fdx'
}
}
stage('Build') {
steps {
script {
spring_boot_itests_result = sh script: "./mvnw $MAVEN_PARAMS -Dci.env.name=apache.org -Dmaven.test.failure.ignore=true clean install", returnStatus: true
}
}
post {
always {
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml,**/target/failsafe-reports/*.xml'
}
}
}
}
post {
always {
script {
currentBuild.result = spring_boot_itests_result == 0 ? 'SUCCESS' : 'FAILURE'
}
}
}
}
================================================
FILE: KEYS
================================================
pub 1024D/F5BA7E4F 2006-02-10
uid Hiram Chirino <hiram@hiramchirino.com>
sig 3 F5BA7E4F 2006-02-10 Hiram Chirino <hiram@hiramchirino.com>
sub 1024g/6733C080 2006-02-10
sig F5BA7E4F 2006-02-10 Hiram Chirino <hiram@hiramchirino.com>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.1 (Darwin)
mQGiBEPspSsRBADdguKAxMQbA32vTQrCyONR6Zs/YGdvau2Zrr3SSSSR0Ge4FMjZ
4tzwpf6+32m4Bsf7YIwdLl0H5hI1CgT5gDl9kXvfaFUehFnwR+FDyiBRiyHjUpGF
4dgkQfWy9diYeWGtsvszsvWHXtED4SXb322StX4MfJj+YesA1iEdTiXK6wCg1QDa
RucfjC+kx4zPsJwkJOgYpyMEAMTiXtNwQcke6nIFb/lb5374NjwwVAuuMTrRWLyq
5HodugEIHaw3EitQWtnFfXNkXTJZzS6t2HAGv29UTfhiBzKdkydgCkOk2MLWISOV
fqcg0tNIp5ZJCmUHg3s+OFNSH4oUi65u+FyDseUid3OKtPI+ZhIk8N+DjOIg2Kvo
/UALA/9q+WfBd7re+W3iUtU7TutUcwbKsjP+jpaJeUHg2ChOBxVfQKt4YlPHVdrR
iCrfNi90Z8qbsZ0iAXuqexrfMq20pAPmpHRpe54mmP1CMT5m+Gq71eKIfkUrb3LC
/zv08dLG2vm9oghd242wbcifaX+t7AhNAIpe/WTvQsB0gpdO4LQmSGlyYW0gQ2hp
cmlubyA8aGlyYW1AaGlyYW1jaGlyaW5vLmNvbT6IWwQTEQIAGwUCQ+ylKwYLCQgH
AwIDFQIDAxYCAQIeAQIXgAAKCRCf8lmA9bp+T/G/AKDM1QDs7il/CJhTycgDvE3c
EOgUBwCfelsVK4sgBCooZptoaCCDgVtt71G5AQ0EQ+ylLhAEAJD25AWgwcNgBFKY
svExQaGIojIGJyn4Cf/5U30cui/K7fIU7JtyNhKcfZdCrh2hKx+x3H/dTF6e0SrR
hzKV7Dx0j76yhHHB1Ak25kjRxoU4Jk+CG0m+bRNTF9xz9k1ALSm3Y+A5RqNU10K6
e/5KsPuXMGSGoQgJ1H6g/i80Wf8PAAMFA/9mIxu7lMaqE1OE7EeAsHgLslNbi0h9
pjDUVNv8bc1Os2gBPaJD8B89EeheTHw6NMNIe75HVOpKk4UA0gvOBrxJqCr18yFJ
BM5sIlaEmuJwZOW4dDGOR1oS5qgE9NzpmyKhE+fu/S1wmy0coL667+1xZcnrPbUF
D4i7/aD1r8qJhohGBBgRAgAGBQJD7KUuAAoJEJ/yWYD1un5Pth0An0QEUs5cxpl8
zL5kZCj7c8MN8YZDAKDR9LTb6woveul50+uGtUl2fIH1uA==
=RBPl
-----END PGP PUBLIC KEY BLOCK-----
pub 1024D/E31AF533 2007-12-17 [expires: 2009-06-09]
uid Hadrian Zbarcea (Apache) <hadrian@apache.org>
sig 3 E31AF533 2007-12-17 Hadrian Zbarcea (Apache) <hadrian@apache.org>
sig B4493B94 2007-12-17 Guillaume Nodet <gnodet@apache.org>
sig BB550746 2007-12-17 J. Daniel Kulp <dan@kulp.com>
sub 2048g/6180521C 2007-12-17 [expires: 2009-06-09]
sig E31AF533 2007-12-17 Hadrian Zbarcea (Apache) <hadrian@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1.4.6 (GNU/Linux)
mQGiBEdmrcgRBADzy0H/OIT7ASGfTj4JDdnBiJCQfSZpeY2n3r5yW0tzMtb1jik/
TyAwGyWvXMUCrRHlw33dVKNLztFQcNDfprmZxxORyTphhf6MMDhp3nAk56KT0vSF
i/D8Kh4ERb86/bjveJDZJf0oPIaiwTz6Rdr5YxJCkR58cW/xpxBayb858wCgoex4
1/1wipbpe7mGp9H2g8r/8WcEAOkm7S8gcg3NLZ62+RCwUZOJuIKCnq/UlwPEfIEL
WwnOFVn3rL+y8U1560U3LYIAykBko+aCa7ZvqwvrW4OPUXJi+6MR1dKBAPiOQYkW
NCtcGLa/Wdrxo5wjrP/XBFpSabvmxv19LUW8SJr/vH3XWQRYm5SJlnBaDgAzSBp3
Cb7CBACj8wi9tJ8k5U/VV74ORRBJltlqaWBtMm3q9zf5WN/Rb1fxnfpZjvvpDQjQ
PY6W0RNufE8V27558aTfuniBAVBOvxn4xedS91L7PMB2D/32J09/ICYFT9ekYGTA
5Yl2pcTLd8PZu8MjFUssa8k/oxG9XrM4Zd764eIOAT+FmrZX9bQtSGFkcmlhbiBa
YmFyY2VhIChBcGFjaGUpIDxoYWRyaWFuQGFwYWNoZS5vcmc+iGYEExECACYFAkdm
rcgCGwMFCQLH6gAGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRAINWtR4xr1Mzuu
AJ9mQdn6z2+gh5dDi6/fX7k1tISp7wCeON1lHB3RaQfJrabz63bLkKzROeOIRgQQ
EQIABgUCR2a94wAKCRDs3+o8tEk7lJzcAJ9qAzsu1SoLekNJboMzJbsuQxrgNgCg
vZcr6fHEXJajUejbOkd8caQQFQyIRgQQEQIABgUCR2a9SAAKCRCryO45u1UHRgf6
AJ9BCGTjrCOQsrIfLYoIVxTVDT9pCACeMYK/6kaf80OHvBwlM3BwQbXBF065Ag0E
R2at1xAIALiA44fG70XTj+XnlAbqq705B/yTCOTkOJh/Jayof9Rp78cok2eeCKOO
HZ+YupiWcp6shdmyXAQGcfxyqcyskPIG42wwoDBONWj5kMvGbuJgooZRwDhbaPaY
PRAHhPlCj+QTrzTsTJmy94bzYkkbfqNI3TOyvKUzmgYy9TLfLku7dLzncmSs+W/d
bzjRpeoyLxQ+t7aeHPjxG93tIVvNrFHgAYGgvof5sWl0h0MitSVI7PHvVlHTHhNG
dJ/quacr+xYLdF95eXDXGPvM0Jl/+UJk1GFdoDd1LXdzo0d4OzEMv2mWPZy+HVnB
MFjTsrZp7+YIJj3WXU0WVgX0p+AYjE8AAwUH/ieONEnadpYN9bShfJKOiSNxlZ8L
Y6L1nrWIhXtfibPIJsaW5AkFugVZfpMqvODV+ccildADJRQRvoRP7xUedztedeLw
3ZsK5ApIoEVeEx9oSaS06QgQ8CFRptb3hRFAAmb9tzWalxpghXUR63fMO0bpaKDI
VgFykuJyLjcW5RQsSHqfNk4LbfaSq3qCGL/3iVZlFtk4dbo70NLzFC7MnG27CWKK
NPLjldTQXDU388GTzYqQTdy+SyPj9TzBFTlOATg+4a6KQsL9KMMMJQ56VX1c5Hyp
WYkcDV9c/38/zVV80BfqYuX1DAJty3uRKn9+d86SYHDQ2YN4wDE/UtQpwsaITwQY
EQIADwUCR2at1wIbDAUJAsfqAAAKCRAINWtR4xr1M27MAJ0VEQ9j2h5cgdhbrXnB
bMLb26TK5ACgjeCxQDIepWB96CZMGDPb2CMdeFg=
=2f9B
-----END PGP PUBLIC KEY BLOCK-----
pub 4096R/6A70C608 2009-06-10
Fingerprint=4AAC 7338 D125 F866 4167 6AF6 1522 6672 6A70 C608
uid Hadrian Zbarcea <hadrian@apache.org>
sig sig3 6A70C608 2009-06-10 __________ __________ [selfsig]
sig sig B4493B94 2009-06-10 __________ __________ Guillaume Nodet <gnodet@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.1.0
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
HzSpeZz97HtFnC/bNqM=
=H3nh
-----END PGP PUBLIC KEY BLOCK-----
pub 4096R/F43856A3 2009-08-22
Key fingerprint = 51B5 2DC5 DD45 2F92 BE34 2CC2 858F C4C4 F438 56A3
uid J. Daniel Kulp <dan@kulp.com>
uid J. Daniel Kulp <dkulp@apache.org>
uid J. Daniel Kulp <dkulp@progress.com>
uid J. Daniel Kulp <dan.kulp@sopera.com>
uid J. Daniel Kulp <dkulp@talend.com>
sub 4096R/6A36A392 2009-08-22
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v2.0.17 (GNU/Linux)
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
=xhT3
-----END PGP PUBLIC KEY BLOCK-----
pub 1024D/7FBBDC54 2007-09-24
uid Freeman Fang <freeman.fang@gmail.com>
sig 3 7FBBDC54 2011-01-05 Freeman Fang <freeman.fang@gmail.com>
sub 1024g/9A39DC2F 2007-09-24
sig 7FBBDC54 2007-09-24 Freeman Fang <freeman.fang@gmail.com>
pub 4096R/9F9C8684 2011-01-05
uid Freeman(Yue) Fang (new signing key) <ffang@apache.org>
sig 3 9F9C8684 2011-01-05 Freeman(Yue) Fang (new signing key) <ffang@apache.org>
sig 7FBBDC54 2011-01-05 Freeman Fang <freeman.fang@gmail.com>
sub 4096R/C1270665 2011-01-05
sig 9F9C8684 2011-01-05 Freeman(Yue) Fang (new signing key) <ffang@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG/MacGPG2 v2.0.16 (Darwin)
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
/Gq+wPWmBdjNBDyd5REj
=aGvL
-----END PGP PUBLIC KEY BLOCK-----
pub 1024D/AE8DE9E4 2008-02-26
uid Willem Jiang <ningjiang@apache.org>
sig 3 AE8DE9E4 2011-01-07 Willem Jiang <ningjiang@apache.org>
sig 2 7FBBDC54 2008-02-29 Freeman Fang <freeman.fang@gmail.com>
sub 2048g/7103E49E 2008-02-26
sig AE8DE9E4 2008-02-26 Willem Jiang <ningjiang@apache.org>
pub 4096R/14D0DEE9 2011-01-07
uid Willem Jiang (CODE SIGNING KEY) <ningjiang@apache.org>
sig 3 14D0DEE9 2011-01-07 Willem Jiang (CODE SIGNING KEY) <ningjiang@apache.org>
sig AE8DE9E4 2011-01-07 Willem Jiang <ningjiang@apache.org>
sub 4096R/FE639F22 2011-01-07
sig 14D0DEE9 2011-01-07 Willem Jiang (CODE SIGNING KEY) <ningjiang@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG/MacGPG2 v2.0.16 (Darwin)
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
gxPfPeJOHeS8nl6gLwgouXCN/s2so4l1YeE3ig==
=lu9b
-----END PGP PUBLIC KEY BLOCK-----
pub 4096R/2A239C2C 2011-11-01
uid Christian Mueller (CODE SIGNING KEY) <cmueller@apache.org>
sig 3 2A239C2C 2011-11-01 Christian Mueller (CODE SIGNING KEY) <cmueller@apache.org>
sig 4E24517C 2011-11-10 Hyrum K. Wright (Personal) <hyrum@hyrumwright.org>
sig C4FC9A65 2011-11-10 Bernd Bohmann <bommel@apache.org>
sig 1F49ECA5 2011-11-10 Ulrich Staerk <uli@apache.org>
sig 2 F2EFD0F0 2011-11-17 Christopher David Schultz (Christopher David Schultz) <chris@christopherschultz.net>
sig 352ACF76 2011-11-11 Richard Keith Turner (CODE SIGNING KEY) <keith@deenlo.com>
sig B84508EC 2011-11-11 Bryan W. Call <bcall@apache.org>
sig B6CD3280 2011-11-11 Udo Schnurpfeil <lofwyr@apache.org>
sig F5CBAE6B 2011-11-16 Akitoshi Yoshida (CODE SIGNING KEY) <ay@apache.org>
sig 0208FC11 2011-11-14 Carlos Sanchez <carlos@apache.org>
sig 088335A9 2011-11-24 Chris Darroch (CODE SIGNING KEY) <chrisd@apache.org>
sig E1303A99 2011-12-02 Marshall I Schor (Code Signing Key 2) <schor@apache.org>
sig 791485A8 2011-11-10 Jim Jagielski (Release Signing Key) <jim@apache.org>
sub 4096R/7501638F 2011-11-01
sig 2A239C2C 2011-11-01 Christian Mueller (CODE SIGNING KEY) <cmueller@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.1.0
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
21fnJtXDujubpXKuQqFl/SY=
=drZJ
-----END PGP PUBLIC KEY BLOCK-----
pub 2048R/94CB9113 2013-02-04 [verfllt: 2017-02-04]
uid Babak Vahdat <babak.vahdat@swissonline.ch>
sig 3 94CB9113 2013-02-04 Babak Vahdat <babak.vahdat@swissonline.ch>
sub 2048R/CB41C100 2013-02-04 [verfllt: 2017-02-04]
sig 94CB9113 2013-02-04 Babak Vahdat <babak.vahdat@swissonline.ch>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
Comment: GPGTools - http://gpgtools.org
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
S0maYlA=
=OANb
-----END PGP PUBLIC KEY BLOCK-----
pub 2048R/9C8D3B59 2012-10-10
uid Henryk Konsek <hekonsek@apache.com>
sub 2048R/4DF29C4A 2012-10-10
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1
mQENBFB05RYBCAC5Gvz0zm/upu2XNyiDCxGe62vCjRWGo+lLRmlAYxYLm9iMI7Tf
8Vh32TlgVCn0D0fKsFzz/7cmPCXjaTNH/8wc+cJrZVPgO4+9h9DKPADjtpbaYIgR
toHMSLHH+jzcIJ4Q3uCXR0CoM7tDvybCfHGInkUTECYGEa6Owbl6yJ/KBfUqXxGk
hayAnNXO3kQXWutqkCEfUmGbXHq7YYcPf2jQc3a1oIB1BQcMSGOlsko3Dvf/kOrr
7tiEOAlpdkQRc5oSnw4wmWwU+Sij9kTdymka5lCBxhrgsnv4YhFgn4tXyhn405pR
l4MBcvDanM3KpVHYzNKfb2SMgpVdqk1A8hxRABEBAAG0I0hlbnJ5ayBLb25zZWsg
PGhla29uc2VrQGFwYWNoZS5jb20+iQE4BBMBAgAiBQJQdOUWAhsDBgsJCAcDAgYV
CAIJCgsEFgIDAQIeAQIXgAAKCRBo2rMmnI07WYAiB/46HxLhPNNRQ0O1sThZZiXz
OrELs0KePIDMb2Y++N/iRiR5qi/sCXmLD1AvHaknCN7fucWiVnRepGAgogC2rt8P
+Cnfa+aFo+Cck8OXX915GS5uUoWJhdMWRAAgVBNg5LdiAQD0dkG2v8uzfAW1n/eR
dvnSGTGzxAJ2kTQ9zRuljOKYn639w/ErfzN88jNpVNe658xHRgwxVOxxRuWHW5EF
Z5YWZZDAkhmbKPk8nnbdqJGXI/mGbczGYIZt9CJcy5dbELmFoz6aFL1dYMwzHFjv
LKZSrxLi52vXny3gNOCOki21cJWqnDYrlZTXoHteb3dftJvuf+yW5SjTRc0lx1me
uQENBFB05RYBCAC8oKi2jJ39OAtRC7BTeaTIcTtTeoZel1xTL6jxOt5ijF8md2ra
VL5lVhrthCWuWXanypT3Gc0lcn14RcFy3zXdEamRmihpKfSsMzbmvd2BD7PCzwk7
6My8XRHXuwWCsjdn2RmtwUMNlkOVSMAMOiUEQg2nUOIQkzblMmzlYH+3aTrYxdn+
y6J2/odY/SVrOH2crmImh/pPB3Q9u5LA+G3wXWsyccIBQgPqTtMLpEZyyL4/1MiX
cjnpA90ICyhC0AYSAwNe0yshKy702ucGO3OwpNPEm5L6hprw0TUZDKCcQORr5sI9
teR2rauC8Q582mIiB9WMN2vJ2MMUO6kGJtkpABEBAAGJAR8EGAECAAkFAlB05RYC
GwwACgkQaNqzJpyNO1mFegf/bTN0NFDem3bGMSlEZedOTUMSRsEGZY7/nD0sfmLe
gSsAoxKQg48/MnSFRGgWkSCSkerZRtjmLi0JguP0ufxcV/t5dd0nbYrIC/YrYHNu
hijWCHSd+XY67RD9sQ3AV+SA0/4y8vZlnudrDz6SvP5EV3bZ+p8TBE7ch7OgyLM9
zisG9BugFPsD5S7Zy0+ES2x4E+IxVYzZrUiajfT1PLrAgLfQ2TOwCggvSRU17xu8
VcGkOXenZaUgBAp1p1GyxGlmFa8/VJAhsMzUvOUVU2T3nVKb/moMk7kZ34L11Ycm
O89+mqkE1TM0W6OF2aHV+RbQgyyufR/gsvKBfIKxEDATew==
=eNwt
-----END PGP PUBLIC KEY BLOCK-----
pub 4096R/5942C049 2015-10-15
uid Gregor Zurowski <gzurowski@apache.org>
sig 3 5942C049 2015-10-15 Gregor Zurowski <gzurowski@apache.org>
sub 4096R/A48CCE10 2015-10-15
sig 5942C049 2015-10-15 Gregor Zurowski <gzurowski@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1
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
uxLacDc=
=QAF1
-----END PGP PUBLIC KEY BLOCK-----
pub 4096R/6B400F69 2015-12-17 [expires: 2019-12-17]
uid [ultimate] Claus Ibsen <claus.ibsen@gmail.com>
uid [ultimate] [jpeg image of size 13356]
sub 4096R/5E3FACEC 2015-12-17 [expires: 2019-12-17]
-----BEGIN PGP PUBLIC KEY BLOCK-----
Comment: GPGTools - https://gpgtools.org
mQINBFZybkIBEADjxTHn+rgc0kSVC7AbzFAI3IwVaSl0G1NOP+6lxZ/JbIlEONat
yJCpiDz9vPV5zSv0ErkRLXxzS2jl0letfqcaVl1NfQFxoKBrh+2z/S6jHWaFgItz
y7rdGNnPZBgPIINzQ0EGz9rYS3QatdurGZB8U06NEgLWOhpNFSZ9UQZKU6WDHhw9
9y2jcgfhxEdGxMUv/KxoWY9CICSLMrtLHLQmshLW24aIXZJXhi6X2wjRJdrAS1gb
1kBci71st20i3EU9qP5vKwxefKEhqx5D3oBwVST3wQyI9t5yl1XnQwffCcFDkhg0
NeRZUgntA9cdJ36qoO5g9dXOaUplm1gAqHes3uM29O7J4RabXdHv6wASeDWIP2NI
iGyyMOnC16h0n5IaTD294bLXo7/iOuuXPxMXfq7qq6p2n/bRVNrpX3XT0gIuowHE
rtHqPBixTAOeaU1S9qWmyBgF0OuW+GD2SkU8moDEIAGItYmu+riFib0Hv4I3cnRJ
iPeP1Ne0f10tceUNLC5hBsmIfJA5DURDMGQONZZUePgwkcpT6IPvIQhdemWE62B7
v2v/gnlidWe6QAZa/LJmr2s88p59CGpm1x7SXKbxGMr+T90n2NTS15cn9XCi7sF0
A9LTEhaePO3uPzMORmbjjmo5VjwhlBNrvItr9dHgxPDUeXMZmWCr+K0rMwARAQAB
tCNDbGF1cyBJYnNlbiA8Y2xhdXMuaWJzZW5AZ21haWwuY29tPokCPQQTAQoAJwUC
VnJuQgIbAwUJB4YfgAULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRDdcFCna0AP
aYmKEACfLh42vaslFiGJsgw25oWVTKDqKkBEukHWCqcBMjkoClBWLD5sl1pSnCiR
tlUnwHMwyQz7d/jfsNDFvuZrAVh1Tn6ZhOUzDWaP11N2dJlB0fFCu5LDoEY2l3xV
0Ku7SEh9Kqbf/Ia3rlYYVafwFarFzyydE9gTlQMxC5kuef/SHDOAZDYyXY1f+hCw
63CuylDKTZQzPi1WgBpBeOpSZaIdeMGg9+YzaH5414yyEG0eUFialR8OVvpXLyNe
95RFH+74DPXcGvU55QidKnDuEMCpoPgscYPyBwk/tJC6/+kIN63xk24Vxs6PK0lD
QTN+R9tTUpx6peg1cpxzul+hUKIqWCNLKaC8r4dNvqlfg5onUqxGPloaVZciVqhg
v6Pg2spFoDMdLeAvS7xIEKTz3Zsu2mo3YisqoD9QyX1CZ+qyzlJH2CrBnid+4wUi
kBnCvjXPjhxEqcl6vvv2B0ZpxvYlsMJkegKKSEqUzLHLMSswrsDFX0wMT9nnbD/P
xlJtSSYwHwd+xd4ABgRLyW2Z2ExeNABH45LHoIyqp5jokYfDzLIb7VsrN+d1l/PN
Rz5xoai49GTXYk9gFyRC2eETzQs5CMkaX1uGQd8imv2vpC8ZxTSJhm1PJDaMuURL
egUvNXl8amjU95ZBpwwpsuvoxCAmQbcv7KMt7JuBb7q2cCtM1dH/AAA0Qv8AADQ9
ARAAAQEAAAAAAAAAAAAAAAD/2P/gABBKRklGAAEBAABIAEgAAP/hAGRFeGlmAABN
TQAqAAAACAADAQYAAwAAAAEAAgAAARIAAwAAAAEAAQAAh2kABAAAAAEAAAAyAAAA
AAADoAEAAwAAAAEAAQAAoAIABAAAAAEAAAFAoAMABAAAAAEAAAFzAAAAAP/hCSFo
dHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvADw/eHBhY2tldCBiZWdpbj0i77u/
IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1s
bnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4g
PHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIy
LXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIv
PiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgIDw/eHBhY2tldCBlbmQ9InciPz4A/+0AOFBob3Rvc2hvcCAzLjAA
OEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/AABEIAXMB
QAMBIgACEQEDEQH/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv/xAC1
EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR
8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdo
aWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPE
xcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+fr/xAAfAQADAQEBAQEB
AQEBAAAAAAAAAQIDBAUGBwgJCgv/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQF
ITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3
ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SV
lpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo
6ery8/T19vf4+fr/2wBDAAoKCgoKChEKChEYERERGCEYGBgYISkhISEhISkyKSkp
KSkpMjIyMjIyMjI8PDw8PDxGRkZGRk5OTk5OTk5OTk7/2wBDAQwNDRQSFCISEiJS
Ny03UlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJSUlJS
UlJSUlL/3QAEABT/2gAMAwEAAhEDEQA/AKPGMYpoxt6U7pTRyKCA5FHuKWikA3FB
p3PWm/WgA5pB6Cne1HvTAbwBS9qMUnSgA/Kij6UoGBnFIBOvNJxjNIzY5qLLPwtJ
uxcYt7D2kUZqAzE8CrMdo8mMitGGwXgYzWTqdjojQ7mIGlbOBSrHKw5rp0sMYZR7
GrC2SgHI7dahzZqqUTk/IlIzzzTltZsZGTXUm125Uc09IcHp7/4Uudlezj2ORMc6
djRlx94V2BtuQCMg881aGnwSD5lANP2jJdCLOIDcZNOyOtddLokcgynBxWPcaLcw
ZKjI9quNXuZSw9tjK4/L1pKeyshIYYporZO5zuLW4lJjPWl+lFMkSgDindKQ0AJQ
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
+T34FjE=
=FJmK
-----END PGP PUBLIC KEY BLOCK-----
pub 4096R/1AC2F4BA 2013-03-06
uid Jonathan Anstey (CODE SIGNING KEY) <janstey@gmail.com>
sig 3 1AC2F4BA 2013-03-06 Jonathan Anstey (CODE SIGNING KEY) <janstey@gmail.com>
sub 4096R/8F2837E7 2013-03-06
sig 1AC2F4BA 2013-03-06 Jonathan Anstey (CODE SIGNING KEY) <janstey@gmail.com>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1
mQINBFE2oIUBEADb/1b6Ef9/zQT6u0UF0FARiq6QoAvSKseqWaqdNaiq66ROvaxB
b6QrmqpHyz8y9/rxHLB5gJSx9jXo+vo4/FtBYM/sndSI4w4EasVLwr9cJqn3NzyM
R++8R2YhSttfyTznADctoDfFPvFxOEiW2Y9RQ57DIphLGIRpMUhO4WOtZW/UW21D
qqYEr5QRLnxogryNUp7gA26dnnHcjVJXOXlqSke12NIypgA78DYhml87zTgaKo+R
TsOb7bUgzBiEIu9IJ0ScJD/85G95pLi5GlmqOXyjAXQC7sDRVA4MzywAzLxWwkdc
fs03uoQXk0b7ECNeB+hvluf7aLfBDZI+13cRcpXfMKZ+iJNMSdUem03sUhHROPRA
4K0VwaHYWok1CAj+70SXa2t467ZvL4utlfEc/Nx5htRKdOHXXK7vtLf1Qm2TuI+V
mWYdKxe572tT96E9sYZuCSkCvSBKozZ7e9oeCex6gxR/VV1Nf6HHGU8z1doh+u8t
j/4RUh29Z6pJzmcU+kNo5+3VeqZ4b2PlOkfUXNw+ev6Q6pQqYixrVq6B9bsOG7c9
sq7i/X6IDOaa2aAmx1LCrmLwCX98AWPOzSJPt31m0D4W7Bp1dk8lAJdIg/WlIxEg
replg5G057OYrRc2ELaB+syLWBq7SYE6RkPl1XQ97J2QqHWJUUnk/vJb+wARAQAB
tDZKb25hdGhhbiBBbnN0ZXkgKENPREUgU0lHTklORyBLRVkpIDxqYW5zdGV5QGdt
YWlsLmNvbT6JAjgEEwECACIFAlE2oIUCGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4B
AheAAAoJEHXtbYMawvS67fsQAIQB12GiGJOwr3yLbFXlOTh1c3LDBKahd0yWcUID
LLQs3v+qm6siaIrrw884JHWWyxVgk0XMJk5WpRWFQyHaOeIBRNNkjg9/BhX6YUpE
adisvKJjZLog9hpoflm7eVKSJqyufJpbDQw/5N95G11PZINVZJeizDVgVts5e3fa
U8/nny7ln0sOVuiJx33LSl7f2q9EBwjzwOe/pYFbPLeZ4z+Xg+869w4b9JR/MTWP
ScVi0JphQh80TvePhj44tlKQY0bWVIrEVeNDZWjqh0cGN37l/w/XmHEJv8nyP6/U
t872WZSj8020cI5JeDMJKtV8yJ2ACZS0Y9u1/osGleDEqMO6WEM9UqRvfIGXET+P
v2dCoqeaEGdM47M2GEJMhHnk/zvDZGE4nbp8PTv3ANXWrei+RmnOEjalONFBkAWu
T42GrswDmOji3PXceWo9UMmAfqLErj9JcEcvjFouhuZ0fzCjAj2BxYCcFnMBaqM0
2k+n+AGIp8AuDkrDcRJywK16CcV4PSlXTFcgfoSqIOQ1kxmU+X0qodYPGbT58WZ4
LTZpVJy0M5YL56vpWt6O0VWpWcckPt/H/bF19hAgbGMi9hJYL2TP/yMZD6ZtYM7E
irJLtJwbnle4AyOnJo6VnZ5UNhVKaoKEYjGZorl//X0Sd03+J2HG+Upki6tEofvd
9lvUuQINBFE2oIUBEADJxG3GNjwcaZuW/owmf0Zhx3c9KcOxFBlzYxXDxSEfhnR7
o19Ham/gABDUGUxA6cvjmkgnZiV3NWUhoFq9duRjg85l/vznJZ20J/Zn17xtX6KK
BVfF6MGVWsc6wJ4VfiaoeVwN/Cf2KCYY4wdnLe95WxwONNrhIJGQy2sC+FRarmVG
Ax4dziT4bTP5jm+Z7I634w4KaXqT82hGLzd31kxk72STXZ5p9a7pvus1I9NjQEu1
V9yyEeQl2J9QcV5xzK2a4m8tXTRe9II+FHJvnojqtCx1zlFjp5fRqMhTbfmGVONI
wSqCEGtdnDHYDS8E92ByyDv9/KfgdPw1VbFYLmyVky5WnUPDFyXP4snx4RiZ2JLK
wkCluwaGeE5hJciRr9atYG6sVjF4olCFgcTaT9ww64kXWMUeTqmi13TqlK/QvaJz
w006s2wUHg0ri4NYjUKRH7uSTwT9byYEjn7NhQjPxs/dmtUJlFO8Tx0XEQHZB36j
Mw3XLnPBZgCmD1wJ9wlR3KvLrTSahn1ymqD2osxU2vDfUARkMG9Hp4kNhHbk2LTJ
0j6cTQT8enueK4xp/LXAPzwRZm6Jv78aNMML1EW5NDGBme61M6zDrmSSWT3cmlA8
Mjd8SqQdECQeuJhqfzq2eJ/xmQ+7FdkyIXunLzsZsiPVcTjeRf0APprWdNayHQAR
AQABiQIfBBgBAgAJBQJRNqCFAhsMAAoJEHXtbYMawvS65XAP+wYxeoGPuwtYo4qo
BTvzeg0wNCRUHCNSial36T/7y9tIUtLLkQFDIiUqrVAZizeqte1Kp7CHhsat4fV9
YhCxV+BTJEzH3RoQk1M0zsguN+ANou1D0eeu1YBxrrgTZSzwf9U9gAjumVCGsVkT
zENxMA9nu/KknLkEWECnpaQPk89s8ZoNuuPaoiNpd0rrexni5+TTJ6uLG/tsk/jO
rZi9eWsP7GUZykBRumUTJHWh5+cKNOhDWt1+0pfcnCiiCLsbcGg9l72pP/4pxYXo
pMLkMoJ8Ly0QTUlO4cNZIsqQYGdqpTI/plaJyrMTVBdwK0JorlEexICR73CYGBaz
7jIysIIsy59QZXKaedYmhOc8OaZa/mz/IFASUV7FOpGxjSRgFtLUW74yfBj5uZJb
Zo1Kd/yu/sg7E2/ROdvkGoARSBXyQwFw5Wp5xg7c0WZbXRXNR+Cv0Vpbe06NN0cp
xHVxu7cc3di5+INpPywxxJIyS7JEGR/dIc4PnTb27fTc39AIQWuqKpprMQF3Oaoz
xnNtapHHdaoFVykAN+B9czsUMH6YbDPD8cfxK97Xloh5p1aPKNtRDvgkq/l7LN9X
YLxMAFiJVxTO4pYZx08oOSxZwc8WsRXFPYXbVgGYmGLjQIrT5TJAEmlxPFydSJcc
advtsGhpGw2bQvnPEt4JVU+CV6/I
=SRdD
-----END PGP PUBLIC KEY BLOCK-----
pub 2048R/02FF4100 2015-02-05
uid Andrea Cosentino (Chiave) <ancosen1985@yahoo.com>
sig 3 02FF4100 2015-02-05 Andrea Cosentino (Chiave) <ancosen1985@yahoo.com>
sub 2048R/D7B65D33 2015-02-05
sig 02FF4100 2015-02-05 Andrea Cosentino (Chiave) <ancosen1985@yahoo.com>
pub 4096R/FD34417D 2015-04-23
uid Andrea Cosentino (COMMITER KEY) <acosentino@apache.org>
sig 3 FD34417D 2015-04-23 Andrea Cosentino (COMMITER KEY) <acosentino@apache.org>
sub 4096R/E334BF85 2015-04-23
sig FD34417D 2015-04-23 Andrea Cosentino (COMMITER KEY) <acosentino@apache.org>
pub 4096R/B4889CC0 2015-04-24
uid Andrea Cosentino (NEW COMMITTER KEY) <acosentino@apache.org>
sig 3 B4889CC0 2015-04-24 Andrea Cosentino (NEW COMMITTER KEY) <acosentino@apache.org>
sub 4096R/D31B42C9 2015-04-24
sig B4889CC0 2015-04-24 Andrea Cosentino (NEW COMMITTER KEY) <acosentino@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v2.0.22 (GNU/Linux)
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
Wg==
=4Now
-----END PGP PUBLIC KEY BLOCK-----
pub rsa4096 2020-06-04 [SC]
79B147E077B168B76AF3A42E887DDEE5FD906D83
uid [ultimate] Nicola Ferraro <nferraro@apache.org>
sub rsa4096 2020-06-04 [E]
-----BEGIN PGP PUBLIC KEY BLOCK-----
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
=h2EU
-----END PGP PUBLIC KEY BLOCK-----
pub rsa4096 2016-04-07 [SC]
33E8BA5A41AB4B428475386137461E41A7B768D7
uid [ unknown] Luca Burgazzoli <lburgazzoli@apache.org>
sig 3 37461E41A7B768D7 2016-04-07 Luca Burgazzoli <lburgazzoli@apache.org>
sub rsa4096 2016-04-07 [E]
sig 37461E41A7B768D7 2016-04-07 Luca Burgazzoli <lburgazzoli@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
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
Bq6lxl6uAA==
=f/Ot
-----END PGP PUBLIC KEY BLOCK-----
-----BEGIN PGP PUBLIC KEY BLOCK-----
Comment: This is a revocation certificate
iQI2BCABCAAgFiEEYOzvJGEf6DJxT4aqnVvv+llCwEkFAmJ/S30CHQIACgkQnVvv
+llCwElyaQ//aszQtG8sPWQIaboDPDjEEFjQ91+tZJWy9hlyFikG0b/JgAJX7y8S
7j+a3lEgFYxjP3bq0hsDwPiweZU1YgGeDPenQIxaQzaj80Ukf1IbpzrAzKSALSqK
NgEhwLw80Ud6h5vOhH0klEqt4uJfqh6I2Eexx7R5dGw4/PsQ7v8k84cpTzawexlY
Gc2Rft0MRjdXYCM8Hqp0nLKtAo+ON4LRk2Sxcu4+aLVOwtipuMAI3hAQuLjoCCw8
xQabl//zi1qF0KFai4XJiZY8eisq42b/2cdEaSdrdiv11Hp7due5i9sGOOJC5lrX
lhP3OjJcu0Qlj6hebbJmrI3cQeIHj1wfvokKbuXRMgETh6swU9Ru0sw1tK7zQ0ci
LjFUnsV6WB6buQgEVB7w1azmR2KmPUOUA/94j3bZlW64lB5Z/6/ilYGFgdr9a6Og
ZN81/sDtYVycjjBGtZm9t9Fky5mvfJsmJNMNXRQfLqxV/l2RPGQPQxeSQANR1daH
vTC6hUConql5k/ByzBTxzsvsZDMnTJIFiGBG3ytygsoyN2rOvPIPbfOemh+ZNQ4D
FyvhtJTfSKA1DZG4IxSB4Gf9n+pmVHsYsxriCjNvujahl8mqa3GbDPhBcRwuuq9/
pUspsPuwtKKxDm1yc27oLPMHpGA2DJtznVzSECqE9kCHMpXtb6KCIB4=
=acDJ
-----END PGP PUBLIC KEY BLOCK-----
pub rsa4096 2022-05-14 [SC]
83740C7983C5F7C7A4741DE53C5519FD8D34480D
uid [ultimate] Gregor Zurowski <gzurowski@apache.org>
sig 3 3C5519FD8D34480D 2022-05-14 Gregor Zurowski <gzurowski@apache.org>
uid [ultimate] Gregor Zurowski <gregor@zurowski.org>
sig 3 3C5519FD8D34480D 2022-05-14 Gregor Zurowski <gzurowski@apache.org>
uid [ultimate] Gregor Zurowski <gregor@zurowski.net>
sig 3 3C5519FD8D34480D 2022-05-14 Gregor Zurowski <gzurowski@apache.org>
sub rsa4096 2022-05-14 [E]
sig 3C5519FD8D34480D 2022-05-14 Gregor Zurowski <gzurowski@apache.org>
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQINBGJ/UicBEADHMtkwttk/J4IOdcdfd16Z36xHexVPi3wyS+kAddNy8oBpxVgi
lihDachd46/9veBRYCWi4q/C1+wmR/xqo9GTum+sYbG52u7ihtc86u1h7HCoK6z7
A310fj4A6FjDK2g52p3Z8EVTvm3eZU6FjvDs13OXLIKYGlnm8csypwKF4ryVhZ3p
oBBrqD1pAhHaQ0loO8CfD8gJoR/TEAtSAEpnBXrILaFLBU2ohsM4kFBajP9e7go0
rXGq+rvm1j6n7VSa6cSdf5REIM2/HCh+m7z9PfWkoW5lDu5yldphOGoUpOm+N/wA
waFe0kSpeDEvxnkPrLahWiajEvGvlPstYf3x55sBIaaLq+oCVeRL1lrsAKq1Z4kp
0+DyuSkj1PK5XSz/yeWVjLY2RrFGIruxxr76EfjOCcujyzzBK+qOZ66S+v1nJ0NZ
2nnNOf1B8Qj5AahH8DY4rjQ/kS9QJJXftF7faWoRSZBhSTNI5ExnmO9CM6MM/oC/
KuDLg+0gKcOlIzWxTUAwLsKnjlZg7MUJDyGVswvjHT9alBCj+KBbQ6M+QV/sKJHl
JEHY5eLkIW2DXXmKzWSOi8/U26DxF2kA2vAhib4ZQse1v0MW3j/eVM2YbG4ya5dw
x0gA/xAe1JqL8fpvDEqRTJoQbNjerf22qvvJ5WVWUkJZJPQ+MnGe4dAO9QARAQAB
tCZHcmVnb3IgWnVyb3dza2kgPGd6dXJvd3NraUBhcGFjaGUub3JnPokCUQQTAQgA
OwIbAwULCQgHAgYVCgkICwIEFgIDAQIeAQIXgBYhBIN0DHmDxffHpHQd5TxVGf2N
NEgNBQJif1MIAhkBAAoJEDxVGf2NNEgN2isQAIMLfDr2leqsuPj3J1wcQFFOAvuo
YMsD0eEfedLxTIOnZU1hCRYaCdZd/ve0AQchRa4jSNT3NOR43dqXcBhszHHgn4vI
JIYtF2ZQ6aEEwRLOdxBxZAuSpp4f8yMqGQMHVh7p70RgzZCiWK5S5/zKRNI6YnRX
b0HEXEEfnk1qwd0g74p7c4Dk6kVmKpP90w/YT5xdbTH/MRQyte4HuDvT1sxlMc/G
5YY1JuMPOsbezRT1cBsR2i+ozLxOsDfVzRl3M4AViUkf02riO/JK3Crt7MxZfAjZ
1FxHWTEkEy+4xklavN7z+HrcnZ+FCvKxy5O5gYfdNjx6WB4HLDMOLFEWO71PhOlV
8Rj1Ne5OdKfUlrBghthdUXpLL7lr/BYbwr7o9unBFYA85FPVo4zTEb7iOKqdfgK3
C5fUxOmovb1gMZjDOnEvs4V2txYBIee1P0kmA1kHPxfakijPPpSsfF4VvOrY+SgV
/1ldeZH9W1p5KS7BWcuI47zH3+x7qzmSEFHp+tMdDay4PSufMwzkugSIeFKkxopF
VD0PIhDS8+BbCm51EmpJaS33c0JkbxGgFO9WKbLDXqIetu/JTdOXCcfMsW1ILGge
rmEU52kq8L20HRglrWbUJU7eY/EBC2ODYCbAZ4UFWjAQNq262pB8UBdiUi4wPHsb
yyndvTE3vrYQRAmWtCVHcmVnb3IgWnVyb3dza2kgPGdyZWdvckB6dXJvd3NraS5v
cmc+iQJOBBMBCAA4FiEEg3QMeYPF98ekdB3lPFUZ/Y00SA0FAmJ/UwMCGwMFCwkI
BwIGFQoJCAsCBBYCAwECHgECF4AACgkQPFUZ/Y00SA0YRA//Vsv5AXfgZdhgGjHx
/ga6hP+QGqa1Uzk8MUoJQVX+isE0UaK7VJfb98G1aw7wzcVVn78XLQSf1AFsVTyN
nFwl9B3fV4MbllFUITMMdHbk9fg94y3ic2WuZWyi7fVme/w90BThdfLA0DP2TRa6
X4jMNyaDhRd+4JfO1olUTTySb5ClsPE7txjTMFd98TKHUX21qOajsj26HTxAjiuL
xee3Af028Nw3F6FrqL0iMTH4FqhLqn8XYkFvVwdJNfSezFJ/1xBxlK6HUytpfGCg
5QlQXO5LBzLAaepfQXgnN3cTnJE1VL/BRI4zPQJmoc/rHmSRsMW+MktGtz52Kh3A
aAlKkBzxLBZjCdiUsfMKdf2YLXLiJX7uPsj82LhsYDPUyK8l+GVTaJAko4jbAkJ/
3tiEy2fXTXtYhzQ0aG2VdsG42nOvM0WLFOrJpnhbndCHew6d8QaJt5cpbYWzlLi4
qSSFDmRB/E4FqPNbNitCozTw3F+zJNnYnmw9nA9wXgiDHmNTXSjk/uj5nP/V9WjG
Vf4MBlgHDvjY1oadVicvZShHCKZ+sUfe9MPu9pYUexHh+Zr9Og/ij7EojbnrxiXX
4DQyJvCiny1o/wTp8M6XzKivSQCPtA5LxslZD+xl16LCKS3puwtfUzpvU6ltsiM4
RNJVnYcYbcfmoXXfcBB1Xg5XPie0JUdyZWdvciBadXJvd3NraSA8Z3JlZ29yQHp1
cm93c2tpLm5ldD6JAk4EEwEIADgWIQSDdAx5g8X3x6R0HeU8VRn9jTRIDQUCYn9T
IgIbAwULCQgHAgYVCgkICwIEFgIDAQIeAQIXgAAKCRA8VRn9jTRIDQ3uD/9YKuHQ
jP+H06FNppNsr6zMaVCS+NU7qVg2R7iGpvfhqHL4PE7pPwRnKQKY5HoReYyAoZb+
+MZRt+PZtFyHEgjCKd30opRebd7N4jgu0GZIWLke0r+1MKiR40qPGlwopJAsT5R/
qZKsv/EtBG0DDFL3r2NJvKSEChlwDdKsJJJa7Xy/PAnD1Qb5uSgbOQD1tIOD9KlB
p0ZWqSTqLp2awbThII0cJEZ4DK4JacBJnFvLZlk+fABEfFPrLDNQK+VKTKIS7XaP
uBgCuVBS3OXaAW8POHClMfRDZGFoRpDAlspx9zK1StRe2v3C9Z2FKOjGhGZVtAGS
DTUmDkq49lX6j/LcyPWKbczzhh7nPscFr7HbYEWIa2W2d7KYDbmJvNeZtCtYPQ9I
DVxLMhJhiUkCkra/pT3i84Z8nu4CXv0MVTf9f6vR4LgTLm9VrztXRC3rLFnhypWV
ED2cxrqh0UYTvpIdeEpSBlPEwGW/HAv1SofhzkXuFIAkRtzSw3WwVJ1XvCe/Fecq
ev+sEEY+2eMDXquyCu0VQJ5RH/m3NZuRt0tudjiAum12gswD+qHJraIChhsXShx7
vh+V25YVecOpT9CMrFYtWiVhLd3CaK9m4NGAvqN+kLRT6jfAUId/hXD6SYPYU9dG
B3PS2NFC9k8DQMdIHHDfSMEDwemd1H9GTnbsXbkCDQRif1InARAAuOGKo/6ZuVGy
BPFZn6mKC4q4GaMDk1rjDKZ+onUi9V9HSuTS6OzXaWiEawf5VpW17RCpqrmPYwFu
6YAEmauuJ9tGuTaOrun4Ir/GFxi8HpP/jpVriqMMwLQicNy+owi8cNHZVsek4elW
jm+Fxcv4WgcIvNTrV5VUWT2vleRxFTCCnILEypzm1wHYTGkTlNPOj8jJ728hPFK3
T9PZNPYJAC4LkzFawnlcNg0fOSxrnfJdd9rHCscooCaqILDawQG7d3q0GEPfWCAX
9Up4mr/16cpkKaPlLGlxI9ewERljIVL7G2iC4TQ/NY75DZ2MFJxYMdB54O0cFVDx
4cGf67Rvo59sFdsYBJP562N6xM3W9WpkENaJ7jOv9vg3NRBo1k/8N8CqmV/NN4eL
Uvn97jjb5DqeXBjDHkzKHU/nCF/mUvNDfmcu7sXlUzc+AVsoSXlrGBZ+56sQbHKw
1CVWesgKl9YBzOO2SVjYIwuakzJgAf0ayQ155We3jvcxux95Qb6DplaG5Dhm5zSL
dADLEtOvu1Y+iRoGSWsIF/ZHvKIu8lx0sOstRQrn7z9nCMz3ZDmb0SWFl1IR7vht
4B9QlSOPqswElUenAxmIm7vxcmSXL+ocw2zpiOxjPfZQF6ZAHa75BhSIauiZyyUF
hcEGiFwcRtTzRPBzBQuin7vYrnVksgsAEQEAAYkCNgQYAQgAIBYhBIN0DHmDxffH
pHQd5TxVGf2NNEgNBQJif1InAhsMAAoJEDxVGf2NNEgN2OUP/ikoZJdMRN3M5LXo
X0ePd9Ab39uL8UwF/joZPfjUbDxhztC6ZCfdd36M+4pba3Upyq4XOv466HOxbkNB
HNlCXapAYOAPJcOCL2E8Q+3CKN6FAaa7jrSLWdDoZWHSyUf2KozLX8MxR8sNRfMT
VUITf9bc8WzNHMLuIFwVEGAhx4BwcqXBQyZP7jJsQOBIYK5yAwe7FChpS20ZRkg3
5TszwSglzcv43aVL9CNfN3R/JfR7Cb+VHYaQGw4lGMLHB+uWxXh9TDKhuqUjh5DM
5utM8o93S7u9zgPMOMzoBMs/SDXCT9g0Weo4KgeA2MLtBVhyMxy5jxbZjFvRQrWb
krXMXxGzmxdEkLGT2fL34olYzTfcgZGCGgxnKo6/rlx3LJDd5k/ZtB7oDn0YgrdR
9ETvi0aglvh/700KR9YKKuKF+yFdva0EFdcqxsBjYlMsorn7iBDIQhQEt5ACo5ic
Fp+qSpfVi3gDZh+5JbnVe8wSdug3Ot1kizKW+qTZIK71HRVxitp5YjzYk8jKQw3i
uq5MW9woOx95hw7BecySSn3OK+Bx9DJIKy3hU09iUCTSp3k3JCR6JaZV4HJyXwU/
vj6rw3po3mrkWjlNEUVsvDtSLkL0r2bEM1xt/tnSueW6/I/MmMr2UbL4FW0cZfW8
20qhR5TljoJXY5aRz3c6idiIPVLr
=Q3P9
-----END PGP PUBLIC KEY BLOCK-----
================================================
FILE: LICENSE.txt
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: NOTICE.txt
================================================
Apache Camel
Copyright 2007-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
================================================
FILE: README.md
================================================
# Apache Camel Spring Boot Support
[](https://central.sonatype.com/artifact/org.apache.camel/apache-camel)
[](https://www.javadoc.io/doc/org.apache.camel/camel-core)
[](https://stackoverflow.com/questions/tagged/apache-camel)
[](https://camel.zulipchat.com/)
[](https://twitter.com/ApacheCamel)
[Apache Camel](https://camel.apache.org/) is a powerful open source integration framework based on known
Enterprise Integration Patterns with powerful bean integration.
### Introduction
This project provides Spring Boot support for Apache Camel.
## Creating / deleting starters
To create a starter for the `zoot` component, run the following command:
```
./starter-create zoot
```
Similarly, to delete the starter for the `zoot` component, run the following command:
```
./starter-delete zoot
```
More information can be found on the [Camel website](https://camel.apache.org/camel-spring-boot/latest/)
================================================
FILE: archetypes/camel-archetype-spring-boot/pom.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>archetypes</artifactId>
<version>4.21.0-SNAPSHOT</version>
</parent>
<groupId>org.apache.camel.archetypes</groupId>
<artifactId>camel-archetype-spring-boot</artifactId>
<name>Camel SB :: Archetypes :: Spring Boot Based Router</name>
<description>Creates a new Camel project using Spring Boot.</description>
<packaging>maven-archetype</packaging>
<properties>
<archetype.test.settingsFile>src/test/resources/settings.xml</archetype.test.settingsFile> <!-- Needed to download camel-spring-boot snapshots -->
</properties>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>${maven-archetype-packaging-version}</version>
</extension>
</extensions>
<!-- include all resources but only filter archetype-metadata.xml -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources-filtered</directory>
<filtering>true</filtering>
<includes>
<include>**/archetype-metadata.xml</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*</include>
</includes>
</testResource>
</testResources>
</build>
</project>
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/META-INF/LICENSE.txt
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/META-INF/NOTICE.txt
================================================
=========================================================================
== NOTICE file corresponding to the section 4 d of ==
== the Apache License, Version 2.0, ==
== in this case for the Apache Camel distribution. ==
=========================================================================
This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
Please read the different LICENSE files present in the licenses directory of
this distribution.
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/META-INF/archetype-post-generate.groovy
================================================
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.nio.file.Path
import java.nio.file.Paths
import org.slf4j.LoggerFactory
def log = LoggerFactory.getLogger("archetype-post-generate")
Path projectPath = Paths.get(request.outputDirectory, request.artifactId)
ProcessBuilder processBuilder = new ProcessBuilder()
def basePath = request.getRepositorySession().getSystemProperties().get("maven.multiModuleProjectDirectory");
def mvnCmd = Path.of(basePath, "mvnw").toFile().exists() ? Path.of(basePath, "mvnw").toString() : "mvn"
log.info("generating maven wrapper using {} command", mvnCmd)
processBuilder.command(mvnCmd, "wrapper:wrapper", "-Dmaven=" + request.properties["maven-version"])
processBuilder.directory(projectPath.toFile())
processBuilder.inheritIO()
try {
Process process = processBuilder.start()
int exitCode = process.waitFor()
if (exitCode == 0) {
log.info("Maven wrapper generated successfully")
} else {
log.warn("Failed to generate Maven wrapper. You can run 'mvn wrapper:wrapper' manually after resolving project dependencies.")
}
} catch (Exception e) {
log.warn("Could not generate Maven wrapper: ${e.message}")
}
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/README.adoc
================================================
= Camel Example Spring Boot
This example shows how to work with a simple Apache Camel application using Spring Boot.
The example generates messages using timer trigger, writes them to standard output.
== Camel routes
The Camel route is located in the `MyCamelRouter` class. In this class the route
starts from a timer, that triggers every 2nd second and calls a Spring Bean `MyBean`
which returns a message, that is routed to a stream endpoint which writes to standard output.
The example contains test class demonstrating how to intercept and mock endpoints in unit tests using JUnit 6 and Camel Test Support.
== Using Camel components
Apache Camel provides 300+ components which you can use to integrate and route messages between many systems
and data formats. To use any of these Camel components, add the component as a dependency to your project.
== How to run
You can run this example using
./mvnw spring-boot:run
== How to run test
You can run unit test of this example using
./mvnw clean test
== More information
You can find more information about Apache Camel at the website: http://camel.apache.org/
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
## ------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You under the Apache License, Version 2.0
## (the "License"); you may not use this file except in compliance with
## the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## ------------------------------------------------------------------------
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>${groupId}</groupId>
<artifactId>${artifactId}</artifactId>
<packaging>jar</packaging>
<version>${version}</version>
<name>A Camel Spring Boot Route</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring.boot-version>${spring-boot-version}</spring.boot-version>
<surefire.plugin.version>3.0.0-M4</surefire.plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- Camel BOM -->
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-spring-boot-bom</artifactId>
<version>${camel-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Spring Boot BOM -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Camel -->
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-stream-starter</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test-spring-junit6</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin-version}</version>
<configuration>
<release>17</release>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot-version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
</plugin>
</plugins>
</build>
</project>
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBean.java
================================================
## ------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You under the Apache License, Version 2.0
## (the "License"); you may not use this file except in compliance with
## the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## ------------------------------------------------------------------------
package ${package};
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
/**
* A bean that returns a message when you call the {@link #saySomething()} method.
* <p/>
* Uses <tt>@Component("myBean")</tt> to register this bean with the name <tt>myBean</tt>
* that we use in the Camel route to lookup this bean.
*/
@Component("myBean")
public class MySpringBean {
@Value("${greeting}")
private String say;
public String saySomething() {
return say;
}
}
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBootApplication.java
================================================
## ------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You under the Apache License, Version 2.0
## (the "License"); you may not use this file except in compliance with
## the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## ------------------------------------------------------------------------
package ${package};
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MySpringBootApplication {
/**
* A main method to start this application.
*/
public static void main(String[] args) {
SpringApplication.run(MySpringBootApplication.class, args);
}
}
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBootRouter.java
================================================
## ------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You under the Apache License, Version 2.0
## (the "License"); you may not use this file except in compliance with
## the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## ------------------------------------------------------------------------
package ${package};
import org.apache.camel.builder.RouteBuilder;
import org.springframework.stereotype.Component;
/**
* A simple Camel route that triggers from a timer and calls a bean and prints to system out.
* <p/>
* Use <tt>@Component</tt> to make Camel auto detect this route when starting.
*/
@Component
public class MySpringBootRouter extends RouteBuilder {
@Override
public void configure() {
from("timer:hello?period={{timer.period}}").routeId("hello")
.transform().method("myBean", "saySomething")
.filter(simple("${body} contains 'foo'"))
.to("log:foo")
.end()
.to("stream:out");
}
}
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/META-INF/LICENSE.txt
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/META-INF/NOTICE.txt
================================================
=========================================================================
== NOTICE file corresponding to the section 4 d of ==
== the Apache License, Version 2.0, ==
== in this case for the Apache Camel distribution. ==
=========================================================================
This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
Please read the different LICENSE files present in the licenses directory of
this distribution.
================================================
FILE: archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/application.properties
================================================
## ---------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership
Showing preview only (747K chars total). Download the full file or copy to clipboard to get everything.
gitextract_48t35rhg/ ├── .asf.yaml ├── .gitattributes ├── .github/ │ ├── actions/ │ │ └── incremental-build/ │ │ ├── exclusions.sh │ │ └── parse_errors.sh │ ├── asf-deploy-settings.xml │ ├── dependabot.yml │ └── workflows/ │ ├── automatic-sync-main.yml │ ├── depsreview.yaml │ ├── generate-sbom-main.yml │ ├── pr-build-main.yml │ └── pr-doc-validation.yml ├── .gitignore ├── .mvn/ │ ├── extensions.xml │ ├── jvm.config │ └── wrapper/ │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Jenkinsfile.sb ├── Jenkinsfile.sb.deploy ├── Jenkinsfile.sb.ppc64le ├── KEYS ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── archetypes/ │ ├── camel-archetype-spring-boot/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── resources/ │ │ │ │ ├── META-INF/ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── NOTICE.txt │ │ │ │ │ └── archetype-post-generate.groovy │ │ │ │ └── archetype-resources/ │ │ │ │ ├── README.adoc │ │ │ │ ├── pom.xml │ │ │ │ └── src/ │ │ │ │ ├── main/ │ │ │ │ │ ├── java/ │ │ │ │ │ │ ├── MySpringBean.java │ │ │ │ │ │ ├── MySpringBootApplication.java │ │ │ │ │ │ └── MySpringBootRouter.java │ │ │ │ │ └── resources/ │ │ │ │ │ ├── META-INF/ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── NOTICE.txt │ │ │ │ │ └── application.properties │ │ │ │ └── test/ │ │ │ │ └── java/ │ │ │ │ └── MySpringBootApplicationTest.java │ │ │ └── resources-filtered/ │ │ │ └── META-INF/ │ │ │ └── maven/ │ │ │ └── archetype-metadata.xml │ │ └── test/ │ │ └── resources/ │ │ ├── projects/ │ │ │ ├── build-it/ │ │ │ │ ├── archetype.properties │ │ │ │ └── goal.txt │ │ │ └── run-it/ │ │ │ ├── archetype.properties │ │ │ └── goal.txt │ │ └── settings.xml │ └── pom.xml ├── camel-spring-boot-sbom/ │ ├── camel-spring-boot-sbom.json │ ├── camel-spring-boot-sbom.vex.json │ └── camel-spring-boot-sbom.xml ├── catalog/ │ ├── camel-catalog-provider-springboot/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── springboot/ │ │ │ │ └── catalog/ │ │ │ │ └── SpringBootRuntimeProvider.java │ │ │ └── resources/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── springboot/ │ │ │ └── catalog/ │ │ │ ├── beans/ │ │ │ │ ├── CaffeineAggregationRepository.json │ │ │ │ ├── CaffeineIdempotentRepository.json │ │ │ │ ├── CassandraAggregationRepository.json │ │ │ │ ├── CassandraIdempotentRepository.json │ │ │ │ ├── ConsulClusterService.json │ │ │ │ ├── CronScheduledRoutePolicy.json │ │ │ │ ├── EhcacheAggregationRepository.json │ │ │ │ ├── EhcacheIdempotentRepository.json │ │ │ │ ├── ElasticsearchBulkRequestAggregationStrategy.json │ │ │ │ ├── Etcd3AggregationRepository.json │ │ │ │ ├── FileLockClusterService.json │ │ │ │ ├── HazelcastAggregationRepository.json │ │ │ │ ├── HazelcastIdempotentRepository.json │ │ │ │ ├── InfinispanEmbeddedAggregationRepository.json │ │ │ │ ├── InfinispanEmbeddedClusterService.json │ │ │ │ ├── InfinispanEmbeddedIdempotentRepository.json │ │ │ │ ├── InfinispanRemoteAggregationRepository.json │ │ │ │ ├── InfinispanRemoteClusterService.json │ │ │ │ ├── InfinispanRemoteIdempotentRepository.json │ │ │ │ ├── JCacheAggregationRepository.json │ │ │ │ ├── JCacheIdempotentRepository.json │ │ │ │ ├── JGroupsRaftClusterService.json │ │ │ │ ├── JdbcAggregationRepository.json │ │ │ │ ├── JdbcMessageIdRepository.json │ │ │ │ ├── KafkaIdempotentRepository.json │ │ │ │ ├── KubernetesClusterService.json │ │ │ │ ├── LevelDBAggregationRepository.json │ │ │ │ ├── LoggingHttpActivityListener.json │ │ │ │ ├── MongoDbIdempotentRepository.json │ │ │ │ ├── OpensearchBulkRequestAggregationStrategy.json │ │ │ │ ├── SimpleScheduledRoutePolicy.json │ │ │ │ ├── SpringCacheIdempotentRepository.json │ │ │ │ ├── SpringRedisIdempotentRepository.json │ │ │ │ ├── TarAggregationStrategy.json │ │ │ │ ├── XsltAggregationStrategy.json │ │ │ │ ├── XsltSaxonAggregationStrategy.json │ │ │ │ ├── ZipAggregationStrategy.json │ │ │ │ └── ZooKeeperClusterService.json │ │ │ ├── beans.properties │ │ │ ├── components/ │ │ │ │ ├── activemq.json │ │ │ │ ├── activemq6.json │ │ │ │ ├── amqp.json │ │ │ │ ├── arangodb.json │ │ │ │ ├── as2.json │ │ │ │ ├── asterisk.json │ │ │ │ ├── atmosphere-websocket.json │ │ │ │ ├── atom.json │ │ │ │ ├── avro.json │ │ │ │ ├── aws-bedrock-agent-runtime.json │ │ │ │ ├── aws-bedrock-agent.json │ │ │ │ ├── aws-bedrock.json │ │ │ │ ├── aws-cloudtrail.json │ │ │ │ ├── aws-config.json │ │ │ │ ├── aws-parameter-store.json │ │ │ │ ├── aws-secrets-manager.json │ │ │ │ ├── aws-security-hub.json │ │ │ │ ├── aws2-athena.json │ │ │ │ ├── aws2-comprehend.json │ │ │ │ ├── aws2-cw.json │ │ │ │ ├── aws2-ddb.json │ │ │ │ ├── aws2-ddbstream.json │ │ │ │ ├── aws2-ec2.json │ │ │ │ ├── aws2-ecs.json │ │ │ │ ├── aws2-eks.json │ │ │ │ ├── aws2-eventbridge.json │ │ │ │ ├── aws2-iam.json │ │ │ │ ├── aws2-kinesis-firehose.json │ │ │ │ ├── aws2-kinesis.json │ │ │ │ ├── aws2-kms.json │ │ │ │ ├── aws2-lambda.json │ │ │ │ ├── aws2-mq.json │ │ │ │ ├── aws2-msk.json │ │ │ │ ├── aws2-polly.json │ │ │ │ ├── aws2-redshift-data.json │ │ │ │ ├── aws2-rekognition.json │ │ │ │ ├── aws2-s3-vectors.json │ │ │ │ ├── aws2-s3.json │ │ │ │ ├── aws2-ses.json │ │ │ │ ├── aws2-sns.json │ │ │ │ ├── aws2-sqs.json │ │ │ │ ├── aws2-step-functions.json │ │ │ │ ├── aws2-sts.json │ │ │ │ ├── aws2-textract.json │ │ │ │ ├── aws2-timestream.json │ │ │ │ ├── aws2-transcribe.json │ │ │ │ ├── aws2-translate.json │ │ │ │ ├── azure-cosmosdb.json │ │ │ │ ├── azure-eventgrid.json │ │ │ │ ├── azure-eventhubs.json │ │ │ │ ├── azure-files.json │ │ │ │ ├── azure-functions.json │ │ │ │ ├── azure-key-vault.json │ │ │ │ ├── azure-servicebus.json │ │ │ │ ├── azure-storage-blob.json │ │ │ │ ├── azure-storage-datalake.json │ │ │ │ ├── azure-storage-queue.json │ │ │ │ ├── bean-validator.json │ │ │ │ ├── bean.json │ │ │ │ ├── bonita.json │ │ │ │ ├── box.json │ │ │ │ ├── braintree.json │ │ │ │ ├── browse.json │ │ │ │ ├── caffeine-cache.json │ │ │ │ ├── caffeine-loadcache.json │ │ │ │ ├── chatscript.json │ │ │ │ ├── chunk.json │ │ │ │ ├── class.json │ │ │ │ ├── clickup.json │ │ │ │ ├── cm-sms.json │ │ │ │ ├── coap+tcp.json │ │ │ │ ├── coap.json │ │ │ │ ├── coaps+tcp.json │ │ │ │ ├── coaps.json │ │ │ │ ├── cometd.json │ │ │ │ ├── cometds.json │ │ │ │ ├── consul.json │ │ │ │ ├── controlbus.json │ │ │ │ ├── couchbase.json │ │ │ │ ├── couchdb.json │ │ │ │ ├── cql.json │ │ │ │ ├── cron.json │ │ │ │ ├── crypto.json │ │ │ │ ├── cxf.json │ │ │ │ ├── cxfrs.json │ │ │ │ ├── cyberark-vault.json │ │ │ │ ├── dapr.json │ │ │ │ ├── dataformat.json │ │ │ │ ├── dataset-test.json │ │ │ │ ├── dataset.json │ │ │ │ ├── debezium-db2.json │ │ │ │ ├── debezium-mongodb.json │ │ │ │ ├── debezium-mysql.json │ │ │ │ ├── debezium-oracle.json │ │ │ │ ├── debezium-postgres.json │ │ │ │ ├── debezium-sqlserver.json │ │ │ │ ├── dfdl.json │ │ │ │ ├── dhis2.json │ │ │ │ ├── digitalocean.json │ │ │ │ ├── direct.json │ │ │ │ ├── disruptor-vm.json │ │ │ │ ├── disruptor.json │ │ │ │ ├── djl.json │ │ │ │ ├── dns.json │ │ │ │ ├── docker.json │ │ │ │ ├── docling.json │ │ │ │ ├── drill.json │ │ │ │ ├── dropbox.json │ │ │ │ ├── dynamic-router-control.json │ │ │ │ ├── dynamic-router.json │ │ │ │ ├── ehcache.json │ │ │ │ ├── elasticsearch-rest-client.json │ │ │ │ ├── elasticsearch.json │ │ │ │ ├── etcd3.json │ │ │ │ ├── exec.json │ │ │ │ ├── fhir.json │ │ │ │ ├── file-watch.json │ │ │ │ ├── file.json │ │ │ │ ├── flatpack.json │ │ │ │ ├── flink.json │ │ │ │ ├── flowable.json │ │ │ │ ├── fop.json │ │ │ │ ├── freemarker.json │ │ │ │ ├── ftp.json │ │ │ │ ├── ftps.json │ │ │ │ ├── geocoder.json │ │ │ │ ├── git.json │ │ │ │ ├── github.json │ │ │ │ ├── github2.json │ │ │ │ ├── google-bigquery-sql.json │ │ │ │ ├── google-bigquery.json │ │ │ │ ├── google-calendar-stream.json │ │ │ │ ├── google-calendar.json │ │ │ │ ├── google-drive.json │ │ │ │ ├── google-firestore.json │ │ │ │ ├── google-functions.json │ │ │ │ ├── google-mail-stream.json │ │ │ │ ├── google-mail.json │ │ │ │ ├── google-pubsub.json │ │ │ │ ├── google-secret-manager.json │ │ │ │ ├── google-sheets-stream.json │ │ │ │ ├── google-sheets.json │ │ │ │ ├── google-speech-to-text.json │ │ │ │ ├── google-storage.json │ │ │ │ ├── google-text-to-speech.json │ │ │ │ ├── google-vertexai.json │ │ │ │ ├── google-vision.json │ │ │ │ ├── graphql.json │ │ │ │ ├── grpc.json │ │ │ │ ├── hashicorp-vault.json │ │ │ │ ├── hazelcast-atomicvalue.json │ │ │ │ ├── hazelcast-instance.json │ │ │ │ ├── hazelcast-list.json │ │ │ │ ├── hazelcast-map.json │ │ │ │ ├── hazelcast-multimap.json │ │ │ │ ├── hazelcast-pncounter.json │ │ │ │ ├── hazelcast-queue.json │ │ │ │ ├── hazelcast-replicatedmap.json │ │ │ │ ├── hazelcast-ringbuffer.json │ │ │ │ ├── hazelcast-seda.json │ │ │ │ ├── hazelcast-set.json │ │ │ │ ├── hazelcast-topic.json │ │ │ │ ├── http.json │ │ │ │ ├── https.json │ │ │ │ ├── huggingface.json │ │ │ │ ├── hwcloud-dms.json │ │ │ │ ├── hwcloud-frs.json │ │ │ │ ├── hwcloud-functiongraph.json │ │ │ │ ├── hwcloud-iam.json │ │ │ │ ├── hwcloud-imagerecognition.json │ │ │ │ ├── hwcloud-obs.json │ │ │ │ ├── hwcloud-smn.json │ │ │ │ ├── ibm-cos.json │ │ │ │ ├── ibm-secrets-manager.json │ │ │ │ ├── ibm-watson-discovery.json │ │ │ │ ├── ibm-watson-language.json │ │ │ │ ├── ibm-watson-speech-to-text.json │ │ │ │ ├── ibm-watson-text-to-speech.json │ │ │ │ ├── ibm-watsonx-ai.json │ │ │ │ ├── iec60870-client.json │ │ │ │ ├── iec60870-server.json │ │ │ │ ├── iggy.json │ │ │ │ ├── ignite-cache.json │ │ │ │ ├── ignite-compute.json │ │ │ │ ├── ignite-events.json │ │ │ │ ├── ignite-idgen.json │ │ │ │ ├── ignite-messaging.json │ │ │ │ ├── ignite-queue.json │ │ │ │ ├── ignite-set.json │ │ │ │ ├── imap.json │ │ │ │ ├── imaps.json │ │ │ │ ├── infinispan-embedded.json │ │ │ │ ├── infinispan.json │ │ │ │ ├── influxdb.json │ │ │ │ ├── influxdb2.json │ │ │ │ ├── irc.json │ │ │ │ ├── ironmq.json │ │ │ │ ├── jcache.json │ │ │ │ ├── jcr.json │ │ │ │ ├── jdbc.json │ │ │ │ ├── jetty.json │ │ │ │ ├── jgroups-raft.json │ │ │ │ ├── jgroups.json │ │ │ │ ├── jira.json │ │ │ │ ├── jms.json │ │ │ │ ├── jmx.json │ │ │ │ ├── jolt.json │ │ │ │ ├── jooq.json │ │ │ │ ├── jpa.json │ │ │ │ ├── jslt.json │ │ │ │ ├── json-patch.json │ │ │ │ ├── json-validator.json │ │ │ │ ├── jsonata.json │ │ │ │ ├── jt400.json │ │ │ │ ├── jte.json │ │ │ │ ├── kafka.json │ │ │ │ ├── kamelet.json │ │ │ │ ├── keycloak.json │ │ │ │ ├── knative.json │ │ │ │ ├── kserve.json │ │ │ │ ├── kubernetes-config-maps.json │ │ │ │ ├── kubernetes-cronjob.json │ │ │ │ ├── kubernetes-custom-resources.json │ │ │ │ ├── kubernetes-deployments.json │ │ │ │ ├── kubernetes-events.json │ │ │ │ ├── kubernetes-hpa.json │ │ │ │ ├── kubernetes-job.json │ │ │ │ ├── kubernetes-namespaces.json │ │ │ │ ├── kubernetes-nodes.json │ │ │ │ ├── kubernetes-persistent-volumes-claims.json │ │ │ │ ├── kubernetes-persistent-volumes.json │ │ │ │ ├── kubernetes-pods.json │ │ │ │ ├── kubernetes-replication-controllers.json │ │ │ │ ├── kubernetes-resources-quota.json │ │ │ │ ├── kubernetes-secrets.json │ │ │ │ ├── kubernetes-service-accounts.json │ │ │ │ ├── kubernetes-services.json │ │ │ │ ├── kudu.json │ │ │ │ ├── langchain4j-agent.json │ │ │ │ ├── langchain4j-chat.json │ │ │ │ ├── langchain4j-embeddings.json │ │ │ │ ├── langchain4j-embeddingstore.json │ │ │ │ ├── langchain4j-tools.json │ │ │ │ ├── langchain4j-web-search.json │ │ │ │ ├── language.json │ │ │ │ ├── ldap.json │ │ │ │ ├── ldif.json │ │ │ │ ├── log.json │ │ │ │ ├── lpr.json │ │ │ │ ├── lucene.json │ │ │ │ ├── lumberjack.json │ │ │ │ ├── mapstruct.json │ │ │ │ ├── master.json │ │ │ │ ├── metrics.json │ │ │ │ ├── micrometer.json │ │ │ │ ├── milo-browse.json │ │ │ │ ├── milo-client.json │ │ │ │ ├── milo-server.json │ │ │ │ ├── milvus.json │ │ │ │ ├── mina-sftp.json │ │ │ │ ├── mina.json │ │ │ │ ├── minio.json │ │ │ │ ├── mllp.json │ │ │ │ ├── mock.json │ │ │ │ ├── mongodb-gridfs.json │ │ │ │ ├── mongodb.json │ │ │ │ ├── mustache.json │ │ │ │ ├── mvel.json │ │ │ │ ├── mybatis-bean.json │ │ │ │ ├── mybatis.json │ │ │ │ ├── nats.json │ │ │ │ ├── neo4j.json │ │ │ │ ├── netty-http.json │ │ │ │ ├── netty.json │ │ │ │ ├── oaipmh.json │ │ │ │ ├── olingo2.json │ │ │ │ ├── olingo4.json │ │ │ │ ├── once.json │ │ │ │ ├── openai.json │ │ │ │ ├── opensearch.json │ │ │ │ ├── openshift-build-configs.json │ │ │ │ ├── openshift-builds.json │ │ │ │ ├── openshift-deploymentconfigs.json │ │ │ │ ├── openstack-cinder.json │ │ │ │ ├── openstack-glance.json │ │ │ │ ├── openstack-keystone.json │ │ │ │ ├── openstack-neutron.json │ │ │ │ ├── openstack-nova.json │ │ │ │ ├── openstack-swift.json │ │ │ │ ├── opentelemetry-metrics.json │ │ │ │ ├── optaplanner.json │ │ │ │ ├── paho-mqtt5.json │ │ │ │ ├── paho.json │ │ │ │ ├── pdf.json │ │ │ │ ├── pg-replication-slot.json │ │ │ │ ├── pgevent.json │ │ │ │ ├── pinecone.json │ │ │ │ ├── platform-http.json │ │ │ │ ├── plc4x.json │ │ │ │ ├── pop3.json │ │ │ │ ├── pop3s.json │ │ │ │ ├── pqc.json │ │ │ │ ├── pubnub.json │ │ │ │ ├── pulsar.json │ │ │ │ ├── qdrant.json │ │ │ │ ├── quartz.json │ │ │ │ ├── quickfix.json │ │ │ │ ├── reactive-streams.json │ │ │ │ ├── ref.json │ │ │ │ ├── rest-api.json │ │ │ │ ├── rest-openapi.json │ │ │ │ ├── rest.json │ │ │ │ ├── robotframework.json │ │ │ │ ├── rocketmq.json │ │ │ │ ├── rss.json │ │ │ │ ├── saga.json │ │ │ │ ├── salesforce.json │ │ │ │ ├── sap-netweaver.json │ │ │ │ ├── scheduler.json │ │ │ │ ├── schematron.json │ │ │ │ ├── scp.json │ │ │ │ ├── seda.json │ │ │ │ ├── service.json │ │ │ │ ├── servicenow.json │ │ │ │ ├── servlet.json │ │ │ │ ├── sftp.json │ │ │ │ ├── sjms.json │ │ │ │ ├── sjms2.json │ │ │ │ ├── slack.json │ │ │ │ ├── smb.json │ │ │ │ ├── smooks.json │ │ │ │ ├── smpp.json │ │ │ │ ├── smpps.json │ │ │ │ ├── smtp.json │ │ │ │ ├── smtps.json │ │ │ │ ├── snmp.json │ │ │ │ ├── solr.json │ │ │ │ ├── solrCloud.json │ │ │ │ ├── solrs.json │ │ │ │ ├── splunk-hec.json │ │ │ │ ├── splunk.json │ │ │ │ ├── spring-ai-chat.json │ │ │ │ ├── spring-ai-embeddings.json │ │ │ │ ├── spring-ai-image.json │ │ │ │ ├── spring-ai-tools.json │ │ │ │ ├── spring-ai-vector-store.json │ │ │ │ ├── spring-batch.json │ │ │ │ ├── spring-event.json │ │ │ │ ├── spring-jdbc.json │ │ │ │ ├── spring-ldap.json │ │ │ │ ├── spring-rabbitmq.json │ │ │ │ ├── spring-redis.json │ │ │ │ ├── spring-ws.json │ │ │ │ ├── sql-stored.json │ │ │ │ ├── sql.json │ │ │ │ ├── ssh.json │ │ │ │ ├── stax.json │ │ │ │ ├── stitch.json │ │ │ │ ├── stream.json │ │ │ │ ├── string-template.json │ │ │ │ ├── stripe.json │ │ │ │ ├── stub.json │ │ │ │ ├── tahu-edge.json │ │ │ │ ├── tahu-host.json │ │ │ │ ├── telegram.json │ │ │ │ ├── tensorflow-serving.json │ │ │ │ ├── thrift.json │ │ │ │ ├── thymeleaf.json │ │ │ │ ├── tika.json │ │ │ │ ├── timer.json │ │ │ │ ├── twilio.json │ │ │ │ ├── twitter-directmessage.json │ │ │ │ ├── twitter-search.json │ │ │ │ ├── twitter-timeline.json │ │ │ │ ├── undertow.json │ │ │ │ ├── validator.json │ │ │ │ ├── velocity.json │ │ │ │ ├── vertx-http.json │ │ │ │ ├── vertx-websocket.json │ │ │ │ ├── vertx.json │ │ │ │ ├── wasm.json │ │ │ │ ├── weather.json │ │ │ │ ├── weaviate.json │ │ │ │ ├── web3j.json │ │ │ │ ├── webhook.json │ │ │ │ ├── whatsapp.json │ │ │ │ ├── wordpress.json │ │ │ │ ├── workday.json │ │ │ │ ├── xchange.json │ │ │ │ ├── xj.json │ │ │ │ ├── xmlsecurity-sign.json │ │ │ │ ├── xmlsecurity-verify.json │ │ │ │ ├── xmpp.json │ │ │ │ ├── xquery.json │ │ │ │ ├── xslt-saxon.json │ │ │ │ ├── xslt.json │ │ │ │ ├── zeebe.json │ │ │ │ ├── zendesk.json │ │ │ │ ├── zookeeper-master.json │ │ │ │ └── zookeeper.json │ │ │ ├── components.properties │ │ │ ├── dataformats/ │ │ │ │ ├── asn1.json │ │ │ │ ├── avro.json │ │ │ │ ├── avroJackson.json │ │ │ │ ├── barcode.json │ │ │ │ ├── base64.json │ │ │ │ ├── beanio.json │ │ │ │ ├── bindyCsv.json │ │ │ │ ├── bindyFixed.json │ │ │ │ ├── bindyKvp.json │ │ │ │ ├── cbor.json │ │ │ │ ├── crypto.json │ │ │ │ ├── csv.json │ │ │ │ ├── dfdl.json │ │ │ │ ├── fastjson.json │ │ │ │ ├── fhirJson.json │ │ │ │ ├── fhirXml.json │ │ │ │ ├── flatpack.json │ │ │ │ ├── fory.json │ │ │ │ ├── grok.json │ │ │ │ ├── groovyJson.json │ │ │ │ ├── groovyXml.json │ │ │ │ ├── gson.json │ │ │ │ ├── gzipDeflater.json │ │ │ │ ├── hl7.json │ │ │ │ ├── ical.json │ │ │ │ ├── iso8583.json │ │ │ │ ├── jackson.json │ │ │ │ ├── jacksonXml.json │ │ │ │ ├── jaxb.json │ │ │ │ ├── jsonApi.json │ │ │ │ ├── jsonb.json │ │ │ │ ├── lzf.json │ │ │ │ ├── mimeMultipart.json │ │ │ │ ├── ocsf.json │ │ │ │ ├── parquetAvro.json │ │ │ │ ├── pgp.json │ │ │ │ ├── pqc.json │ │ │ │ ├── protobuf.json │ │ │ │ ├── protobufJackson.json │ │ │ │ ├── rss.json │ │ │ │ ├── smooks.json │ │ │ │ ├── snakeYaml.json │ │ │ │ ├── soap.json │ │ │ │ ├── swiftMt.json │ │ │ │ ├── swiftMx.json │ │ │ │ ├── syslog.json │ │ │ │ ├── tarFile.json │ │ │ │ ├── thrift.json │ │ │ │ ├── univocityCsv.json │ │ │ │ ├── univocityFixed.json │ │ │ │ ├── univocityTsv.json │ │ │ │ ├── xmlSecurity.json │ │ │ │ ├── zipDeflater.json │ │ │ │ └── zipFile.json │ │ │ ├── dataformats.properties │ │ │ ├── dev-consoles/ │ │ │ │ ├── aws-secrets.json │ │ │ │ ├── aws2-s3.json │ │ │ │ ├── azure-secrets.json │ │ │ │ ├── bean.json │ │ │ │ ├── blocked.json │ │ │ │ ├── browse.json │ │ │ │ ├── circuit-breaker.json │ │ │ │ ├── consumer.json │ │ │ │ ├── context.json │ │ │ │ ├── debug.json │ │ │ │ ├── endpoint.json │ │ │ │ ├── errors.json │ │ │ │ ├── eval-language.json │ │ │ │ ├── event.json │ │ │ │ ├── gc.json │ │ │ │ ├── gcp-secrets.json │ │ │ │ ├── groovy.json │ │ │ │ ├── hashicorp-secrets.json │ │ │ │ ├── health.json │ │ │ │ ├── inflight.json │ │ │ │ ├── internal-tasks.json │ │ │ │ ├── java-security.json │ │ │ │ ├── jvm.json │ │ │ │ ├── kafka.json │ │ │ │ ├── kubernetes-configmaps.json │ │ │ │ ├── kubernetes-secrets.json │ │ │ │ ├── log.json │ │ │ │ ├── memory.json │ │ │ │ ├── message-history.json │ │ │ │ ├── micrometer.json │ │ │ │ ├── platform-http.json │ │ │ │ ├── processor.json │ │ │ │ ├── producer.json │ │ │ │ ├── properties.json │ │ │ │ ├── quartz.json │ │ │ │ ├── receive.json │ │ │ │ ├── reload.json │ │ │ │ ├── resilience4j.json │ │ │ │ ├── rest.json │ │ │ │ ├── route-controller.json │ │ │ │ ├── route-dump.json │ │ │ │ ├── route-group.json │ │ │ │ ├── route-structure.json │ │ │ │ ├── route.json │ │ │ │ ├── send.json │ │ │ │ ├── service.json │ │ │ │ ├── sftp.json │ │ │ │ ├── simple-language.json │ │ │ │ ├── source.json │ │ │ │ ├── startup-recorder.json │ │ │ │ ├── stub.json │ │ │ │ ├── system-properties.json │ │ │ │ ├── thread.json │ │ │ │ ├── top.json │ │ │ │ ├── trace.json │ │ │ │ ├── transformers.json │ │ │ │ ├── type-converters.json │ │ │ │ ├── variables.json │ │ │ │ └── vertx-websocket.json │ │ │ ├── dev-consoles.properties │ │ │ ├── languages/ │ │ │ │ ├── bean.json │ │ │ │ ├── constant.json │ │ │ │ ├── csimple.json │ │ │ │ ├── datasonnet.json │ │ │ │ ├── exchangeProperty.json │ │ │ │ ├── file.json │ │ │ │ ├── groovy.json │ │ │ │ ├── header.json │ │ │ │ ├── hl7terser.json │ │ │ │ ├── java.json │ │ │ │ ├── joor.json │ │ │ │ ├── jq.json │ │ │ │ ├── js.json │ │ │ │ ├── jsonpath.json │ │ │ │ ├── mvel.json │ │ │ │ ├── ognl.json │ │ │ │ ├── python.json │ │ │ │ ├── ref.json │ │ │ │ ├── simple.json │ │ │ │ ├── spel.json │ │ │ │ ├── tokenize.json │ │ │ │ ├── variable.json │ │ │ │ ├── wasm.json │ │ │ │ ├── xpath.json │ │ │ │ ├── xquery.json │ │ │ │ └── xtokenize.json │ │ │ ├── languages.properties │ │ │ ├── others/ │ │ │ │ ├── cli-connector.json │ │ │ │ ├── cli-debug.json │ │ │ │ ├── cloudevents.json │ │ │ │ ├── componentdsl.json │ │ │ │ ├── console.json │ │ │ │ ├── core-engine.json │ │ │ │ ├── csimple-joor.json │ │ │ │ ├── cxf-transport.json │ │ │ │ ├── debug.json │ │ │ │ ├── dsl-modeline.json │ │ │ │ ├── endpointdsl.json │ │ │ │ ├── github2.json │ │ │ │ ├── jandex.json │ │ │ │ ├── jasypt.json │ │ │ │ ├── java-joor-dsl.json │ │ │ │ ├── jfr.json │ │ │ │ ├── jsoup.json │ │ │ │ ├── keycloak.json │ │ │ │ ├── langchain4j-tokenizer.json │ │ │ │ ├── leveldb.json │ │ │ │ ├── lra.json │ │ │ │ ├── mail-microsoft-oauth.json │ │ │ │ ├── management.json │ │ │ │ ├── mdc.json │ │ │ │ ├── micrometer-observability.json │ │ │ │ ├── observability-services.json │ │ │ │ ├── observation.json │ │ │ │ ├── openapi-java.json │ │ │ │ ├── openapi-validator.json │ │ │ │ ├── opentelemetry.json │ │ │ │ ├── opentelemetry2.json │ │ │ │ ├── reactor.json │ │ │ │ ├── resilience4j-micrometer.json │ │ │ │ ├── resilience4j.json │ │ │ │ ├── rxjava.json │ │ │ │ ├── shiro.json │ │ │ │ ├── spring-cloud-config.json │ │ │ │ ├── spring-security.json │ │ │ │ ├── telemetry-dev.json │ │ │ │ ├── undertow-spring-security.json │ │ │ │ ├── xml-io-dsl.json │ │ │ │ ├── xml-jaxb-dsl.json │ │ │ │ ├── xml-jaxb.json │ │ │ │ ├── xml-jaxp.json │ │ │ │ ├── yaml-dsl.json │ │ │ │ └── yaml-io.json │ │ │ ├── others.properties │ │ │ ├── transformers/ │ │ │ │ ├── application-cloudevents+json.json │ │ │ │ ├── application-json.json │ │ │ │ ├── application-x-java-object.json │ │ │ │ ├── application-x-struct.json │ │ │ │ ├── avro-binary.json │ │ │ │ ├── avro-x-java-object.json │ │ │ │ ├── avro-x-struct.json │ │ │ │ ├── aws-cloudtrail-application-cloudevents.json │ │ │ │ ├── aws2-ddb-application-json.json │ │ │ │ ├── aws2-ddb-application-x-struct.json │ │ │ │ ├── aws2-ddbstream-application-cloudevents.json │ │ │ │ ├── aws2-kinesis-application-cloudevents.json │ │ │ │ ├── aws2-s3-application-cloudevents.json │ │ │ │ ├── aws2-sqs-application-cloudevents.json │ │ │ │ ├── azure-cosmosdb-application-cloudevents.json │ │ │ │ ├── azure-eventhubs-application-cloudevents.json │ │ │ │ ├── azure-files-application-cloudevents.json │ │ │ │ ├── azure-servicebus-application-cloudevents.json │ │ │ │ ├── azure-storage-blob-application-cloudevents.json │ │ │ │ ├── azure-storage-datalake-application-cloudevents.json │ │ │ │ ├── azure-storage-queue-application-cloudevents.json │ │ │ │ ├── google-calendar-stream-application-cloudevents.json │ │ │ │ ├── google-mail-draft.json │ │ │ │ ├── google-mail-stream-application-cloudevents.json │ │ │ │ ├── google-mail-update-message-labels.json │ │ │ │ ├── google-pubsub-application-cloudevents.json │ │ │ │ ├── google-sheets-application-x-struct.json │ │ │ │ ├── google-sheets-stream-application-cloudevents.json │ │ │ │ ├── google-storage-application-cloudevents.json │ │ │ │ ├── http-application-cloudevents.json │ │ │ │ ├── infinispan-embeddings.json │ │ │ │ ├── milvus-embeddings.json │ │ │ │ ├── neo4j-embeddings.json │ │ │ │ ├── neo4j-rag.json │ │ │ │ ├── pinecone-embeddings.json │ │ │ │ ├── pinecone-rag.json │ │ │ │ ├── protobuf-binary.json │ │ │ │ ├── protobuf-x-java-object.json │ │ │ │ ├── protobuf-x-struct.json │ │ │ │ ├── qdrant-embeddings.json │ │ │ │ ├── qdrant-rag.json │ │ │ │ ├── slack-application-cloudevents.json │ │ │ │ └── weaviate-embeddings.json │ │ │ └── transformers.properties │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── springboot/ │ │ └── catalog/ │ │ └── SpringBootRuntimeProviderTest.java │ └── pom.xml ├── components-starter/ │ ├── ac-mappings.yml │ ├── antora.yml │ ├── camel-activemq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── activemq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── activemq/ │ │ │ └── springboot/ │ │ │ ├── ActiveMQComponentAutoConfiguration.java │ │ │ ├── ActiveMQComponentConfiguration.java │ │ │ └── ActiveMQComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-activemq6-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── activemq6.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── activemq6/ │ │ │ └── springboot/ │ │ │ ├── ActiveMQComponentAutoConfiguration.java │ │ │ ├── ActiveMQComponentConfiguration.java │ │ │ └── ActiveMQComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-amqp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── amqp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── amqp/ │ │ │ └── springboot/ │ │ │ ├── AMQPComponentAutoConfiguration.java │ │ │ ├── AMQPComponentConfiguration.java │ │ │ └── AMQPComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-arangodb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── arangodb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── arangodb/ │ │ │ └── springboot/ │ │ │ ├── ArangoDbComponentAutoConfiguration.java │ │ │ ├── ArangoDbComponentConfiguration.java │ │ │ └── ArangoDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-as2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── as2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── as2/ │ │ │ └── springboot/ │ │ │ ├── AS2ComponentAutoConfiguration.java │ │ │ ├── AS2ComponentConfiguration.java │ │ │ └── AS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-asn1-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── asn1.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── asn1/ │ │ │ └── springboot/ │ │ │ ├── ASN1DataFormatAutoConfiguration.java │ │ │ └── ASN1DataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-asterisk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── asterisk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── asterisk/ │ │ │ └── springboot/ │ │ │ ├── AsteriskComponentAutoConfiguration.java │ │ │ └── AsteriskComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-atmosphere-websocket-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── atmosphere-websocket.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── atmosphere/ │ │ │ └── websocket/ │ │ │ └── springboot/ │ │ │ ├── WebsocketComponentAutoConfiguration.java │ │ │ ├── WebsocketComponentConfiguration.java │ │ │ └── WebsocketComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-atom-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── atom.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── atom/ │ │ │ └── springboot/ │ │ │ ├── AtomComponentAutoConfiguration.java │ │ │ └── AtomComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-avro-rpc-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── avro-rpc.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ ├── AvroComponentAutoConfiguration.java │ │ │ ├── AvroComponentConfiguration.java │ │ │ └── AvroComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-avro-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── avro.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── dataformat/ │ │ │ │ └── avro/ │ │ │ │ └── springboot/ │ │ │ │ ├── AvroDataFormatAutoConfiguration.java │ │ │ │ └── AvroDataFormatConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ ├── AvroGenericMarshaAndUnmarshaTest.java │ │ │ ├── AvroMarshalAndUnmarshallTest.java │ │ │ ├── AvroMarshalAndUnmarshallXmlTest.java │ │ │ └── Value.java │ │ └── resources/ │ │ ├── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── avro/ │ │ │ └── springboot/ │ │ │ └── test/ │ │ │ └── user.avsc │ │ └── routes/ │ │ └── springDataFormat.xml │ ├── camel-aws-bedrock-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-bedrock.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── bedrock/ │ │ │ ├── agent/ │ │ │ │ └── springboot/ │ │ │ │ ├── BedrockAgentComponentAutoConfiguration.java │ │ │ │ ├── BedrockAgentComponentConfiguration.java │ │ │ │ └── BedrockAgentComponentConverter.java │ │ │ ├── agentruntime/ │ │ │ │ └── springboot/ │ │ │ │ ├── BedrockAgentRuntimeComponentAutoConfiguration.java │ │ │ │ ├── BedrockAgentRuntimeComponentConfiguration.java │ │ │ │ └── BedrockAgentRuntimeComponentConverter.java │ │ │ └── runtime/ │ │ │ └── springboot/ │ │ │ ├── BedrockComponentAutoConfiguration.java │ │ │ ├── BedrockComponentConfiguration.java │ │ │ └── BedrockComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-cloudtrail-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-cloudtrail.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── cloudtrail/ │ │ │ └── springboot/ │ │ │ ├── CloudtrailComponentAutoConfiguration.java │ │ │ ├── CloudtrailComponentConfiguration.java │ │ │ └── CloudtrailComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-config-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-config.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── config/ │ │ │ └── springboot/ │ │ │ ├── AWSConfigComponentAutoConfiguration.java │ │ │ ├── AWSConfigComponentConfiguration.java │ │ │ └── AWSConfigComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-parameter-store-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-parameter-store.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── parameterstore/ │ │ │ └── springboot/ │ │ │ ├── ParameterStoreComponentAutoConfiguration.java │ │ │ ├── ParameterStoreComponentConfiguration.java │ │ │ └── ParameterStoreComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws-secrets-manager-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws-secrets-manager.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws/ │ │ │ │ └── secretsmanager/ │ │ │ │ └── springboot/ │ │ │ │ ├── SecretsManagerComponentAutoConfiguration.java │ │ │ │ ├── SecretsManagerComponentConfiguration.java │ │ │ │ ├── SecretsManagerComponentConverter.java │ │ │ │ └── SpringBootAwsSecretsManagerPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── secretsmanager/ │ │ │ └── springboot/ │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-aws-security-hub-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws-security-hub.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws/ │ │ │ └── securityhub/ │ │ │ └── springboot/ │ │ │ ├── SecurityHubComponentAutoConfiguration.java │ │ │ ├── SecurityHubComponentConfiguration.java │ │ │ └── SecurityHubComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-athena-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-athena.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── athena/ │ │ │ └── springboot/ │ │ │ ├── Athena2ComponentAutoConfiguration.java │ │ │ ├── Athena2ComponentConfiguration.java │ │ │ └── Athena2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-comprehend-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-comprehend.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── comprehend/ │ │ │ └── springboot/ │ │ │ ├── Comprehend2ComponentAutoConfiguration.java │ │ │ ├── Comprehend2ComponentConfiguration.java │ │ │ └── Comprehend2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-cw-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-cw.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── cw/ │ │ │ │ └── springboot/ │ │ │ │ ├── Cw2ComponentAutoConfiguration.java │ │ │ │ ├── Cw2ComponentConfiguration.java │ │ │ │ └── Cw2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── cw/ │ │ ├── BaseCw.java │ │ └── CwComponentTest.java │ ├── camel-aws2-ddb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-ddb.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ ├── ddb/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── Ddb2ComponentAutoConfiguration.java │ │ │ │ │ ├── Ddb2ComponentConfiguration.java │ │ │ │ │ └── Ddb2ComponentConverter.java │ │ │ │ └── ddbstream/ │ │ │ │ └── springboot/ │ │ │ │ ├── Ddb2StreamComponentAutoConfiguration.java │ │ │ │ ├── Ddb2StreamComponentConfiguration.java │ │ │ │ └── Ddb2StreamComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ ├── BaseDdb2.java │ │ ├── ddb/ │ │ │ ├── Ddb2BatchGetItemsTest.java │ │ │ ├── Ddb2DeleteItemTest.java │ │ │ ├── Ddb2DeleteTableTest.java │ │ │ ├── Ddb2DescribeTableRuleIT.java │ │ │ ├── Ddb2GetItemTest.java │ │ │ ├── Ddb2QueryTest.java │ │ │ ├── Ddb2ScanTest.java │ │ │ ├── Ddb2UpdateItemTest.java │ │ │ └── Ddb2UpdateTableByIdTest.java │ │ └── ddbstream/ │ │ └── Ddb2StreamTest.java │ ├── camel-aws2-ec2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-ec2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── ec2/ │ │ │ └── springboot/ │ │ │ ├── AWS2EC2ComponentAutoConfiguration.java │ │ │ ├── AWS2EC2ComponentConfiguration.java │ │ │ └── AWS2EC2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-ecs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-ecs.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── ecs/ │ │ │ └── springboot/ │ │ │ ├── ECS2ComponentAutoConfiguration.java │ │ │ ├── ECS2ComponentConfiguration.java │ │ │ └── ECS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-eks-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-eks.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── eks/ │ │ │ └── springboot/ │ │ │ ├── EKS2ComponentAutoConfiguration.java │ │ │ ├── EKS2ComponentConfiguration.java │ │ │ └── EKS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-eventbridge-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-eventbridge.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── eventbridge/ │ │ │ └── springboot/ │ │ │ ├── EventbridgeComponentAutoConfiguration.java │ │ │ ├── EventbridgeComponentConfiguration.java │ │ │ └── EventbridgeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-iam-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-iam.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── iam/ │ │ │ └── springboot/ │ │ │ ├── IAM2ComponentAutoConfiguration.java │ │ │ ├── IAM2ComponentConfiguration.java │ │ │ └── IAM2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-kinesis-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-kinesis.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ ├── firehose/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── KinesisFirehose2ComponentAutoConfiguration.java │ │ │ │ │ ├── KinesisFirehose2ComponentConfiguration.java │ │ │ │ │ └── KinesisFirehose2ComponentConverter.java │ │ │ │ └── kinesis/ │ │ │ │ └── springboot/ │ │ │ │ ├── Kinesis2ComponentAutoConfiguration.java │ │ │ │ ├── Kinesis2ComponentConfiguration.java │ │ │ │ └── Kinesis2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── kinesis/ │ │ ├── BaseKinesis.java │ │ └── KinesisComponentTest.java │ ├── camel-aws2-kms-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-kms.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── kms/ │ │ │ └── springboot/ │ │ │ ├── KMS2ComponentAutoConfiguration.java │ │ │ ├── KMS2ComponentConfiguration.java │ │ │ └── KMS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-lambda-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-lambda.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── lambda/ │ │ │ └── springboot/ │ │ │ ├── Lambda2ComponentAutoConfiguration.java │ │ │ ├── Lambda2ComponentConfiguration.java │ │ │ └── Lambda2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-mq-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-mq.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── mq/ │ │ │ └── springboot/ │ │ │ ├── MQ2ComponentAutoConfiguration.java │ │ │ ├── MQ2ComponentConfiguration.java │ │ │ └── MQ2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-msk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-msk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── msk/ │ │ │ └── springboot/ │ │ │ ├── MSK2ComponentAutoConfiguration.java │ │ │ ├── MSK2ComponentConfiguration.java │ │ │ └── MSK2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-polly-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-polly.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── polly/ │ │ │ └── springboot/ │ │ │ ├── Polly2ComponentAutoConfiguration.java │ │ │ ├── Polly2ComponentConfiguration.java │ │ │ └── Polly2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-redshift-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-redshift.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── redshift/ │ │ │ └── data/ │ │ │ └── springboot/ │ │ │ ├── RedshiftData2ComponentAutoConfiguration.java │ │ │ ├── RedshiftData2ComponentConfiguration.java │ │ │ └── RedshiftData2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-rekognition-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-rekognition.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── rekognition/ │ │ │ └── springboot/ │ │ │ ├── Rekognition2ComponentAutoConfiguration.java │ │ │ ├── Rekognition2ComponentConfiguration.java │ │ │ └── Rekognition2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-s3-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-s3.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── s3/ │ │ │ │ └── springboot/ │ │ │ │ ├── AWS2S3ComponentAutoConfiguration.java │ │ │ │ ├── AWS2S3ComponentConfiguration.java │ │ │ │ └── AWS2S3ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── s3/ │ │ │ ├── BaseS3.java │ │ │ ├── S3BatchConsumerTest.java │ │ │ ├── S3ComponentTest.java │ │ │ ├── S3CopyObjectCustomerKeyTest.java │ │ │ ├── S3CopyObjectOperationTest.java │ │ │ ├── S3CreateDownloadLinkOperationTest.java │ │ │ ├── S3ListObjectsOperationTest.java │ │ │ ├── S3MoveAfterReadConsumerTest.java │ │ │ ├── S3MultipartUploadOperationTest.java │ │ │ ├── S3ObjectRangeOperationTest.java │ │ │ ├── S3PojoAsBodyTest.java │ │ │ ├── S3SimpleEncryptedUploadOperationTest.java │ │ │ └── S3StreamUploadOperationTest.java │ │ └── resources/ │ │ └── empty.txt │ ├── camel-aws2-s3-vectors-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-s3-vectors.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── s3vectors/ │ │ │ └── springboot/ │ │ │ ├── AWS2S3VectorsComponentAutoConfiguration.java │ │ │ ├── AWS2S3VectorsComponentConfiguration.java │ │ │ └── AWS2S3VectorsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-ses-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-ses.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── ses/ │ │ │ └── springboot/ │ │ │ ├── Ses2ComponentAutoConfiguration.java │ │ │ ├── Ses2ComponentConfiguration.java │ │ │ └── Ses2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-sns-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-sns.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── sns/ │ │ │ │ └── springboot/ │ │ │ │ ├── Sns2ComponentAutoConfiguration.java │ │ │ │ ├── Sns2ComponentConfiguration.java │ │ │ │ └── Sns2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── sns/ │ │ ├── BaseSns.java │ │ ├── EmptyTestSnsConfiguration.java │ │ ├── SnsAdvancedConfigurationTest.java │ │ ├── SnsComponentFifoTest.java │ │ ├── SnsTopicProducerCustomConfigTest.java │ │ ├── SnsTopicProducerTest.java │ │ ├── SnsTopicProducerWithSubscriptionTest.java │ │ ├── SnsTopicWithKmsEncryptionTest.java │ │ └── TestSnsConfiguration.java │ ├── camel-aws2-sqs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── aws2-sqs.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── aws2/ │ │ │ │ └── sqs/ │ │ │ │ └── springboot/ │ │ │ │ ├── Sqs2ComponentAutoConfiguration.java │ │ │ │ ├── Sqs2ComponentConfiguration.java │ │ │ │ └── Sqs2ComponentConverter.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── sqs/ │ │ │ ├── BaseSqs.java │ │ │ ├── JmsStyleSelectorTest.java │ │ │ ├── SqsComponentTest.java │ │ │ ├── SqsDeadletterTest.java │ │ │ ├── SqsDelayedQueueTest.java │ │ │ ├── SqsOperationsTest.java │ │ │ └── SqsProducerAutoCreateQueueTest.java │ │ └── resources/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── aws2/ │ │ └── sqs/ │ │ └── policy.txt │ ├── camel-aws2-step-functions-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-step-functions.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── stepfunctions/ │ │ │ └── springboot/ │ │ │ ├── StepFunctions2ComponentAutoConfiguration.java │ │ │ ├── StepFunctions2ComponentConfiguration.java │ │ │ └── StepFunctions2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-sts-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-sts.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── sts/ │ │ │ └── springboot/ │ │ │ ├── STS2ComponentAutoConfiguration.java │ │ │ ├── STS2ComponentConfiguration.java │ │ │ └── STS2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-textract-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-textract.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── textract/ │ │ │ └── springboot/ │ │ │ ├── Textract2ComponentAutoConfiguration.java │ │ │ ├── Textract2ComponentConfiguration.java │ │ │ └── Textract2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-timestream-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-timestream.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── timestream/ │ │ │ └── springboot/ │ │ │ ├── Timestream2ComponentAutoConfiguration.java │ │ │ ├── Timestream2ComponentConfiguration.java │ │ │ └── Timestream2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-transcribe-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-transcribe.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── transcribe/ │ │ │ └── springboot/ │ │ │ ├── Transcribe2ComponentAutoConfiguration.java │ │ │ ├── Transcribe2ComponentConfiguration.java │ │ │ └── Transcribe2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-aws2-translate-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── aws2-translate.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── aws2/ │ │ │ └── translate/ │ │ │ └── springboot/ │ │ │ ├── Translate2ComponentAutoConfiguration.java │ │ │ ├── Translate2ComponentConfiguration.java │ │ │ └── Translate2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-cosmosdb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-cosmosdb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── cosmosdb/ │ │ │ └── springboot/ │ │ │ ├── CosmosDbComponentAutoConfiguration.java │ │ │ ├── CosmosDbComponentConfiguration.java │ │ │ └── CosmosDbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-eventgrid-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-eventgrid.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── eventgrid/ │ │ │ └── springboot/ │ │ │ ├── EventGridComponentAutoConfiguration.java │ │ │ ├── EventGridComponentConfiguration.java │ │ │ └── EventGridComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-eventhubs-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-eventhubs.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── eventhubs/ │ │ │ └── springboot/ │ │ │ ├── EventHubsComponentAutoConfiguration.java │ │ │ ├── EventHubsComponentConfiguration.java │ │ │ └── EventHubsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-files-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-files.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── azure/ │ │ │ └── springboot/ │ │ │ ├── FilesComponentAutoConfiguration.java │ │ │ └── FilesComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-functions-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-functions.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── functions/ │ │ │ └── springboot/ │ │ │ ├── FunctionsComponentAutoConfiguration.java │ │ │ ├── FunctionsComponentConfiguration.java │ │ │ └── FunctionsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-key-vault-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── azure-key-vault.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── azure/ │ │ │ │ └── key/ │ │ │ │ └── vault/ │ │ │ │ └── springboot/ │ │ │ │ ├── KeyVaultComponentAutoConfiguration.java │ │ │ │ ├── KeyVaultComponentConfiguration.java │ │ │ │ └── SpringBootAzureKeyVaultPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── key/ │ │ │ └── vault/ │ │ │ └── springboot/ │ │ │ └── EarlyResolvedPropertiesTest.java │ │ └── resources/ │ │ └── application.properties │ ├── camel-azure-servicebus-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-servicebus.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── servicebus/ │ │ │ └── springboot/ │ │ │ ├── ServiceBusComponentAutoConfiguration.java │ │ │ ├── ServiceBusComponentConfiguration.java │ │ │ └── ServiceBusComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-storage-blob-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-storage-blob.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── storage/ │ │ │ └── blob/ │ │ │ └── springboot/ │ │ │ ├── BlobComponentAutoConfiguration.java │ │ │ ├── BlobComponentConfiguration.java │ │ │ └── BlobComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-storage-datalake-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-storage-datalake.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── storage/ │ │ │ └── datalake/ │ │ │ └── springboot/ │ │ │ ├── DataLakeComponentAutoConfiguration.java │ │ │ ├── DataLakeComponentConfiguration.java │ │ │ └── DataLakeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-azure-storage-queue-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── azure-storage-queue.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── azure/ │ │ │ └── storage/ │ │ │ └── queue/ │ │ │ └── springboot/ │ │ │ ├── QueueComponentAutoConfiguration.java │ │ │ ├── QueueComponentConfiguration.java │ │ │ └── QueueComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-barcode-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── barcode.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── barcode/ │ │ │ └── springboot/ │ │ │ ├── BarcodeDataFormatAutoConfiguration.java │ │ │ └── BarcodeDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-base64-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── base64.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── base64/ │ │ │ └── springboot/ │ │ │ ├── Base64DataFormatAutoConfiguration.java │ │ │ └── Base64DataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bean-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bean.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ ├── bean/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── BeanComponentAutoConfiguration.java │ │ │ │ │ ├── BeanComponentConfiguration.java │ │ │ │ │ └── BeanComponentConverter.java │ │ │ │ └── beanclass/ │ │ │ │ └── springboot/ │ │ │ │ ├── ClassComponentAutoConfiguration.java │ │ │ │ ├── ClassComponentConfiguration.java │ │ │ │ └── ClassComponentConverter.java │ │ │ └── language/ │ │ │ └── bean/ │ │ │ └── springboot/ │ │ │ ├── BeanLanguageAutoConfiguration.java │ │ │ └── BeanLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bean-validator-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bean-validator.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── bean/ │ │ │ └── validator/ │ │ │ └── springboot/ │ │ │ ├── BeanValidatorComponentAutoConfiguration.java │ │ │ ├── BeanValidatorComponentConfiguration.java │ │ │ └── BeanValidatorComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-beanio-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── beanio.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── beanio/ │ │ │ └── springboot/ │ │ │ ├── BeanIODataFormatAutoConfiguration.java │ │ │ └── BeanIODataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bindy-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bindy.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── bindy/ │ │ │ ├── csv/ │ │ │ │ └── springboot/ │ │ │ │ ├── BindyCsvDataFormatAutoConfiguration.java │ │ │ │ └── BindyCsvDataFormatConfiguration.java │ │ │ ├── fixed/ │ │ │ │ └── springboot/ │ │ │ │ ├── BindyFixedLengthDataFormatAutoConfiguration.java │ │ │ │ └── BindyFixedLengthDataFormatConfiguration.java │ │ │ └── kvp/ │ │ │ └── springboot/ │ │ │ ├── BindyKeyValuePairDataFormatAutoConfiguration.java │ │ │ └── BindyKeyValuePairDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-bonita-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── bonita.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── bonita/ │ │ │ └── springboot/ │ │ │ ├── BonitaComponentAutoConfiguration.java │ │ │ └── BonitaComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-box-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── box.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── box/ │ │ │ └── springboot/ │ │ │ ├── BoxComponentAutoConfiguration.java │ │ │ ├── BoxComponentConfiguration.java │ │ │ └── BoxComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-braintree-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── braintree.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── braintree/ │ │ │ └── springboot/ │ │ │ ├── BraintreeComponentAutoConfiguration.java │ │ │ ├── BraintreeComponentConfiguration.java │ │ │ └── BraintreeComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-browse-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── browse.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── browse/ │ │ │ └── springboot/ │ │ │ ├── BrowseComponentAutoConfiguration.java │ │ │ └── BrowseComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-caffeine-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── caffeine.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── caffeine/ │ │ │ ├── cache/ │ │ │ │ └── springboot/ │ │ │ │ ├── CaffeineCacheComponentAutoConfiguration.java │ │ │ │ ├── CaffeineCacheComponentConfiguration.java │ │ │ │ └── CaffeineCacheComponentConverter.java │ │ │ └── load/ │ │ │ └── springboot/ │ │ │ ├── CaffeineLoadCacheComponentAutoConfiguration.java │ │ │ ├── CaffeineLoadCacheComponentConfiguration.java │ │ │ └── CaffeineLoadCacheComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cassandraql-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── cassandraql.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── cassandra/ │ │ │ │ └── springboot/ │ │ │ │ ├── CassandraComponentAutoConfiguration.java │ │ │ │ └── CassandraComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── cassandra/ │ │ │ │ ├── MockLoadBalancingPolicy.java │ │ │ │ ├── integration/ │ │ │ │ │ ├── CassandraComponentBeanRefIT.java │ │ │ │ │ ├── CassandraComponentConsumerIT.java │ │ │ │ │ ├── CassandraComponentProducerIT.java │ │ │ │ │ └── CassandraComponentProducerUnpreparedIT.java │ │ │ │ └── springboot/ │ │ │ │ └── BaseCassandra.java │ │ │ └── processor/ │ │ │ ├── aggregate/ │ │ │ │ ├── cassandra/ │ │ │ │ │ ├── CassandraAggregationIT.java │ │ │ │ │ ├── CassandraAggregationRepositoryIT.java │ │ │ │ │ ├── CassandraAggregationSerializedHeadersIT.java │ │ │ │ │ └── NamedCassandraAggregationRepositoryIT.java │ │ │ │ └── util/ │ │ │ │ └── HeaderDto.java │ │ │ └── idempotent/ │ │ │ └── cassandra/ │ │ │ ├── CassandraIdempotentIT.java │ │ │ ├── CassandraIdempotentRepositoryIT.java │ │ │ └── NamedCassandraIdempotentRepositoryIT.java │ │ └── resources/ │ │ ├── BasicDataSet.cql │ │ ├── IdempotentDataSet.cql │ │ ├── NamedIdempotentDataSet.cql │ │ └── initScript.cql │ ├── camel-cbor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cbor.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cbor/ │ │ │ └── springboot/ │ │ │ ├── CBORDataFormatAutoConfiguration.java │ │ │ └── CBORDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-chatscript-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── chatscript.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── chatscript/ │ │ │ └── springboot/ │ │ │ ├── ChatScriptComponentAutoConfiguration.java │ │ │ └── ChatScriptComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-chunk-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── chunk.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── chunk/ │ │ │ └── springboot/ │ │ │ ├── ChunkComponentAutoConfiguration.java │ │ │ └── ChunkComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-clickup-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── clickup.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── clickup/ │ │ │ └── springboot/ │ │ │ ├── ClickUpComponentAutoConfiguration.java │ │ │ └── ClickUpComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cloudevents-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-cm-sms-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cm-sms.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cm/ │ │ │ └── springboot/ │ │ │ ├── CMComponentAutoConfiguration.java │ │ │ └── CMComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-coap-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── coap.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── coap/ │ │ │ └── springboot/ │ │ │ ├── CoAPComponentAutoConfiguration.java │ │ │ ├── CoAPComponentConfiguration.java │ │ │ └── CoAPComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cometd-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cometd.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cometd/ │ │ │ └── springboot/ │ │ │ ├── CometdComponentAutoConfiguration.java │ │ │ ├── CometdComponentConfiguration.java │ │ │ └── CometdComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-console-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-consul-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── consul-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── consul/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── ConsulClusterServiceAutoConfiguration.java │ │ │ │ └── ConsulClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── consul/ │ │ │ └── springboot/ │ │ │ └── cluster/ │ │ │ └── ConsulClusterServiceAutoConfigurationTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-consul-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── consul.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── consul/ │ │ │ └── springboot/ │ │ │ ├── ConsulComponentAutoConfiguration.java │ │ │ ├── ConsulComponentConfiguration.java │ │ │ └── ConsulComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-controlbus-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── controlbus.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── controlbus/ │ │ │ └── springboot/ │ │ │ ├── ControlBusComponentAutoConfiguration.java │ │ │ └── ControlBusComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-core-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── core.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── language/ │ │ │ │ ├── constant/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── ConstantLanguageAutoConfiguration.java │ │ │ │ │ └── ConstantLanguageConfiguration.java │ │ │ │ ├── csimple/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── CSimpleLanguageAutoConfiguration.java │ │ │ │ │ └── CSimpleLanguageConfiguration.java │ │ │ │ ├── header/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── HeaderLanguageAutoConfiguration.java │ │ │ │ │ └── HeaderLanguageConfiguration.java │ │ │ │ ├── property/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── ExchangePropertyLanguageAutoConfiguration.java │ │ │ │ │ └── ExchangePropertyLanguageConfiguration.java │ │ │ │ ├── ref/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── RefLanguageAutoConfiguration.java │ │ │ │ │ └── RefLanguageConfiguration.java │ │ │ │ ├── simple/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── FileLanguageAutoConfiguration.java │ │ │ │ │ ├── FileLanguageConfiguration.java │ │ │ │ │ ├── SimpleLanguageAutoConfiguration.java │ │ │ │ │ └── SimpleLanguageConfiguration.java │ │ │ │ ├── tokenizer/ │ │ │ │ │ └── springboot/ │ │ │ │ │ ├── TokenizeLanguageAutoConfiguration.java │ │ │ │ │ └── TokenizeLanguageConfiguration.java │ │ │ │ └── variable/ │ │ │ │ └── springboot/ │ │ │ │ ├── VariableLanguageAutoConfiguration.java │ │ │ │ └── VariableLanguageConfiguration.java │ │ │ └── model/ │ │ │ ├── cloud/ │ │ │ │ └── springboot/ │ │ │ │ ├── ConsulServiceCallServiceDiscoveryConfigurationCommon.java │ │ │ │ ├── ConsulServiceCallServiceDiscoveryConfigurationProperties.java │ │ │ │ ├── DnsServiceCallServiceDiscoveryConfigurationCommon.java │ │ │ │ ├── DnsServiceCallServiceDiscoveryConfigurationProperties.java │ │ │ │ ├── KubernetesServiceCallServiceDiscoveryConfigurationCommon.java │ │ │ │ └── KubernetesServiceCallServiceDiscoveryConfigurationProperties.java │ │ │ ├── rest/ │ │ │ │ └── springboot/ │ │ │ │ ├── RestConfigurationDefinitionAutoConfiguration.java │ │ │ │ └── RestConfigurationDefinitionProperties.java │ │ │ └── springboot/ │ │ │ ├── Resilience4jConfigurationDefinitionCommon.java │ │ │ └── Resilience4jConfigurationDefinitionProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-couchbase-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── couchbase.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── couchbase/ │ │ │ └── springboot/ │ │ │ ├── CouchbaseComponentAutoConfiguration.java │ │ │ └── CouchbaseComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-couchdb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── couchdb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── couchdb/ │ │ │ └── springboot/ │ │ │ ├── CouchDbComponentAutoConfiguration.java │ │ │ └── CouchDbComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cron-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── cron.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── cron/ │ │ │ │ └── springboot/ │ │ │ │ ├── CronComponentAutoConfiguration.java │ │ │ │ └── CronComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── cron/ │ │ └── springboot/ │ │ ├── CronLoaderTest.java │ │ └── DummyCamelCronService.java │ ├── camel-crypto-pgp-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── crypto-pgp.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── converter/ │ │ │ └── crypto/ │ │ │ └── springboot/ │ │ │ ├── PGPDataFormatAutoConfiguration.java │ │ │ └── PGPDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-crypto-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── crypto.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── crypto/ │ │ │ │ └── springboot/ │ │ │ │ ├── DigitalSignatureComponentAutoConfiguration.java │ │ │ │ ├── DigitalSignatureComponentConfiguration.java │ │ │ │ └── DigitalSignatureComponentConverter.java │ │ │ └── converter/ │ │ │ └── crypto/ │ │ │ └── springboot/ │ │ │ ├── CryptoDataFormatAutoConfiguration.java │ │ │ ├── CryptoDataFormatConfiguration.java │ │ │ └── CryptoDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-csimple-joor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── csimple-joor.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-csv-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── csv.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── dataformat/ │ │ │ └── csv/ │ │ │ └── springboot/ │ │ │ ├── CsvDataFormatAutoConfiguration.java │ │ │ └── CsvDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cxf-rest-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cxf-rest.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cxf/ │ │ │ └── jaxrs/ │ │ │ └── springboot/ │ │ │ ├── CxfRsComponentAutoConfiguration.java │ │ │ ├── CxfRsComponentConfiguration.java │ │ │ └── CxfRsComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cxf-soap-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cxf-soap.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── cxf/ │ │ │ └── jaxws/ │ │ │ └── springboot/ │ │ │ ├── CxfComponentAutoConfiguration.java │ │ │ ├── CxfComponentConfiguration.java │ │ │ └── CxfComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-cxf-transport-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── cxf-transport.json │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ ├── camel-cyberark-vault-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── cyberark-vault.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── cyberark/ │ │ │ │ └── vault/ │ │ │ │ └── springboot/ │ │ │ │ ├── CyberArkVaultComponentAutoConfiguration.java │ │ │ │ ├── CyberArkVaultComponentConfiguration.java │ │ │ │ ├── CyberArkVaultComponentConverter.java │ │ │ │ └── SpringBootCyberArkVaultPropertiesParser.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── spring/ │ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ │ └── spring.factories │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── cyberark/ │ │ └── vault/ │ │ └── springboot/ │ │ └── EarlyResolvedPropertiesTest.java │ ├── camel-dapr-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dapr.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dapr/ │ │ │ └── springboot/ │ │ │ ├── DaprComponentAutoConfiguration.java │ │ │ ├── DaprComponentConfiguration.java │ │ │ └── DaprComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dataformat-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dataformat.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dataformat/ │ │ │ └── springboot/ │ │ │ ├── DataFormatComponentAutoConfiguration.java │ │ │ └── DataFormatComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dataset-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dataset.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dataset/ │ │ │ └── springboot/ │ │ │ ├── DataSetComponentAutoConfiguration.java │ │ │ ├── DataSetComponentConfiguration.java │ │ │ ├── DataSetComponentConverter.java │ │ │ ├── DataSetTestComponentAutoConfiguration.java │ │ │ ├── DataSetTestComponentConfiguration.java │ │ │ └── DataSetTestComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-datasonnet-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── datasonnet.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── language/ │ │ │ └── datasonnet/ │ │ │ └── springboot/ │ │ │ ├── DatasonnetLanguageAutoConfiguration.java │ │ │ └── DatasonnetLanguageConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-db2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-db2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── db2/ │ │ │ └── springboot/ │ │ │ ├── DebeziumDb2ComponentAutoConfiguration.java │ │ │ ├── DebeziumDb2ComponentConfiguration.java │ │ │ └── DebeziumDb2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-mongodb-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-mongodb.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── mongodb/ │ │ │ └── springboot/ │ │ │ ├── DebeziumMongodbComponentAutoConfiguration.java │ │ │ ├── DebeziumMongodbComponentConfiguration.java │ │ │ └── DebeziumMongodbComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-mysql-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-mysql.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── mysql/ │ │ │ └── springboot/ │ │ │ ├── DebeziumMySqlComponentAutoConfiguration.java │ │ │ ├── DebeziumMySqlComponentConfiguration.java │ │ │ └── DebeziumMySqlComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-oracle-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-oracle.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── oracle/ │ │ │ └── springboot/ │ │ │ ├── DebeziumOracleComponentAutoConfiguration.java │ │ │ ├── DebeziumOracleComponentConfiguration.java │ │ │ └── DebeziumOracleComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-postgres-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-postgres.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── postgres/ │ │ │ └── springboot/ │ │ │ ├── DebeziumPostgresComponentAutoConfiguration.java │ │ │ ├── DebeziumPostgresComponentConfiguration.java │ │ │ └── DebeziumPostgresComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debezium-sqlserver-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debezium-sqlserver.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── debezium/ │ │ │ └── sqlserver/ │ │ │ └── springboot/ │ │ │ ├── DebeziumSqlserverComponentAutoConfiguration.java │ │ │ ├── DebeziumSqlserverComponentConfiguration.java │ │ │ └── DebeziumSqlserverComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-debug-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── debug.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── spring/ │ │ │ └── boot/ │ │ │ └── debug/ │ │ │ ├── CamelDebugAutoConfiguration.java │ │ │ └── CamelDebugConfigurationProperties.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dfdl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dfdl.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── dfdl/ │ │ │ │ └── springboot/ │ │ │ │ ├── DfdlComponentAutoConfiguration.java │ │ │ │ └── DfdlComponentConfiguration.java │ │ │ └── dataformat/ │ │ │ └── dfdl/ │ │ │ └── springboot/ │ │ │ ├── DfdlDataFormatAutoConfiguration.java │ │ │ └── DfdlDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dhis2-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dhis2.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dhis2/ │ │ │ └── springboot/ │ │ │ ├── Dhis2ComponentAutoConfiguration.java │ │ │ ├── Dhis2ComponentConfiguration.java │ │ │ └── Dhis2ComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-digitalocean-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── digitalocean.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── digitalocean/ │ │ │ └── springboot/ │ │ │ ├── DigitalOceanComponentAutoConfiguration.java │ │ │ └── DigitalOceanComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-direct-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── direct.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── direct/ │ │ │ └── springboot/ │ │ │ ├── DirectComponentAutoConfiguration.java │ │ │ └── DirectComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-disruptor-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── disruptor.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── disruptor/ │ │ │ ├── springboot/ │ │ │ │ ├── DisruptorComponentAutoConfiguration.java │ │ │ │ ├── DisruptorComponentConfiguration.java │ │ │ │ └── DisruptorComponentConverter.java │ │ │ └── vm/ │ │ │ └── springboot/ │ │ │ ├── DisruptorVmComponentAutoConfiguration.java │ │ │ ├── DisruptorVmComponentConfiguration.java │ │ │ └── DisruptorVmComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-djl-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── djl.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── djl/ │ │ │ └── springboot/ │ │ │ ├── DJLComponentAutoConfiguration.java │ │ │ └── DJLComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dns-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dns.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dns/ │ │ │ └── springboot/ │ │ │ ├── DnsComponentAutoConfiguration.java │ │ │ └── DnsComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-docker-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── docker.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── docker/ │ │ │ └── springboot/ │ │ │ ├── DockerComponentAutoConfiguration.java │ │ │ ├── DockerComponentConfiguration.java │ │ │ └── DockerComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-docling-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── docling.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── docling/ │ │ │ └── springboot/ │ │ │ ├── DoclingComponentAutoConfiguration.java │ │ │ ├── DoclingComponentConfiguration.java │ │ │ └── DoclingComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-drill-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── drill.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── drill/ │ │ │ └── springboot/ │ │ │ ├── DrillComponentAutoConfiguration.java │ │ │ └── DrillComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dropbox-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dropbox.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dropbox/ │ │ │ └── springboot/ │ │ │ ├── DropboxComponentAutoConfiguration.java │ │ │ └── DropboxComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-dynamic-router-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── dynamic-router.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── dynamicrouter/ │ │ │ ├── control/ │ │ │ │ └── springboot/ │ │ │ │ ├── DynamicRouterControlComponentAutoConfiguration.java │ │ │ │ └── DynamicRouterControlComponentConfiguration.java │ │ │ └── routing/ │ │ │ └── springboot/ │ │ │ ├── DynamicRouterComponentAutoConfiguration.java │ │ │ └── DynamicRouterComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-ehcache-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── ehcache.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── ehcache/ │ │ │ │ └── springboot/ │ │ │ │ ├── EhcacheComponentAutoConfiguration.java │ │ │ │ ├── EhcacheComponentConfiguration.java │ │ │ │ ├── EhcacheComponentConverter.java │ │ │ │ └── customizer/ │ │ │ │ ├── CacheConfigurationCustomizer.java │ │ │ │ ├── CacheConfigurationCustomizerConfiguration.java │ │ │ │ ├── CacheManagerCustomizer.java │ │ │ │ └── CacheManagerCustomizerConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── ehcache/ │ │ │ └── springboot/ │ │ │ └── customizer/ │ │ │ ├── CacheConfigurationCustomizerEnabledAppendTest.java │ │ │ ├── CacheConfigurationCustomizerEnabledReplaceTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledGlobalTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledOnComponentTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledTest.java │ │ │ ├── CacheConfigurationCustomizerNotEnabledTestBase.java │ │ │ ├── CacheManagerCustomizerEnabledOnComponentTest.java │ │ │ ├── CacheManagerCustomizerEnabledTest.java │ │ │ ├── CacheManagerCustomizerEnabledTestBase.java │ │ │ ├── CacheManagerCustomizerNoOverrideTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledGlobalTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledOnComponentTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledTest.java │ │ │ ├── CacheManagerCustomizerNotEnabledTestBase.java │ │ │ ├── CacheManagerCustomizerOverrideTest.java │ │ │ ├── CacheManagerCustomizerTest.java │ │ │ └── CacheManagerCustomizerWithoutCacheManagerTest.java │ │ └── resources/ │ │ ├── application.properties │ │ └── logback.xml │ ├── camel-elasticsearch-rest-client-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── elasticsearch-rest-client.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── elasticsearch/ │ │ │ └── rest/ │ │ │ └── client/ │ │ │ └── springboot/ │ │ │ ├── ElasticsearchRestClientComponentAutoConfiguration.java │ │ │ ├── ElasticsearchRestClientComponentConfiguration.java │ │ │ └── ElasticsearchRestClientComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-elasticsearch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── elasticsearch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── es/ │ │ │ └── springboot/ │ │ │ ├── ElasticsearchComponentAutoConfiguration.java │ │ │ ├── ElasticsearchComponentConfiguration.java │ │ │ └── ElasticsearchComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-exec-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── exec.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── exec/ │ │ │ └── springboot/ │ │ │ ├── ExecComponentAutoConfiguration.java │ │ │ ├── ExecComponentConfiguration.java │ │ │ └── ExecComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fastjson-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── fastjson.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── fastjson/ │ │ │ └── springboot/ │ │ │ ├── FastjsonDataFormatAutoConfiguration.java │ │ │ └── FastjsonDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fhir-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── fhir.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── fhir/ │ │ │ │ └── springboot/ │ │ │ │ ├── FhirComponentAutoConfiguration.java │ │ │ │ ├── FhirComponentConfiguration.java │ │ │ │ ├── FhirComponentConverter.java │ │ │ │ ├── FhirJsonDataFormatAutoConfiguration.java │ │ │ │ ├── FhirJsonDataFormatConfiguration.java │ │ │ │ ├── FhirXmlDataFormatAutoConfiguration.java │ │ │ │ └── FhirXmlDataFormatConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── fhir/ │ │ ├── AbstractFhirTestSupport.java │ │ ├── CustomFhirConfiguration.java │ │ ├── CustomNoFhirServerUrlCamelContext.java │ │ ├── DefaultCamelContext.java │ │ ├── FhirCapabilitiesIT.java │ │ ├── FhirConfigurationIT.java │ │ ├── FhirCreateIT.java │ │ ├── FhirCustomClientConfigurationIT.java │ │ ├── FhirDeleteIT.java │ │ ├── FhirExtraParametersIT.java │ │ ├── FhirHistoryIT.java │ │ ├── FhirLoadPageIT.java │ │ ├── FhirMetaIT.java │ │ ├── FhirOperationIT.java │ │ ├── FhirPatchIT.java │ │ ├── FhirReadIT.java │ │ ├── FhirSearchIT.java │ │ ├── FhirServer.java │ │ ├── FhirSimpleIT.java │ │ ├── FhirTransactionIT.java │ │ ├── FhirUpdateIT.java │ │ ├── FhirValidateIT.java │ │ ├── Hl7v2PatientToFhirPatientIT.java │ │ ├── PatientProcessor.java │ │ └── dataformat/ │ │ ├── FhirJsonDataFormatTest.java │ │ ├── FhirJsonDataformatErrorHandlerTest.java │ │ ├── FhirXmlDataFormatTest.java │ │ └── FhirXmlDataformatErrorHandlerTest.java │ ├── camel-file-cluster-service-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── file-cluster-service.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── file/ │ │ │ │ └── springboot/ │ │ │ │ └── cluster/ │ │ │ │ ├── FileLockClusterServiceAutoConfiguration.java │ │ │ │ └── FileLockClusterServiceConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── springboot/ │ │ │ └── cluster/ │ │ │ └── FileClusterServiceAutoConfigurationTest.java │ │ └── resources/ │ │ └── logback.xml │ ├── camel-file-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ ├── main/ │ │ │ ├── docs/ │ │ │ │ └── file.json │ │ │ ├── java/ │ │ │ │ └── org/ │ │ │ │ └── apache/ │ │ │ │ └── camel/ │ │ │ │ └── component/ │ │ │ │ └── file/ │ │ │ │ └── springboot/ │ │ │ │ ├── FileComponentAutoConfiguration.java │ │ │ │ └── FileComponentConfiguration.java │ │ │ └── resources/ │ │ │ └── META-INF/ │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ └── spring/ │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── test/ │ │ └── java/ │ │ └── org/ │ │ └── apache/ │ │ └── camel/ │ │ └── component/ │ │ └── file/ │ │ ├── AntPathMatcherGenericFileFilterTest.java │ │ ├── BaseFile.java │ │ ├── FileBeginFailureOneTimeTest.java │ │ ├── FileBridgeErrorHandlerTest.java │ │ ├── FileBrowsableEndpointTest.java │ │ ├── FileChangedReadLockMarkerFileFalseTest.java │ │ ├── FileConsumerAbsolutePathDefaultMoveTest.java │ │ ├── FileConsumerBatchTest.java │ │ ├── FileConsumerFileExpressionTest.java │ │ ├── FileConsumerFileFilterTest.java │ │ ├── FileConsumerIdempotentTest.java │ │ ├── FileConsumerMoveAndMoveFailureTest.java │ │ ├── FileConsumerPreMoveTest.java │ │ ├── FileIdempotentReadLockWithFileIdempRepoTest.java │ │ ├── FileIdempotentReadSameFileAgainTest.java │ │ ├── FileProduceTempPrefixTest.java │ │ ├── FileProducerCharsetUTFtoISOTest.java │ │ ├── FileProducerExpressionTest.java │ │ ├── FileProducerFileExistOverrideTest.java │ │ ├── FileProducerOverruleToDifferentFolderTest.java │ │ ├── FileProducerRecursivelayToDifferentFolderTest.java │ │ ├── FileProducerStreamTest.java │ │ ├── FileSorterRefTest.java │ │ ├── FileToFileWithFlattenTest.java │ │ ├── FilerConsumerDoneFileNamePrefixTest.java │ │ ├── FilerProducerDoneFileNameRouteTest.java │ │ └── FromFileMoveFileIfProcessFailsTest.java │ ├── camel-file-watch-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── file-watch.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── file/ │ │ │ └── watch/ │ │ │ └── springboot/ │ │ │ ├── FileWatchComponentAutoConfiguration.java │ │ │ ├── FileWatchComponentConfiguration.java │ │ │ └── FileWatchComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-flatpack-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── flatpack.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ ├── component/ │ │ │ │ └── flatpack/ │ │ │ │ └── springboot/ │ │ │ │ ├── FlatpackComponentAutoConfiguration.java │ │ │ │ └── FlatpackComponentConfiguration.java │ │ │ └── dataformat/ │ │ │ └── flatpack/ │ │ │ └── springboot/ │ │ │ ├── FlatpackDataFormatAutoConfiguration.java │ │ │ ├── FlatpackDataFormatConfiguration.java │ │ │ └── FlatpackDataFormatConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-flink-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── flink.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── flink/ │ │ │ └── springboot/ │ │ │ ├── FlinkComponentAutoConfiguration.java │ │ │ ├── FlinkComponentConfiguration.java │ │ │ └── FlinkComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-flowable-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── flowable.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── flowable/ │ │ │ └── springboot/ │ │ │ ├── FlowableComponentAutoConfiguration.java │ │ │ └── FlowableComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fop-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── fop.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── fop/ │ │ │ └── springboot/ │ │ │ ├── FopComponentAutoConfiguration.java │ │ │ └── FopComponentConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-fory-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── fory.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── fory/ │ │ │ └── springboot/ │ │ │ ├── ForyDataFormatAutoConfiguration.java │ │ │ └── ForyDataFormatConfiguration.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── spring/ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ ├── camel-freemarker-starter/ │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── docs/ │ │ │ └── freemarker.json │ │ ├── java/ │ │ │ └── org/ │ │ │ └── apache/ │ │ │ └── camel/ │ │ │ └── component/ │ │ │ └── freemarker/ │ │ │ └── springboot/ │ │ │ ├── FreemarkerComponentAutoConfiguration.java │ │ │ ├── FreemarkerComponentConfiguration.java │ │ │ └── FreemarkerComponentConverter.java │ │ └── resources/ │ │ └── META-INF/ │ │
Showing preview only (2,280K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (22435 symbols across 2518 files)
FILE: catalog/camel-catalog-provider-springboot/src/main/java/org/apache/camel/springboot/catalog/SpringBootRuntimeProvider.java
class SpringBootRuntimeProvider (line 33) | public class SpringBootRuntimeProvider implements RuntimeProvider {
method getCamelCatalog (line 52) | @Override
method setCamelCatalog (line 57) | @Override
method getProviderName (line 62) | @Override
method getProviderGroupId (line 67) | @Override
method getProviderArtifactId (line 72) | @Override
method getComponentJSonSchemaDirectory (line 77) | @Override
method getDataFormatJSonSchemaDirectory (line 82) | @Override
method getLanguageJSonSchemaDirectory (line 87) | @Override
method getTransformerJSonSchemaDirectory (line 92) | @Override
method getDevConsoleJSonSchemaDirectory (line 97) | @Override
method getOtherJSonSchemaDirectory (line 102) | @Override
method getPojoBeanJSonSchemaDirectory (line 107) | @Override
method findComponentNames (line 112) | @Override
method findDataFormatNames (line 117) | @Override
method findLanguageNames (line 122) | @Override
method findTransformerNames (line 127) | @Override
method findDevConsoleNames (line 132) | @Override
method findOtherNames (line 137) | @Override
method findBeansNames (line 142) | @Override
method findNames (line 147) | private List<String> findNames(String pathToPropertyCatalogDescriptor) {
FILE: catalog/camel-catalog-provider-springboot/src/test/java/org/apache/camel/springboot/catalog/SpringBootRuntimeProviderTest.java
class SpringBootRuntimeProviderTest (line 31) | public class SpringBootRuntimeProviderTest {
method createCamelCatalog (line 35) | @BeforeAll
method testGetVersion (line 41) | @Test
method testProviderName (line 51) | @Test
method testFindComponentNames (line 56) | @Test
method testFindDataFormatNames (line 70) | @Test
method testFindLanguageNames (line 82) | @Test
method testFindOtherNames (line 93) | @Test
method testComponentArtifactId (line 105) | @Test
method testDataFormatArtifactId (line 113) | @Test
method testLanguageArtifactId (line 121) | @Test
method testOtherArtifactId (line 129) | @Test
FILE: components-starter/camel-activemq-starter/src/main/java/org/apache/camel/component/activemq/springboot/ActiveMQComponentAutoConfiguration.java
class ActiveMQComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, ActiveMQCompon...
method ActiveMQComponentAutoConfiguration (line 48) | public ActiveMQComponentAutoConfiguration(
method configureActiveMQComponent (line 55) | @Lazy
FILE: components-starter/camel-activemq-starter/src/main/java/org/apache/camel/component/activemq/springboot/ActiveMQComponentConfiguration.java
class ActiveMQComponentConfiguration (line 39) | @ConfigurationProperties(prefix = "camel.component.activemq")
method getBrokerUrl (line 921) | public String getBrokerUrl() {
method setBrokerUrl (line 925) | public void setBrokerUrl(String brokerUrl) {
method getClientId (line 929) | public String getClientId() {
method setClientId (line 933) | public void setClientId(String clientId) {
method getConnectionFactory (line 937) | public ConnectionFactory getConnectionFactory() {
method setConnectionFactory (line 941) | public void setConnectionFactory(ConnectionFactory connectionFactory) {
method getDisableReplyTo (line 945) | public Boolean getDisableReplyTo() {
method setDisableReplyTo (line 949) | public void setDisableReplyTo(Boolean disableReplyTo) {
method getDurableSubscriptionName (line 953) | public String getDurableSubscriptionName() {
method setDurableSubscriptionName (line 957) | public void setDurableSubscriptionName(String durableSubscriptionName) {
method getEmbedded (line 961) | public Boolean getEmbedded() {
method setEmbedded (line 965) | public void setEmbedded(Boolean embedded) {
method getJmsMessageType (line 969) | public JmsMessageType getJmsMessageType() {
method setJmsMessageType (line 973) | public void setJmsMessageType(JmsMessageType jmsMessageType) {
method getReplyTo (line 977) | public String getReplyTo() {
method setReplyTo (line 981) | public void setReplyTo(String replyTo) {
method getTestConnectionOnStartup (line 985) | public Boolean getTestConnectionOnStartup() {
method setTestConnectionOnStartup (line 989) | public void setTestConnectionOnStartup(Boolean testConnectionOnStartup) {
method getUsePooledConnection (line 993) | public Boolean getUsePooledConnection() {
method setUsePooledConnection (line 997) | public void setUsePooledConnection(Boolean usePooledConnection) {
method getUseSingleConnection (line 1001) | public Boolean getUseSingleConnection() {
method setUseSingleConnection (line 1005) | public void setUseSingleConnection(Boolean useSingleConnection) {
method getAcknowledgementModeName (line 1009) | public String getAcknowledgementModeName() {
method setAcknowledgementModeName (line 1013) | public void setAcknowledgementModeName(String acknowledgementModeName) {
method getArtemisConsumerPriority (line 1017) | public Integer getArtemisConsumerPriority() {
method setArtemisConsumerPriority (line 1021) | public void setArtemisConsumerPriority(Integer artemisConsumerPriority) {
method getAsyncConsumer (line 1025) | public Boolean getAsyncConsumer() {
method setAsyncConsumer (line 1029) | public void setAsyncConsumer(Boolean asyncConsumer) {
method getAutoStartup (line 1033) | public Boolean getAutoStartup() {
method setAutoStartup (line 1037) | public void setAutoStartup(Boolean autoStartup) {
method getCacheLevel (line 1041) | public Integer getCacheLevel() {
method setCacheLevel (line 1045) | public void setCacheLevel(Integer cacheLevel) {
method getCacheLevelName (line 1049) | public String getCacheLevelName() {
method setCacheLevelName (line 1053) | public void setCacheLevelName(String cacheLevelName) {
method getConcurrentConsumers (line 1057) | public Integer getConcurrentConsumers() {
method setConcurrentConsumers (line 1061) | public void setConcurrentConsumers(Integer concurrentConsumers) {
method getMaxConcurrentConsumers (line 1065) | public Integer getMaxConcurrentConsumers() {
method setMaxConcurrentConsumers (line 1069) | public void setMaxConcurrentConsumers(Integer maxConcurrentConsumers) {
method getReplyToDeliveryPersistent (line 1073) | public Boolean getReplyToDeliveryPersistent() {
method setReplyToDeliveryPersistent (line 1077) | public void setReplyToDeliveryPersistent(Boolean replyToDeliveryPersis...
method getSelector (line 1081) | public String getSelector() {
method setSelector (line 1085) | public void setSelector(String selector) {
method getSubscriptionDurable (line 1089) | public Boolean getSubscriptionDurable() {
method setSubscriptionDurable (line 1093) | public void setSubscriptionDurable(Boolean subscriptionDurable) {
method getSubscriptionName (line 1097) | public String getSubscriptionName() {
method setSubscriptionName (line 1101) | public void setSubscriptionName(String subscriptionName) {
method getSubscriptionShared (line 1105) | public Boolean getSubscriptionShared() {
method setSubscriptionShared (line 1109) | public void setSubscriptionShared(Boolean subscriptionShared) {
method getAcceptMessagesWhileStopping (line 1113) | public Boolean getAcceptMessagesWhileStopping() {
method setAcceptMessagesWhileStopping (line 1117) | public void setAcceptMessagesWhileStopping(
method getAllowReplyManagerQuickStop (line 1122) | public Boolean getAllowReplyManagerQuickStop() {
method setAllowReplyManagerQuickStop (line 1126) | public void setAllowReplyManagerQuickStop(Boolean allowReplyManagerQui...
method getConsumerType (line 1130) | public ConsumerType getConsumerType() {
method setConsumerType (line 1134) | public void setConsumerType(ConsumerType consumerType) {
method getDefaultTaskExecutorType (line 1138) | public DefaultTaskExecutorType getDefaultTaskExecutorType() {
method setDefaultTaskExecutorType (line 1142) | public void setDefaultTaskExecutorType(
method getEagerLoadingOfProperties (line 1147) | public Boolean getEagerLoadingOfProperties() {
method setEagerLoadingOfProperties (line 1151) | public void setEagerLoadingOfProperties(Boolean eagerLoadingOfProperti...
method getEagerPoisonBody (line 1155) | public String getEagerPoisonBody() {
method setEagerPoisonBody (line 1159) | public void setEagerPoisonBody(String eagerPoisonBody) {
method getExposeListenerSession (line 1163) | public Boolean getExposeListenerSession() {
method setExposeListenerSession (line 1167) | public void setExposeListenerSession(Boolean exposeListenerSession) {
method getReplyToConsumerType (line 1171) | public ConsumerType getReplyToConsumerType() {
method setReplyToConsumerType (line 1175) | public void setReplyToConsumerType(ConsumerType replyToConsumerType) {
method getReplyToSameDestinationAllowed (line 1179) | public Boolean getReplyToSameDestinationAllowed() {
method setReplyToSameDestinationAllowed (line 1183) | public void setReplyToSameDestinationAllowed(
method getTaskExecutor (line 1188) | public TaskExecutor getTaskExecutor() {
method setTaskExecutor (line 1192) | public void setTaskExecutor(TaskExecutor taskExecutor) {
method getDeliveryDelay (line 1196) | public Long getDeliveryDelay() {
method setDeliveryDelay (line 1200) | public void setDeliveryDelay(Long deliveryDelay) {
method getDeliveryMode (line 1204) | public Integer getDeliveryMode() {
method setDeliveryMode (line 1208) | public void setDeliveryMode(Integer deliveryMode) {
method getDeliveryPersistent (line 1212) | public Boolean getDeliveryPersistent() {
method setDeliveryPersistent (line 1216) | public void setDeliveryPersistent(Boolean deliveryPersistent) {
method getExplicitQosEnabled (line 1220) | public Boolean getExplicitQosEnabled() {
method setExplicitQosEnabled (line 1224) | public void setExplicitQosEnabled(Boolean explicitQosEnabled) {
method getFormatDateHeadersToIso8601 (line 1228) | public Boolean getFormatDateHeadersToIso8601() {
method setFormatDateHeadersToIso8601 (line 1232) | public void setFormatDateHeadersToIso8601(Boolean formatDateHeadersToI...
method getLazyStartProducer (line 1236) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 1240) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getPreserveMessageQos (line 1244) | public Boolean getPreserveMessageQos() {
method setPreserveMessageQos (line 1248) | public void setPreserveMessageQos(Boolean preserveMessageQos) {
method getPriority (line 1252) | public Integer getPriority() {
method setPriority (line 1256) | public void setPriority(Integer priority) {
method getReplyToConcurrentConsumers (line 1260) | public Integer getReplyToConcurrentConsumers() {
method setReplyToConcurrentConsumers (line 1264) | public void setReplyToConcurrentConsumers(Integer replyToConcurrentCon...
method getReplyToMaxConcurrentConsumers (line 1268) | public Integer getReplyToMaxConcurrentConsumers() {
method setReplyToMaxConcurrentConsumers (line 1272) | public void setReplyToMaxConcurrentConsumers(
method getReplyToOnTimeoutMaxConcurrentConsumers (line 1277) | public Integer getReplyToOnTimeoutMaxConcurrentConsumers() {
method setReplyToOnTimeoutMaxConcurrentConsumers (line 1281) | public void setReplyToOnTimeoutMaxConcurrentConsumers(
method getReplyToOverride (line 1286) | public String getReplyToOverride() {
method setReplyToOverride (line 1290) | public void setReplyToOverride(String replyToOverride) {
method getReplyToType (line 1294) | public ReplyToType getReplyToType() {
method setReplyToType (line 1298) | public void setReplyToType(ReplyToType replyToType) {
method getRequestTimeout (line 1302) | public Long getRequestTimeout() {
method setRequestTimeout (line 1306) | public void setRequestTimeout(Long requestTimeout) {
method getTimeToLive (line 1310) | public Long getTimeToLive() {
method setTimeToLive (line 1314) | public void setTimeToLive(Long timeToLive) {
method getAllowAdditionalHeaders (line 1318) | public String getAllowAdditionalHeaders() {
method setAllowAdditionalHeaders (line 1322) | public void setAllowAdditionalHeaders(String allowAdditionalHeaders) {
method getAllowNullBody (line 1326) | public Boolean getAllowNullBody() {
method setAllowNullBody (line 1330) | public void setAllowNullBody(Boolean allowNullBody) {
method getAlwaysCopyMessage (line 1334) | public Boolean getAlwaysCopyMessage() {
method setAlwaysCopyMessage (line 1338) | public void setAlwaysCopyMessage(Boolean alwaysCopyMessage) {
method getCorrelationProperty (line 1342) | public String getCorrelationProperty() {
method setCorrelationProperty (line 1346) | public void setCorrelationProperty(String correlationProperty) {
method getDisableTimeToLive (line 1350) | public Boolean getDisableTimeToLive() {
method setDisableTimeToLive (line 1354) | public void setDisableTimeToLive(Boolean disableTimeToLive) {
method getForceSendOriginalMessage (line 1358) | public Boolean getForceSendOriginalMessage() {
method setForceSendOriginalMessage (line 1362) | public void setForceSendOriginalMessage(Boolean forceSendOriginalMessa...
method getIncludeSentJmsMessageId (line 1366) | public Boolean getIncludeSentJmsMessageId() {
method setIncludeSentJmsMessageId (line 1370) | public void setIncludeSentJmsMessageId(Boolean includeSentJmsMessageId) {
method getReplyCorrelationProperty (line 1374) | public String getReplyCorrelationProperty() {
method setReplyCorrelationProperty (line 1378) | public void setReplyCorrelationProperty(String replyCorrelationPropert...
method getReplyToCacheLevelName (line 1382) | public String getReplyToCacheLevelName() {
method setReplyToCacheLevelName (line 1386) | public void setReplyToCacheLevelName(String replyToCacheLevelName) {
method getReplyToDestinationSelectorName (line 1390) | public String getReplyToDestinationSelectorName() {
method setReplyToDestinationSelectorName (line 1394) | public void setReplyToDestinationSelectorName(
method getStreamMessageTypeEnabled (line 1399) | public Boolean getStreamMessageTypeEnabled() {
method setStreamMessageTypeEnabled (line 1403) | public void setStreamMessageTypeEnabled(Boolean streamMessageTypeEnabl...
method getAllowAutoWiredConnectionFactory (line 1407) | public Boolean getAllowAutoWiredConnectionFactory() {
method setAllowAutoWiredConnectionFactory (line 1411) | public void setAllowAutoWiredConnectionFactory(
method getAllowAutoWiredDestinationResolver (line 1416) | public Boolean getAllowAutoWiredDestinationResolver() {
method setAllowAutoWiredDestinationResolver (line 1420) | public void setAllowAutoWiredDestinationResolver(
method getAllowSerializedHeaders (line 1425) | public Boolean getAllowSerializedHeaders() {
method setAllowSerializedHeaders (line 1429) | public void setAllowSerializedHeaders(Boolean allowSerializedHeaders) {
method getArtemisStreamingEnabled (line 1433) | public Boolean getArtemisStreamingEnabled() {
method setArtemisStreamingEnabled (line 1437) | public void setArtemisStreamingEnabled(Boolean artemisStreamingEnabled) {
method getAsyncStartListener (line 1441) | public Boolean getAsyncStartListener() {
method setAsyncStartListener (line 1445) | public void setAsyncStartListener(Boolean asyncStartListener) {
method getAsyncStopListener (line 1449) | public Boolean getAsyncStopListener() {
method setAsyncStopListener (line 1453) | public void setAsyncStopListener(Boolean asyncStopListener) {
method getAutowiredEnabled (line 1457) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 1461) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getBrowseLimit (line 1465) | public Integer getBrowseLimit() {
method setBrowseLimit (line 1469) | public void setBrowseLimit(Integer browseLimit) {
method getConfiguration (line 1473) | public JmsConfiguration getConfiguration() {
method setConfiguration (line 1477) | public void setConfiguration(JmsConfiguration configuration) {
method getDestinationResolver (line 1481) | public DestinationResolver getDestinationResolver() {
method setDestinationResolver (line 1485) | public void setDestinationResolver(DestinationResolver destinationReso...
method getErrorHandler (line 1489) | public ErrorHandler getErrorHandler() {
method setErrorHandler (line 1493) | public void setErrorHandler(ErrorHandler errorHandler) {
method getExceptionListener (line 1497) | public ExceptionListener getExceptionListener() {
method setExceptionListener (line 1501) | public void setExceptionListener(ExceptionListener exceptionListener) {
method getIdleConsumerLimit (line 1505) | public Integer getIdleConsumerLimit() {
method setIdleConsumerLimit (line 1509) | public void setIdleConsumerLimit(Integer idleConsumerLimit) {
method getIdleReceivesPerTaskLimit (line 1513) | public Integer getIdleReceivesPerTaskLimit() {
method setIdleReceivesPerTaskLimit (line 1517) | public void setIdleReceivesPerTaskLimit(Integer idleReceivesPerTaskLim...
method getIdleTaskExecutionLimit (line 1521) | public Integer getIdleTaskExecutionLimit() {
method setIdleTaskExecutionLimit (line 1525) | public void setIdleTaskExecutionLimit(Integer idleTaskExecutionLimit) {
method getIncludeAllJmsxProperties (line 1529) | public Boolean getIncludeAllJmsxProperties() {
method setIncludeAllJmsxProperties (line 1533) | public void setIncludeAllJmsxProperties(Boolean includeAllJmsxProperti...
method getIncludeCorrelationIDAsBytes (line 1537) | public Boolean getIncludeCorrelationIDAsBytes() {
method setIncludeCorrelationIDAsBytes (line 1541) | public void setIncludeCorrelationIDAsBytes(
method getJmsKeyFormatStrategy (line 1546) | public JmsKeyFormatStrategy getJmsKeyFormatStrategy() {
method setJmsKeyFormatStrategy (line 1550) | public void setJmsKeyFormatStrategy(
method getMapJmsMessage (line 1555) | public Boolean getMapJmsMessage() {
method setMapJmsMessage (line 1559) | public void setMapJmsMessage(Boolean mapJmsMessage) {
method getMaxMessagesPerTask (line 1563) | public Integer getMaxMessagesPerTask() {
method setMaxMessagesPerTask (line 1567) | public void setMaxMessagesPerTask(Integer maxMessagesPerTask) {
method getMessageConverter (line 1571) | public MessageConverter getMessageConverter() {
method setMessageConverter (line 1575) | public void setMessageConverter(MessageConverter messageConverter) {
method getMessageCreatedStrategy (line 1579) | public MessageCreatedStrategy getMessageCreatedStrategy() {
method setMessageCreatedStrategy (line 1583) | public void setMessageCreatedStrategy(
method getMessageIdEnabled (line 1588) | public Boolean getMessageIdEnabled() {
method setMessageIdEnabled (line 1592) | public void setMessageIdEnabled(Boolean messageIdEnabled) {
method getMessageListenerContainerFactory (line 1596) | public MessageListenerContainerFactory getMessageListenerContainerFact...
method setMessageListenerContainerFactory (line 1600) | public void setMessageListenerContainerFactory(
method getMessageTimestampEnabled (line 1605) | public Boolean getMessageTimestampEnabled() {
method setMessageTimestampEnabled (line 1609) | public void setMessageTimestampEnabled(Boolean messageTimestampEnabled) {
method getObjectMessageEnabled (line 1613) | public Boolean getObjectMessageEnabled() {
method setObjectMessageEnabled (line 1617) | public void setObjectMessageEnabled(Boolean objectMessageEnabled) {
method getPubSubNoLocal (line 1621) | public Boolean getPubSubNoLocal() {
method setPubSubNoLocal (line 1625) | public void setPubSubNoLocal(Boolean pubSubNoLocal) {
method getQueueBrowseStrategy (line 1629) | public QueueBrowseStrategy getQueueBrowseStrategy() {
method setQueueBrowseStrategy (line 1633) | public void setQueueBrowseStrategy(QueueBrowseStrategy queueBrowseStra...
method getReceiveTimeout (line 1637) | public Long getReceiveTimeout() {
method setReceiveTimeout (line 1641) | public void setReceiveTimeout(Long receiveTimeout) {
method getRecoveryInterval (line 1645) | public Long getRecoveryInterval() {
method setRecoveryInterval (line 1649) | public void setRecoveryInterval(Long recoveryInterval) {
method getRequestTimeoutCheckerInterval (line 1653) | public Long getRequestTimeoutCheckerInterval() {
method setRequestTimeoutCheckerInterval (line 1657) | public void setRequestTimeoutCheckerInterval(
method getServiceLocationEnabled (line 1662) | public Boolean getServiceLocationEnabled() {
method setServiceLocationEnabled (line 1666) | public void setServiceLocationEnabled(Boolean serviceLocationEnabled) {
method getSynchronous (line 1670) | public Boolean getSynchronous() {
method setSynchronous (line 1674) | public void setSynchronous(Boolean synchronous) {
method getTemporaryQueueResolver (line 1678) | public TemporaryQueueResolver getTemporaryQueueResolver() {
method setTemporaryQueueResolver (line 1682) | public void setTemporaryQueueResolver(
method getTransferException (line 1687) | public Boolean getTransferException() {
method setTransferException (line 1691) | public void setTransferException(Boolean transferException) {
method getTransferExchange (line 1695) | public Boolean getTransferExchange() {
method setTransferExchange (line 1699) | public void setTransferExchange(Boolean transferExchange) {
method getTrustAllPackages (line 1703) | public Boolean getTrustAllPackages() {
method setTrustAllPackages (line 1707) | public void setTrustAllPackages(Boolean trustAllPackages) {
method getUseMessageIdAsCorrelationId (line 1711) | public Boolean getUseMessageIdAsCorrelationId() {
method setUseMessageIdAsCorrelationId (line 1715) | public void setUseMessageIdAsCorrelationId(
method getWaitForProvisionCorrelationToBeUpdatedCounter (line 1720) | public Integer getWaitForProvisionCorrelationToBeUpdatedCounter() {
method setWaitForProvisionCorrelationToBeUpdatedCounter (line 1724) | public void setWaitForProvisionCorrelationToBeUpdatedCounter(
method getWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime (line 1729) | public Long getWaitForProvisionCorrelationToBeUpdatedThreadSleepingTim...
method setWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime (line 1733) | public void setWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime(
method getWaitForTemporaryReplyToToBeUpdatedCounter (line 1738) | public Integer getWaitForTemporaryReplyToToBeUpdatedCounter() {
method setWaitForTemporaryReplyToToBeUpdatedCounter (line 1742) | public void setWaitForTemporaryReplyToToBeUpdatedCounter(
method getWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime (line 1747) | public Long getWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime() {
method setWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime (line 1751) | public void setWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime(
method getHeaderFilterStrategy (line 1756) | public HeaderFilterStrategy getHeaderFilterStrategy() {
method setHeaderFilterStrategy (line 1760) | public void setHeaderFilterStrategy(
method getErrorHandlerLoggingLevel (line 1765) | public LoggingLevel getErrorHandlerLoggingLevel() {
method setErrorHandlerLoggingLevel (line 1769) | public void setErrorHandlerLoggingLevel(
method getErrorHandlerLogStackTrace (line 1774) | public Boolean getErrorHandlerLogStackTrace() {
method setErrorHandlerLogStackTrace (line 1778) | public void setErrorHandlerLogStackTrace(Boolean errorHandlerLogStackT...
method getDeserializationFilter (line 1782) | public String getDeserializationFilter() {
method setDeserializationFilter (line 1786) | public void setDeserializationFilter(String deserializationFilter) {
method getPassword (line 1790) | public String getPassword() {
method setPassword (line 1794) | public void setPassword(String password) {
method getUsername (line 1798) | public String getUsername() {
method setUsername (line 1802) | public void setUsername(String username) {
method getTransacted (line 1806) | public Boolean getTransacted() {
method setTransacted (line 1810) | public void setTransacted(Boolean transacted) {
method getTransactedInOut (line 1814) | public Boolean getTransactedInOut() {
method setTransactedInOut (line 1818) | public void setTransactedInOut(Boolean transactedInOut) {
method getLazyCreateTransactionManager (line 1822) | public Boolean getLazyCreateTransactionManager() {
method setLazyCreateTransactionManager (line 1826) | public void setLazyCreateTransactionManager(
method getTransactionManager (line 1831) | public PlatformTransactionManager getTransactionManager() {
method setTransactionManager (line 1835) | public void setTransactionManager(
method getTransactionName (line 1840) | public String getTransactionName() {
method setTransactionName (line 1844) | public void setTransactionName(String transactionName) {
method getTransactionTimeout (line 1848) | public Integer getTransactionTimeout() {
method setTransactionTimeout (line 1852) | public void setTransactionTimeout(Integer transactionTimeout) {
FILE: components-starter/camel-activemq-starter/src/main/java/org/apache/camel/component/activemq/springboot/ActiveMQComponentConverter.java
class ActiveMQComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 58) | public Object convert(
FILE: components-starter/camel-activemq6-starter/src/main/java/org/apache/camel/component/activemq6/springboot/ActiveMQComponentAutoConfiguration.java
class ActiveMQComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, ActiveMQCompon...
method ActiveMQComponentAutoConfiguration (line 48) | public ActiveMQComponentAutoConfiguration(
method configureActiveMQComponent (line 55) | @Lazy
FILE: components-starter/camel-activemq6-starter/src/main/java/org/apache/camel/component/activemq6/springboot/ActiveMQComponentConfiguration.java
class ActiveMQComponentConfiguration (line 39) | @ConfigurationProperties(prefix = "camel.component.activemq6")
method getBrokerURL (line 921) | public String getBrokerURL() {
method setBrokerURL (line 925) | public void setBrokerURL(String brokerURL) {
method getClientId (line 929) | public String getClientId() {
method setClientId (line 933) | public void setClientId(String clientId) {
method getConnectionFactory (line 937) | public ConnectionFactory getConnectionFactory() {
method setConnectionFactory (line 941) | public void setConnectionFactory(ConnectionFactory connectionFactory) {
method getDisableReplyTo (line 945) | public Boolean getDisableReplyTo() {
method setDisableReplyTo (line 949) | public void setDisableReplyTo(Boolean disableReplyTo) {
method getDurableSubscriptionName (line 953) | public String getDurableSubscriptionName() {
method setDurableSubscriptionName (line 957) | public void setDurableSubscriptionName(String durableSubscriptionName) {
method getEmbedded (line 961) | public Boolean getEmbedded() {
method setEmbedded (line 965) | public void setEmbedded(Boolean embedded) {
method getJmsMessageType (line 969) | public JmsMessageType getJmsMessageType() {
method setJmsMessageType (line 973) | public void setJmsMessageType(JmsMessageType jmsMessageType) {
method getReplyTo (line 977) | public String getReplyTo() {
method setReplyTo (line 981) | public void setReplyTo(String replyTo) {
method getTestConnectionOnStartup (line 985) | public Boolean getTestConnectionOnStartup() {
method setTestConnectionOnStartup (line 989) | public void setTestConnectionOnStartup(Boolean testConnectionOnStartup) {
method getUsePooledConnection (line 993) | public Boolean getUsePooledConnection() {
method setUsePooledConnection (line 997) | public void setUsePooledConnection(Boolean usePooledConnection) {
method getUseSingleConnection (line 1001) | public Boolean getUseSingleConnection() {
method setUseSingleConnection (line 1005) | public void setUseSingleConnection(Boolean useSingleConnection) {
method getAcknowledgementModeName (line 1009) | public String getAcknowledgementModeName() {
method setAcknowledgementModeName (line 1013) | public void setAcknowledgementModeName(String acknowledgementModeName) {
method getArtemisConsumerPriority (line 1017) | public Integer getArtemisConsumerPriority() {
method setArtemisConsumerPriority (line 1021) | public void setArtemisConsumerPriority(Integer artemisConsumerPriority) {
method getAsyncConsumer (line 1025) | public Boolean getAsyncConsumer() {
method setAsyncConsumer (line 1029) | public void setAsyncConsumer(Boolean asyncConsumer) {
method getAutoStartup (line 1033) | public Boolean getAutoStartup() {
method setAutoStartup (line 1037) | public void setAutoStartup(Boolean autoStartup) {
method getCacheLevel (line 1041) | public Integer getCacheLevel() {
method setCacheLevel (line 1045) | public void setCacheLevel(Integer cacheLevel) {
method getCacheLevelName (line 1049) | public String getCacheLevelName() {
method setCacheLevelName (line 1053) | public void setCacheLevelName(String cacheLevelName) {
method getConcurrentConsumers (line 1057) | public Integer getConcurrentConsumers() {
method setConcurrentConsumers (line 1061) | public void setConcurrentConsumers(Integer concurrentConsumers) {
method getMaxConcurrentConsumers (line 1065) | public Integer getMaxConcurrentConsumers() {
method setMaxConcurrentConsumers (line 1069) | public void setMaxConcurrentConsumers(Integer maxConcurrentConsumers) {
method getReplyToDeliveryPersistent (line 1073) | public Boolean getReplyToDeliveryPersistent() {
method setReplyToDeliveryPersistent (line 1077) | public void setReplyToDeliveryPersistent(Boolean replyToDeliveryPersis...
method getSelector (line 1081) | public String getSelector() {
method setSelector (line 1085) | public void setSelector(String selector) {
method getSubscriptionDurable (line 1089) | public Boolean getSubscriptionDurable() {
method setSubscriptionDurable (line 1093) | public void setSubscriptionDurable(Boolean subscriptionDurable) {
method getSubscriptionName (line 1097) | public String getSubscriptionName() {
method setSubscriptionName (line 1101) | public void setSubscriptionName(String subscriptionName) {
method getSubscriptionShared (line 1105) | public Boolean getSubscriptionShared() {
method setSubscriptionShared (line 1109) | public void setSubscriptionShared(Boolean subscriptionShared) {
method getAcceptMessagesWhileStopping (line 1113) | public Boolean getAcceptMessagesWhileStopping() {
method setAcceptMessagesWhileStopping (line 1117) | public void setAcceptMessagesWhileStopping(
method getAllowReplyManagerQuickStop (line 1122) | public Boolean getAllowReplyManagerQuickStop() {
method setAllowReplyManagerQuickStop (line 1126) | public void setAllowReplyManagerQuickStop(Boolean allowReplyManagerQui...
method getConsumerType (line 1130) | public ConsumerType getConsumerType() {
method setConsumerType (line 1134) | public void setConsumerType(ConsumerType consumerType) {
method getDefaultTaskExecutorType (line 1138) | public DefaultTaskExecutorType getDefaultTaskExecutorType() {
method setDefaultTaskExecutorType (line 1142) | public void setDefaultTaskExecutorType(
method getEagerLoadingOfProperties (line 1147) | public Boolean getEagerLoadingOfProperties() {
method setEagerLoadingOfProperties (line 1151) | public void setEagerLoadingOfProperties(Boolean eagerLoadingOfProperti...
method getEagerPoisonBody (line 1155) | public String getEagerPoisonBody() {
method setEagerPoisonBody (line 1159) | public void setEagerPoisonBody(String eagerPoisonBody) {
method getExposeListenerSession (line 1163) | public Boolean getExposeListenerSession() {
method setExposeListenerSession (line 1167) | public void setExposeListenerSession(Boolean exposeListenerSession) {
method getReplyToConsumerType (line 1171) | public ConsumerType getReplyToConsumerType() {
method setReplyToConsumerType (line 1175) | public void setReplyToConsumerType(ConsumerType replyToConsumerType) {
method getReplyToSameDestinationAllowed (line 1179) | public Boolean getReplyToSameDestinationAllowed() {
method setReplyToSameDestinationAllowed (line 1183) | public void setReplyToSameDestinationAllowed(
method getTaskExecutor (line 1188) | public TaskExecutor getTaskExecutor() {
method setTaskExecutor (line 1192) | public void setTaskExecutor(TaskExecutor taskExecutor) {
method getDeliveryDelay (line 1196) | public Long getDeliveryDelay() {
method setDeliveryDelay (line 1200) | public void setDeliveryDelay(Long deliveryDelay) {
method getDeliveryMode (line 1204) | public Integer getDeliveryMode() {
method setDeliveryMode (line 1208) | public void setDeliveryMode(Integer deliveryMode) {
method getDeliveryPersistent (line 1212) | public Boolean getDeliveryPersistent() {
method setDeliveryPersistent (line 1216) | public void setDeliveryPersistent(Boolean deliveryPersistent) {
method getExplicitQosEnabled (line 1220) | public Boolean getExplicitQosEnabled() {
method setExplicitQosEnabled (line 1224) | public void setExplicitQosEnabled(Boolean explicitQosEnabled) {
method getFormatDateHeadersToIso8601 (line 1228) | public Boolean getFormatDateHeadersToIso8601() {
method setFormatDateHeadersToIso8601 (line 1232) | public void setFormatDateHeadersToIso8601(Boolean formatDateHeadersToI...
method getLazyStartProducer (line 1236) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 1240) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getPreserveMessageQos (line 1244) | public Boolean getPreserveMessageQos() {
method setPreserveMessageQos (line 1248) | public void setPreserveMessageQos(Boolean preserveMessageQos) {
method getPriority (line 1252) | public Integer getPriority() {
method setPriority (line 1256) | public void setPriority(Integer priority) {
method getReplyToConcurrentConsumers (line 1260) | public Integer getReplyToConcurrentConsumers() {
method setReplyToConcurrentConsumers (line 1264) | public void setReplyToConcurrentConsumers(Integer replyToConcurrentCon...
method getReplyToMaxConcurrentConsumers (line 1268) | public Integer getReplyToMaxConcurrentConsumers() {
method setReplyToMaxConcurrentConsumers (line 1272) | public void setReplyToMaxConcurrentConsumers(
method getReplyToOnTimeoutMaxConcurrentConsumers (line 1277) | public Integer getReplyToOnTimeoutMaxConcurrentConsumers() {
method setReplyToOnTimeoutMaxConcurrentConsumers (line 1281) | public void setReplyToOnTimeoutMaxConcurrentConsumers(
method getReplyToOverride (line 1286) | public String getReplyToOverride() {
method setReplyToOverride (line 1290) | public void setReplyToOverride(String replyToOverride) {
method getReplyToType (line 1294) | public ReplyToType getReplyToType() {
method setReplyToType (line 1298) | public void setReplyToType(ReplyToType replyToType) {
method getRequestTimeout (line 1302) | public Long getRequestTimeout() {
method setRequestTimeout (line 1306) | public void setRequestTimeout(Long requestTimeout) {
method getTimeToLive (line 1310) | public Long getTimeToLive() {
method setTimeToLive (line 1314) | public void setTimeToLive(Long timeToLive) {
method getAllowAdditionalHeaders (line 1318) | public String getAllowAdditionalHeaders() {
method setAllowAdditionalHeaders (line 1322) | public void setAllowAdditionalHeaders(String allowAdditionalHeaders) {
method getAllowNullBody (line 1326) | public Boolean getAllowNullBody() {
method setAllowNullBody (line 1330) | public void setAllowNullBody(Boolean allowNullBody) {
method getAlwaysCopyMessage (line 1334) | public Boolean getAlwaysCopyMessage() {
method setAlwaysCopyMessage (line 1338) | public void setAlwaysCopyMessage(Boolean alwaysCopyMessage) {
method getCorrelationProperty (line 1342) | public String getCorrelationProperty() {
method setCorrelationProperty (line 1346) | public void setCorrelationProperty(String correlationProperty) {
method getDisableTimeToLive (line 1350) | public Boolean getDisableTimeToLive() {
method setDisableTimeToLive (line 1354) | public void setDisableTimeToLive(Boolean disableTimeToLive) {
method getForceSendOriginalMessage (line 1358) | public Boolean getForceSendOriginalMessage() {
method setForceSendOriginalMessage (line 1362) | public void setForceSendOriginalMessage(Boolean forceSendOriginalMessa...
method getIncludeSentJMSMessageID (line 1366) | public Boolean getIncludeSentJMSMessageID() {
method setIncludeSentJMSMessageID (line 1370) | public void setIncludeSentJMSMessageID(Boolean includeSentJMSMessageID) {
method getReplyCorrelationProperty (line 1374) | public String getReplyCorrelationProperty() {
method setReplyCorrelationProperty (line 1378) | public void setReplyCorrelationProperty(String replyCorrelationPropert...
method getReplyToCacheLevelName (line 1382) | public String getReplyToCacheLevelName() {
method setReplyToCacheLevelName (line 1386) | public void setReplyToCacheLevelName(String replyToCacheLevelName) {
method getReplyToDestinationSelectorName (line 1390) | public String getReplyToDestinationSelectorName() {
method setReplyToDestinationSelectorName (line 1394) | public void setReplyToDestinationSelectorName(
method getStreamMessageTypeEnabled (line 1399) | public Boolean getStreamMessageTypeEnabled() {
method setStreamMessageTypeEnabled (line 1403) | public void setStreamMessageTypeEnabled(Boolean streamMessageTypeEnabl...
method getAllowAutoWiredConnectionFactory (line 1407) | public Boolean getAllowAutoWiredConnectionFactory() {
method setAllowAutoWiredConnectionFactory (line 1411) | public void setAllowAutoWiredConnectionFactory(
method getAllowAutoWiredDestinationResolver (line 1416) | public Boolean getAllowAutoWiredDestinationResolver() {
method setAllowAutoWiredDestinationResolver (line 1420) | public void setAllowAutoWiredDestinationResolver(
method getAllowSerializedHeaders (line 1425) | public Boolean getAllowSerializedHeaders() {
method setAllowSerializedHeaders (line 1429) | public void setAllowSerializedHeaders(Boolean allowSerializedHeaders) {
method getArtemisStreamingEnabled (line 1433) | public Boolean getArtemisStreamingEnabled() {
method setArtemisStreamingEnabled (line 1437) | public void setArtemisStreamingEnabled(Boolean artemisStreamingEnabled) {
method getAsyncStartListener (line 1441) | public Boolean getAsyncStartListener() {
method setAsyncStartListener (line 1445) | public void setAsyncStartListener(Boolean asyncStartListener) {
method getAsyncStopListener (line 1449) | public Boolean getAsyncStopListener() {
method setAsyncStopListener (line 1453) | public void setAsyncStopListener(Boolean asyncStopListener) {
method getAutowiredEnabled (line 1457) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 1461) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getBrowseLimit (line 1465) | public Integer getBrowseLimit() {
method setBrowseLimit (line 1469) | public void setBrowseLimit(Integer browseLimit) {
method getConfiguration (line 1473) | public JmsConfiguration getConfiguration() {
method setConfiguration (line 1477) | public void setConfiguration(JmsConfiguration configuration) {
method getDestinationResolver (line 1481) | public DestinationResolver getDestinationResolver() {
method setDestinationResolver (line 1485) | public void setDestinationResolver(DestinationResolver destinationReso...
method getErrorHandler (line 1489) | public ErrorHandler getErrorHandler() {
method setErrorHandler (line 1493) | public void setErrorHandler(ErrorHandler errorHandler) {
method getExceptionListener (line 1497) | public ExceptionListener getExceptionListener() {
method setExceptionListener (line 1501) | public void setExceptionListener(ExceptionListener exceptionListener) {
method getIdleConsumerLimit (line 1505) | public Integer getIdleConsumerLimit() {
method setIdleConsumerLimit (line 1509) | public void setIdleConsumerLimit(Integer idleConsumerLimit) {
method getIdleReceivesPerTaskLimit (line 1513) | public Integer getIdleReceivesPerTaskLimit() {
method setIdleReceivesPerTaskLimit (line 1517) | public void setIdleReceivesPerTaskLimit(Integer idleReceivesPerTaskLim...
method getIdleTaskExecutionLimit (line 1521) | public Integer getIdleTaskExecutionLimit() {
method setIdleTaskExecutionLimit (line 1525) | public void setIdleTaskExecutionLimit(Integer idleTaskExecutionLimit) {
method getIncludeAllJMSXProperties (line 1529) | public Boolean getIncludeAllJMSXProperties() {
method setIncludeAllJMSXProperties (line 1533) | public void setIncludeAllJMSXProperties(Boolean includeAllJMSXProperti...
method getIncludeCorrelationIDAsBytes (line 1537) | public Boolean getIncludeCorrelationIDAsBytes() {
method setIncludeCorrelationIDAsBytes (line 1541) | public void setIncludeCorrelationIDAsBytes(
method getJmsKeyFormatStrategy (line 1546) | public JmsKeyFormatStrategy getJmsKeyFormatStrategy() {
method setJmsKeyFormatStrategy (line 1550) | public void setJmsKeyFormatStrategy(
method getMapJmsMessage (line 1555) | public Boolean getMapJmsMessage() {
method setMapJmsMessage (line 1559) | public void setMapJmsMessage(Boolean mapJmsMessage) {
method getMaxMessagesPerTask (line 1563) | public Integer getMaxMessagesPerTask() {
method setMaxMessagesPerTask (line 1567) | public void setMaxMessagesPerTask(Integer maxMessagesPerTask) {
method getMessageConverter (line 1571) | public MessageConverter getMessageConverter() {
method setMessageConverter (line 1575) | public void setMessageConverter(MessageConverter messageConverter) {
method getMessageCreatedStrategy (line 1579) | public MessageCreatedStrategy getMessageCreatedStrategy() {
method setMessageCreatedStrategy (line 1583) | public void setMessageCreatedStrategy(
method getMessageIdEnabled (line 1588) | public Boolean getMessageIdEnabled() {
method setMessageIdEnabled (line 1592) | public void setMessageIdEnabled(Boolean messageIdEnabled) {
method getMessageListenerContainerFactory (line 1596) | public MessageListenerContainerFactory getMessageListenerContainerFact...
method setMessageListenerContainerFactory (line 1600) | public void setMessageListenerContainerFactory(
method getMessageTimestampEnabled (line 1605) | public Boolean getMessageTimestampEnabled() {
method setMessageTimestampEnabled (line 1609) | public void setMessageTimestampEnabled(Boolean messageTimestampEnabled) {
method getObjectMessageEnabled (line 1613) | public Boolean getObjectMessageEnabled() {
method setObjectMessageEnabled (line 1617) | public void setObjectMessageEnabled(Boolean objectMessageEnabled) {
method getPubSubNoLocal (line 1621) | public Boolean getPubSubNoLocal() {
method setPubSubNoLocal (line 1625) | public void setPubSubNoLocal(Boolean pubSubNoLocal) {
method getQueueBrowseStrategy (line 1629) | public QueueBrowseStrategy getQueueBrowseStrategy() {
method setQueueBrowseStrategy (line 1633) | public void setQueueBrowseStrategy(QueueBrowseStrategy queueBrowseStra...
method getReceiveTimeout (line 1637) | public Long getReceiveTimeout() {
method setReceiveTimeout (line 1641) | public void setReceiveTimeout(Long receiveTimeout) {
method getRecoveryInterval (line 1645) | public Long getRecoveryInterval() {
method setRecoveryInterval (line 1649) | public void setRecoveryInterval(Long recoveryInterval) {
method getRequestTimeoutCheckerInterval (line 1653) | public Long getRequestTimeoutCheckerInterval() {
method setRequestTimeoutCheckerInterval (line 1657) | public void setRequestTimeoutCheckerInterval(
method getServiceLocationEnabled (line 1662) | public Boolean getServiceLocationEnabled() {
method setServiceLocationEnabled (line 1666) | public void setServiceLocationEnabled(Boolean serviceLocationEnabled) {
method getSynchronous (line 1670) | public Boolean getSynchronous() {
method setSynchronous (line 1674) | public void setSynchronous(Boolean synchronous) {
method getTemporaryQueueResolver (line 1678) | public TemporaryQueueResolver getTemporaryQueueResolver() {
method setTemporaryQueueResolver (line 1682) | public void setTemporaryQueueResolver(
method getTransferException (line 1687) | public Boolean getTransferException() {
method setTransferException (line 1691) | public void setTransferException(Boolean transferException) {
method getTransferExchange (line 1695) | public Boolean getTransferExchange() {
method setTransferExchange (line 1699) | public void setTransferExchange(Boolean transferExchange) {
method getTrustAllPackages (line 1703) | public Boolean getTrustAllPackages() {
method setTrustAllPackages (line 1707) | public void setTrustAllPackages(Boolean trustAllPackages) {
method getUseMessageIDAsCorrelationID (line 1711) | public Boolean getUseMessageIDAsCorrelationID() {
method setUseMessageIDAsCorrelationID (line 1715) | public void setUseMessageIDAsCorrelationID(
method getWaitForProvisionCorrelationToBeUpdatedCounter (line 1720) | public Integer getWaitForProvisionCorrelationToBeUpdatedCounter() {
method setWaitForProvisionCorrelationToBeUpdatedCounter (line 1724) | public void setWaitForProvisionCorrelationToBeUpdatedCounter(
method getWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime (line 1729) | public Long getWaitForProvisionCorrelationToBeUpdatedThreadSleepingTim...
method setWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime (line 1733) | public void setWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime(
method getWaitForTemporaryReplyToToBeUpdatedCounter (line 1738) | public Integer getWaitForTemporaryReplyToToBeUpdatedCounter() {
method setWaitForTemporaryReplyToToBeUpdatedCounter (line 1742) | public void setWaitForTemporaryReplyToToBeUpdatedCounter(
method getWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime (line 1747) | public Long getWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime() {
method setWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime (line 1751) | public void setWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime(
method getHeaderFilterStrategy (line 1756) | public HeaderFilterStrategy getHeaderFilterStrategy() {
method setHeaderFilterStrategy (line 1760) | public void setHeaderFilterStrategy(
method getErrorHandlerLoggingLevel (line 1765) | public LoggingLevel getErrorHandlerLoggingLevel() {
method setErrorHandlerLoggingLevel (line 1769) | public void setErrorHandlerLoggingLevel(
method getErrorHandlerLogStackTrace (line 1774) | public Boolean getErrorHandlerLogStackTrace() {
method setErrorHandlerLogStackTrace (line 1778) | public void setErrorHandlerLogStackTrace(Boolean errorHandlerLogStackT...
method getDeserializationFilter (line 1782) | public String getDeserializationFilter() {
method setDeserializationFilter (line 1786) | public void setDeserializationFilter(String deserializationFilter) {
method getPassword (line 1790) | public String getPassword() {
method setPassword (line 1794) | public void setPassword(String password) {
method getUsername (line 1798) | public String getUsername() {
method setUsername (line 1802) | public void setUsername(String username) {
method getTransacted (line 1806) | public Boolean getTransacted() {
method setTransacted (line 1810) | public void setTransacted(Boolean transacted) {
method getTransactedInOut (line 1814) | public Boolean getTransactedInOut() {
method setTransactedInOut (line 1818) | public void setTransactedInOut(Boolean transactedInOut) {
method getLazyCreateTransactionManager (line 1822) | public Boolean getLazyCreateTransactionManager() {
method setLazyCreateTransactionManager (line 1826) | public void setLazyCreateTransactionManager(
method getTransactionManager (line 1831) | public PlatformTransactionManager getTransactionManager() {
method setTransactionManager (line 1835) | public void setTransactionManager(
method getTransactionName (line 1840) | public String getTransactionName() {
method setTransactionName (line 1844) | public void setTransactionName(String transactionName) {
method getTransactionTimeout (line 1848) | public Integer getTransactionTimeout() {
method setTransactionTimeout (line 1852) | public void setTransactionTimeout(Integer transactionTimeout) {
FILE: components-starter/camel-activemq6-starter/src/main/java/org/apache/camel/component/activemq6/springboot/ActiveMQComponentConverter.java
class ActiveMQComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 58) | public Object convert(
FILE: components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentAutoConfiguration.java
class AMQPComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, AMQPComponentC...
method AMQPComponentAutoConfiguration (line 48) | public AMQPComponentAutoConfiguration(
method configureAMQPComponent (line 55) | @Lazy
FILE: components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentConfiguration.java
class AMQPComponentConfiguration (line 38) | @ConfigurationProperties(prefix = "camel.component.amqp")
method getBrokerUrl (line 936) | public String getBrokerUrl() {
method setBrokerUrl (line 940) | public void setBrokerUrl(String brokerUrl) {
method getClientId (line 944) | public String getClientId() {
method setClientId (line 948) | public void setClientId(String clientId) {
method getConnectionFactory (line 952) | public ConnectionFactory getConnectionFactory() {
method setConnectionFactory (line 956) | public void setConnectionFactory(ConnectionFactory connectionFactory) {
method getDisableReplyTo (line 960) | public Boolean getDisableReplyTo() {
method setDisableReplyTo (line 964) | public void setDisableReplyTo(Boolean disableReplyTo) {
method getDurableSubscriptionName (line 968) | public String getDurableSubscriptionName() {
method setDurableSubscriptionName (line 972) | public void setDurableSubscriptionName(String durableSubscriptionName) {
method getHost (line 976) | public String getHost() {
method setHost (line 980) | public void setHost(String host) {
method getIncludeAmqpAnnotations (line 984) | public Boolean getIncludeAmqpAnnotations() {
method setIncludeAmqpAnnotations (line 988) | public void setIncludeAmqpAnnotations(Boolean includeAmqpAnnotations) {
method getJmsMessageType (line 992) | public JmsMessageType getJmsMessageType() {
method setJmsMessageType (line 996) | public void setJmsMessageType(JmsMessageType jmsMessageType) {
method getKeyStoreLocation (line 1000) | public String getKeyStoreLocation() {
method setKeyStoreLocation (line 1004) | public void setKeyStoreLocation(String keyStoreLocation) {
method getKeyStoreType (line 1008) | public String getKeyStoreType() {
method setKeyStoreType (line 1012) | public void setKeyStoreType(String keyStoreType) {
method getPort (line 1016) | public Integer getPort() {
method setPort (line 1020) | public void setPort(Integer port) {
method getReplyTo (line 1024) | public String getReplyTo() {
method setReplyTo (line 1028) | public void setReplyTo(String replyTo) {
method getTestConnectionOnStartup (line 1032) | public Boolean getTestConnectionOnStartup() {
method setTestConnectionOnStartup (line 1036) | public void setTestConnectionOnStartup(Boolean testConnectionOnStartup) {
method getTrustStoreLocation (line 1040) | public String getTrustStoreLocation() {
method setTrustStoreLocation (line 1044) | public void setTrustStoreLocation(String trustStoreLocation) {
method getTrustStoreType (line 1048) | public String getTrustStoreType() {
method setTrustStoreType (line 1052) | public void setTrustStoreType(String trustStoreType) {
method getUseSsl (line 1056) | public Boolean getUseSsl() {
method setUseSsl (line 1060) | public void setUseSsl(Boolean useSsl) {
method getUseTopicPrefix (line 1064) | public Boolean getUseTopicPrefix() {
method setUseTopicPrefix (line 1068) | public void setUseTopicPrefix(Boolean useTopicPrefix) {
method getAcknowledgementModeName (line 1072) | public String getAcknowledgementModeName() {
method setAcknowledgementModeName (line 1076) | public void setAcknowledgementModeName(String acknowledgementModeName) {
method getArtemisConsumerPriority (line 1080) | public Integer getArtemisConsumerPriority() {
method setArtemisConsumerPriority (line 1084) | public void setArtemisConsumerPriority(Integer artemisConsumerPriority) {
method getAsyncConsumer (line 1088) | public Boolean getAsyncConsumer() {
method setAsyncConsumer (line 1092) | public void setAsyncConsumer(Boolean asyncConsumer) {
method getAutoStartup (line 1096) | public Boolean getAutoStartup() {
method setAutoStartup (line 1100) | public void setAutoStartup(Boolean autoStartup) {
method getCacheLevel (line 1104) | public Integer getCacheLevel() {
method setCacheLevel (line 1108) | public void setCacheLevel(Integer cacheLevel) {
method getCacheLevelName (line 1112) | public String getCacheLevelName() {
method setCacheLevelName (line 1116) | public void setCacheLevelName(String cacheLevelName) {
method getConcurrentConsumers (line 1120) | public Integer getConcurrentConsumers() {
method setConcurrentConsumers (line 1124) | public void setConcurrentConsumers(Integer concurrentConsumers) {
method getMaxConcurrentConsumers (line 1128) | public Integer getMaxConcurrentConsumers() {
method setMaxConcurrentConsumers (line 1132) | public void setMaxConcurrentConsumers(Integer maxConcurrentConsumers) {
method getReplyToDeliveryPersistent (line 1136) | public Boolean getReplyToDeliveryPersistent() {
method setReplyToDeliveryPersistent (line 1140) | public void setReplyToDeliveryPersistent(Boolean replyToDeliveryPersis...
method getSelector (line 1144) | public String getSelector() {
method setSelector (line 1148) | public void setSelector(String selector) {
method getSubscriptionDurable (line 1152) | public Boolean getSubscriptionDurable() {
method setSubscriptionDurable (line 1156) | public void setSubscriptionDurable(Boolean subscriptionDurable) {
method getSubscriptionName (line 1160) | public String getSubscriptionName() {
method setSubscriptionName (line 1164) | public void setSubscriptionName(String subscriptionName) {
method getSubscriptionShared (line 1168) | public Boolean getSubscriptionShared() {
method setSubscriptionShared (line 1172) | public void setSubscriptionShared(Boolean subscriptionShared) {
method getAcceptMessagesWhileStopping (line 1176) | public Boolean getAcceptMessagesWhileStopping() {
method setAcceptMessagesWhileStopping (line 1180) | public void setAcceptMessagesWhileStopping(
method getAllowReplyManagerQuickStop (line 1185) | public Boolean getAllowReplyManagerQuickStop() {
method setAllowReplyManagerQuickStop (line 1189) | public void setAllowReplyManagerQuickStop(Boolean allowReplyManagerQui...
method getConsumerType (line 1193) | public ConsumerType getConsumerType() {
method setConsumerType (line 1197) | public void setConsumerType(ConsumerType consumerType) {
method getDefaultTaskExecutorType (line 1201) | public DefaultTaskExecutorType getDefaultTaskExecutorType() {
method setDefaultTaskExecutorType (line 1205) | public void setDefaultTaskExecutorType(
method getEagerLoadingOfProperties (line 1210) | public Boolean getEagerLoadingOfProperties() {
method setEagerLoadingOfProperties (line 1214) | public void setEagerLoadingOfProperties(Boolean eagerLoadingOfProperti...
method getEagerPoisonBody (line 1218) | public String getEagerPoisonBody() {
method setEagerPoisonBody (line 1222) | public void setEagerPoisonBody(String eagerPoisonBody) {
method getExposeListenerSession (line 1226) | public Boolean getExposeListenerSession() {
method setExposeListenerSession (line 1230) | public void setExposeListenerSession(Boolean exposeListenerSession) {
method getReplyToConsumerType (line 1234) | public ConsumerType getReplyToConsumerType() {
method setReplyToConsumerType (line 1238) | public void setReplyToConsumerType(ConsumerType replyToConsumerType) {
method getReplyToSameDestinationAllowed (line 1242) | public Boolean getReplyToSameDestinationAllowed() {
method setReplyToSameDestinationAllowed (line 1246) | public void setReplyToSameDestinationAllowed(
method getTaskExecutor (line 1251) | public TaskExecutor getTaskExecutor() {
method setTaskExecutor (line 1255) | public void setTaskExecutor(TaskExecutor taskExecutor) {
method getDeliveryDelay (line 1259) | public Long getDeliveryDelay() {
method setDeliveryDelay (line 1263) | public void setDeliveryDelay(Long deliveryDelay) {
method getDeliveryMode (line 1267) | public Integer getDeliveryMode() {
method setDeliveryMode (line 1271) | public void setDeliveryMode(Integer deliveryMode) {
method getDeliveryPersistent (line 1275) | public Boolean getDeliveryPersistent() {
method setDeliveryPersistent (line 1279) | public void setDeliveryPersistent(Boolean deliveryPersistent) {
method getExplicitQosEnabled (line 1283) | public Boolean getExplicitQosEnabled() {
method setExplicitQosEnabled (line 1287) | public void setExplicitQosEnabled(Boolean explicitQosEnabled) {
method getFormatDateHeadersToIso8601 (line 1291) | public Boolean getFormatDateHeadersToIso8601() {
method setFormatDateHeadersToIso8601 (line 1295) | public void setFormatDateHeadersToIso8601(Boolean formatDateHeadersToI...
method getLazyStartProducer (line 1299) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 1303) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getPreserveMessageQos (line 1307) | public Boolean getPreserveMessageQos() {
method setPreserveMessageQos (line 1311) | public void setPreserveMessageQos(Boolean preserveMessageQos) {
method getPriority (line 1315) | public Integer getPriority() {
method setPriority (line 1319) | public void setPriority(Integer priority) {
method getReplyToConcurrentConsumers (line 1323) | public Integer getReplyToConcurrentConsumers() {
method setReplyToConcurrentConsumers (line 1327) | public void setReplyToConcurrentConsumers(Integer replyToConcurrentCon...
method getReplyToMaxConcurrentConsumers (line 1331) | public Integer getReplyToMaxConcurrentConsumers() {
method setReplyToMaxConcurrentConsumers (line 1335) | public void setReplyToMaxConcurrentConsumers(
method getReplyToOnTimeoutMaxConcurrentConsumers (line 1340) | public Integer getReplyToOnTimeoutMaxConcurrentConsumers() {
method setReplyToOnTimeoutMaxConcurrentConsumers (line 1344) | public void setReplyToOnTimeoutMaxConcurrentConsumers(
method getReplyToOverride (line 1349) | public String getReplyToOverride() {
method setReplyToOverride (line 1353) | public void setReplyToOverride(String replyToOverride) {
method getReplyToType (line 1357) | public ReplyToType getReplyToType() {
method setReplyToType (line 1361) | public void setReplyToType(ReplyToType replyToType) {
method getRequestTimeout (line 1365) | public Long getRequestTimeout() {
method setRequestTimeout (line 1369) | public void setRequestTimeout(Long requestTimeout) {
method getTimeToLive (line 1373) | public Long getTimeToLive() {
method setTimeToLive (line 1377) | public void setTimeToLive(Long timeToLive) {
method getAllowAdditionalHeaders (line 1381) | public String getAllowAdditionalHeaders() {
method setAllowAdditionalHeaders (line 1385) | public void setAllowAdditionalHeaders(String allowAdditionalHeaders) {
method getAllowNullBody (line 1389) | public Boolean getAllowNullBody() {
method setAllowNullBody (line 1393) | public void setAllowNullBody(Boolean allowNullBody) {
method getAlwaysCopyMessage (line 1397) | public Boolean getAlwaysCopyMessage() {
method setAlwaysCopyMessage (line 1401) | public void setAlwaysCopyMessage(Boolean alwaysCopyMessage) {
method getCorrelationProperty (line 1405) | public String getCorrelationProperty() {
method setCorrelationProperty (line 1409) | public void setCorrelationProperty(String correlationProperty) {
method getDisableTimeToLive (line 1413) | public Boolean getDisableTimeToLive() {
method setDisableTimeToLive (line 1417) | public void setDisableTimeToLive(Boolean disableTimeToLive) {
method getForceSendOriginalMessage (line 1421) | public Boolean getForceSendOriginalMessage() {
method setForceSendOriginalMessage (line 1425) | public void setForceSendOriginalMessage(Boolean forceSendOriginalMessa...
method getIncludeSentJmsMessageId (line 1429) | public Boolean getIncludeSentJmsMessageId() {
method setIncludeSentJmsMessageId (line 1433) | public void setIncludeSentJmsMessageId(Boolean includeSentJmsMessageId) {
method getReplyCorrelationProperty (line 1437) | public String getReplyCorrelationProperty() {
method setReplyCorrelationProperty (line 1441) | public void setReplyCorrelationProperty(String replyCorrelationPropert...
method getReplyToCacheLevelName (line 1445) | public String getReplyToCacheLevelName() {
method setReplyToCacheLevelName (line 1449) | public void setReplyToCacheLevelName(String replyToCacheLevelName) {
method getReplyToDestinationSelectorName (line 1453) | public String getReplyToDestinationSelectorName() {
method setReplyToDestinationSelectorName (line 1457) | public void setReplyToDestinationSelectorName(
method getStreamMessageTypeEnabled (line 1462) | public Boolean getStreamMessageTypeEnabled() {
method setStreamMessageTypeEnabled (line 1466) | public void setStreamMessageTypeEnabled(Boolean streamMessageTypeEnabl...
method getAllowAutoWiredConnectionFactory (line 1470) | public Boolean getAllowAutoWiredConnectionFactory() {
method setAllowAutoWiredConnectionFactory (line 1474) | public void setAllowAutoWiredConnectionFactory(
method getAllowAutoWiredDestinationResolver (line 1479) | public Boolean getAllowAutoWiredDestinationResolver() {
method setAllowAutoWiredDestinationResolver (line 1483) | public void setAllowAutoWiredDestinationResolver(
method getAllowSerializedHeaders (line 1488) | public Boolean getAllowSerializedHeaders() {
method setAllowSerializedHeaders (line 1492) | public void setAllowSerializedHeaders(Boolean allowSerializedHeaders) {
method getArtemisStreamingEnabled (line 1496) | public Boolean getArtemisStreamingEnabled() {
method setArtemisStreamingEnabled (line 1500) | public void setArtemisStreamingEnabled(Boolean artemisStreamingEnabled) {
method getAsyncStartListener (line 1504) | public Boolean getAsyncStartListener() {
method setAsyncStartListener (line 1508) | public void setAsyncStartListener(Boolean asyncStartListener) {
method getAsyncStopListener (line 1512) | public Boolean getAsyncStopListener() {
method setAsyncStopListener (line 1516) | public void setAsyncStopListener(Boolean asyncStopListener) {
method getAutowiredEnabled (line 1520) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 1524) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getBrowseLimit (line 1528) | public Integer getBrowseLimit() {
method setBrowseLimit (line 1532) | public void setBrowseLimit(Integer browseLimit) {
method getConfiguration (line 1536) | public JmsConfiguration getConfiguration() {
method setConfiguration (line 1540) | public void setConfiguration(JmsConfiguration configuration) {
method getDestinationResolver (line 1544) | public DestinationResolver getDestinationResolver() {
method setDestinationResolver (line 1548) | public void setDestinationResolver(DestinationResolver destinationReso...
method getErrorHandler (line 1552) | public ErrorHandler getErrorHandler() {
method setErrorHandler (line 1556) | public void setErrorHandler(ErrorHandler errorHandler) {
method getExceptionListener (line 1560) | public ExceptionListener getExceptionListener() {
method setExceptionListener (line 1564) | public void setExceptionListener(ExceptionListener exceptionListener) {
method getIdleConsumerLimit (line 1568) | public Integer getIdleConsumerLimit() {
method setIdleConsumerLimit (line 1572) | public void setIdleConsumerLimit(Integer idleConsumerLimit) {
method getIdleReceivesPerTaskLimit (line 1576) | public Integer getIdleReceivesPerTaskLimit() {
method setIdleReceivesPerTaskLimit (line 1580) | public void setIdleReceivesPerTaskLimit(Integer idleReceivesPerTaskLim...
method getIdleTaskExecutionLimit (line 1584) | public Integer getIdleTaskExecutionLimit() {
method setIdleTaskExecutionLimit (line 1588) | public void setIdleTaskExecutionLimit(Integer idleTaskExecutionLimit) {
method getIncludeAllJmsxProperties (line 1592) | public Boolean getIncludeAllJmsxProperties() {
method setIncludeAllJmsxProperties (line 1596) | public void setIncludeAllJmsxProperties(Boolean includeAllJmsxProperti...
method getIncludeCorrelationIDAsBytes (line 1600) | public Boolean getIncludeCorrelationIDAsBytes() {
method setIncludeCorrelationIDAsBytes (line 1604) | public void setIncludeCorrelationIDAsBytes(
method getJmsKeyFormatStrategy (line 1609) | public JmsKeyFormatStrategy getJmsKeyFormatStrategy() {
method setJmsKeyFormatStrategy (line 1613) | public void setJmsKeyFormatStrategy(
method getMapJmsMessage (line 1618) | public Boolean getMapJmsMessage() {
method setMapJmsMessage (line 1622) | public void setMapJmsMessage(Boolean mapJmsMessage) {
method getMaxMessagesPerTask (line 1626) | public Integer getMaxMessagesPerTask() {
method setMaxMessagesPerTask (line 1630) | public void setMaxMessagesPerTask(Integer maxMessagesPerTask) {
method getMessageConverter (line 1634) | public MessageConverter getMessageConverter() {
method setMessageConverter (line 1638) | public void setMessageConverter(MessageConverter messageConverter) {
method getMessageCreatedStrategy (line 1642) | public MessageCreatedStrategy getMessageCreatedStrategy() {
method setMessageCreatedStrategy (line 1646) | public void setMessageCreatedStrategy(
method getMessageIdEnabled (line 1651) | public Boolean getMessageIdEnabled() {
method setMessageIdEnabled (line 1655) | public void setMessageIdEnabled(Boolean messageIdEnabled) {
method getMessageListenerContainerFactory (line 1659) | public MessageListenerContainerFactory getMessageListenerContainerFact...
method setMessageListenerContainerFactory (line 1663) | public void setMessageListenerContainerFactory(
method getMessageTimestampEnabled (line 1668) | public Boolean getMessageTimestampEnabled() {
method setMessageTimestampEnabled (line 1672) | public void setMessageTimestampEnabled(Boolean messageTimestampEnabled) {
method getObjectMessageEnabled (line 1676) | public Boolean getObjectMessageEnabled() {
method setObjectMessageEnabled (line 1680) | public void setObjectMessageEnabled(Boolean objectMessageEnabled) {
method getPubSubNoLocal (line 1684) | public Boolean getPubSubNoLocal() {
method setPubSubNoLocal (line 1688) | public void setPubSubNoLocal(Boolean pubSubNoLocal) {
method getQueueBrowseStrategy (line 1692) | public QueueBrowseStrategy getQueueBrowseStrategy() {
method setQueueBrowseStrategy (line 1696) | public void setQueueBrowseStrategy(QueueBrowseStrategy queueBrowseStra...
method getReceiveTimeout (line 1700) | public Long getReceiveTimeout() {
method setReceiveTimeout (line 1704) | public void setReceiveTimeout(Long receiveTimeout) {
method getRecoveryInterval (line 1708) | public Long getRecoveryInterval() {
method setRecoveryInterval (line 1712) | public void setRecoveryInterval(Long recoveryInterval) {
method getRequestTimeoutCheckerInterval (line 1716) | public Long getRequestTimeoutCheckerInterval() {
method setRequestTimeoutCheckerInterval (line 1720) | public void setRequestTimeoutCheckerInterval(
method getServiceLocationEnabled (line 1725) | public Boolean getServiceLocationEnabled() {
method setServiceLocationEnabled (line 1729) | public void setServiceLocationEnabled(Boolean serviceLocationEnabled) {
method getSynchronous (line 1733) | public Boolean getSynchronous() {
method setSynchronous (line 1737) | public void setSynchronous(Boolean synchronous) {
method getTemporaryQueueResolver (line 1741) | public TemporaryQueueResolver getTemporaryQueueResolver() {
method setTemporaryQueueResolver (line 1745) | public void setTemporaryQueueResolver(
method getTransferException (line 1750) | public Boolean getTransferException() {
method setTransferException (line 1754) | public void setTransferException(Boolean transferException) {
method getTransferExchange (line 1758) | public Boolean getTransferExchange() {
method setTransferExchange (line 1762) | public void setTransferExchange(Boolean transferExchange) {
method getUseMessageIdAsCorrelationId (line 1766) | public Boolean getUseMessageIdAsCorrelationId() {
method setUseMessageIdAsCorrelationId (line 1770) | public void setUseMessageIdAsCorrelationId(
method getWaitForProvisionCorrelationToBeUpdatedCounter (line 1775) | public Integer getWaitForProvisionCorrelationToBeUpdatedCounter() {
method setWaitForProvisionCorrelationToBeUpdatedCounter (line 1779) | public void setWaitForProvisionCorrelationToBeUpdatedCounter(
method getWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime (line 1784) | public Long getWaitForProvisionCorrelationToBeUpdatedThreadSleepingTim...
method setWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime (line 1788) | public void setWaitForProvisionCorrelationToBeUpdatedThreadSleepingTime(
method getWaitForTemporaryReplyToToBeUpdatedCounter (line 1793) | public Integer getWaitForTemporaryReplyToToBeUpdatedCounter() {
method setWaitForTemporaryReplyToToBeUpdatedCounter (line 1797) | public void setWaitForTemporaryReplyToToBeUpdatedCounter(
method getWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime (line 1802) | public Long getWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime() {
method setWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime (line 1806) | public void setWaitForTemporaryReplyToToBeUpdatedThreadSleepingTime(
method getHeaderFilterStrategy (line 1811) | public HeaderFilterStrategy getHeaderFilterStrategy() {
method setHeaderFilterStrategy (line 1815) | public void setHeaderFilterStrategy(
method getErrorHandlerLoggingLevel (line 1820) | public LoggingLevel getErrorHandlerLoggingLevel() {
method setErrorHandlerLoggingLevel (line 1824) | public void setErrorHandlerLoggingLevel(
method getErrorHandlerLogStackTrace (line 1829) | public Boolean getErrorHandlerLogStackTrace() {
method setErrorHandlerLogStackTrace (line 1833) | public void setErrorHandlerLogStackTrace(Boolean errorHandlerLogStackT...
method getDeserializationFilter (line 1837) | public String getDeserializationFilter() {
method setDeserializationFilter (line 1841) | public void setDeserializationFilter(String deserializationFilter) {
method getKeyStorePassword (line 1845) | public String getKeyStorePassword() {
method setKeyStorePassword (line 1849) | public void setKeyStorePassword(String keyStorePassword) {
method getPassword (line 1853) | public String getPassword() {
method setPassword (line 1857) | public void setPassword(String password) {
method getTrustStorePassword (line 1861) | public String getTrustStorePassword() {
method setTrustStorePassword (line 1865) | public void setTrustStorePassword(String trustStorePassword) {
method getUsername (line 1869) | public String getUsername() {
method setUsername (line 1873) | public void setUsername(String username) {
method getTransacted (line 1877) | public Boolean getTransacted() {
method setTransacted (line 1881) | public void setTransacted(Boolean transacted) {
method getTransactedInOut (line 1885) | public Boolean getTransactedInOut() {
method setTransactedInOut (line 1889) | public void setTransactedInOut(Boolean transactedInOut) {
method getLazyCreateTransactionManager (line 1893) | public Boolean getLazyCreateTransactionManager() {
method setLazyCreateTransactionManager (line 1897) | public void setLazyCreateTransactionManager(
method getTransactionManager (line 1902) | public PlatformTransactionManager getTransactionManager() {
method setTransactionManager (line 1906) | public void setTransactionManager(
method getTransactionName (line 1911) | public String getTransactionName() {
method setTransactionName (line 1915) | public void setTransactionName(String transactionName) {
method getTransactionTimeout (line 1919) | public Integer getTransactionTimeout() {
method setTransactionTimeout (line 1923) | public void setTransactionTimeout(Integer transactionTimeout) {
FILE: components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentConverter.java
class AMQPComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 58) | public Object convert(
FILE: components-starter/camel-arangodb-starter/src/main/java/org/apache/camel/component/arangodb/springboot/ArangoDbComponentAutoConfiguration.java
class ArangoDbComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, ArangoDbCompon...
method ArangoDbComponentAutoConfiguration (line 48) | public ArangoDbComponentAutoConfiguration(
method configureArangoDbComponent (line 55) | @Lazy
FILE: components-starter/camel-arangodb-starter/src/main/java/org/apache/camel/component/arangodb/springboot/ArangoDbComponentConfiguration.java
class ArangoDbComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.arangodb")
method getConfiguration (line 128) | public ArangoDbConfiguration getConfiguration() {
method setConfiguration (line 132) | public void setConfiguration(ArangoDbConfiguration configuration) {
method getDocumentCollection (line 136) | public String getDocumentCollection() {
method setDocumentCollection (line 140) | public void setDocumentCollection(String documentCollection) {
method getEdgeCollection (line 144) | public String getEdgeCollection() {
method setEdgeCollection (line 148) | public void setEdgeCollection(String edgeCollection) {
method getGraph (line 152) | public String getGraph() {
method setGraph (line 156) | public void setGraph(String graph) {
method getHost (line 160) | public String getHost() {
method setHost (line 164) | public void setHost(String host) {
method getLazyStartProducer (line 168) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 172) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 176) | public ArangoDbOperation getOperation() {
method setOperation (line 180) | public void setOperation(ArangoDbOperation operation) {
method getPort (line 184) | public Integer getPort() {
method setPort (line 188) | public void setPort(Integer port) {
method getVertexCollection (line 192) | public String getVertexCollection() {
method setVertexCollection (line 196) | public void setVertexCollection(String vertexCollection) {
method getArangoDB (line 200) | public ArangoDB getArangoDB() {
method setArangoDB (line 204) | public void setArangoDB(ArangoDB arangoDB) {
method getAutowiredEnabled (line 208) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 212) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getVertx (line 216) | public Vertx getVertx() {
method setVertx (line 220) | public void setVertx(Vertx vertx) {
method getPassword (line 224) | public String getPassword() {
method setPassword (line 228) | public void setPassword(String password) {
method getUser (line 232) | public String getUser() {
method setUser (line 236) | public void setUser(String user) {
FILE: components-starter/camel-arangodb-starter/src/main/java/org/apache/camel/component/arangodb/springboot/ArangoDbComponentConverter.java
class ArangoDbComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 48) | public Object convert(
FILE: components-starter/camel-as2-starter/src/main/java/org/apache/camel/component/as2/springboot/AS2ComponentAutoConfiguration.java
class AS2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, AS2ComponentCo...
method AS2ComponentAutoConfiguration (line 48) | public AS2ComponentAutoConfiguration(
method configureAS2Component (line 55) | @Lazy
FILE: components-starter/camel-as2-starter/src/main/java/org/apache/camel/component/as2/springboot/AS2ComponentConfiguration.java
class AS2ComponentConfiguration (line 29) | @ConfigurationProperties(prefix = "camel.component.as2")
method getBridgeErrorHandler (line 88) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 92) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getLazyStartProducer (line 96) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 100) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getAutowiredEnabled (line 104) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 108) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getConfiguration (line 112) | public AS2Configuration getConfiguration() {
method setConfiguration (line 116) | public void setConfiguration(AS2Configuration configuration) {
method getSslContextParameters (line 120) | public SSLContextParameters getSslContextParameters() {
method setSslContextParameters (line 124) | public void setSslContextParameters(
method getUseGlobalSslContextParameters (line 129) | public Boolean getUseGlobalSslContextParameters() {
method setUseGlobalSslContextParameters (line 133) | public void setUseGlobalSslContextParameters(
FILE: components-starter/camel-as2-starter/src/main/java/org/apache/camel/component/as2/springboot/AS2ComponentConverter.java
class AS2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-asn1-starter/src/main/java/org/apache/camel/dataformat/asn1/springboot/ASN1DataFormatAutoConfiguration.java
class ASN1DataFormatAutoConfiguration (line 41) | @AutoConfiguration(after = CamelAutoConfiguration.class)
method ASN1DataFormatAutoConfiguration (line 51) | public ASN1DataFormatAutoConfiguration(
method configureASN1DataFormatFactory (line 60) | @Lazy
FILE: components-starter/camel-asn1-starter/src/main/java/org/apache/camel/dataformat/asn1/springboot/ASN1DataFormatConfiguration.java
class ASN1DataFormatConfiguration (line 27) | @ConfigurationProperties(prefix = "camel.dataformat.asn1")
method getUnmarshalType (line 48) | public String getUnmarshalType() {
method setUnmarshalType (line 52) | public void setUnmarshalType(String unmarshalType) {
method getUsingIterator (line 56) | public Boolean getUsingIterator() {
method setUsingIterator (line 60) | public void setUsingIterator(Boolean usingIterator) {
FILE: components-starter/camel-asterisk-starter/src/main/java/org/apache/camel/component/asterisk/springboot/AsteriskComponentAutoConfiguration.java
class AsteriskComponentAutoConfiguration (line 39) | @AutoConfiguration(after = CamelAutoConfiguration.class)
method AsteriskComponentAutoConfiguration (line 48) | public AsteriskComponentAutoConfiguration(
method configureAsteriskComponent (line 55) | @Lazy
FILE: components-starter/camel-asterisk-starter/src/main/java/org/apache/camel/component/asterisk/springboot/AsteriskComponentConfiguration.java
class AsteriskComponentConfiguration (line 27) | @ConfigurationProperties(prefix = "camel.component.asterisk")
method getBridgeErrorHandler (line 72) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 76) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getLazyStartProducer (line 80) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 84) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getAutowiredEnabled (line 88) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 92) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
FILE: components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentAutoConfiguration.java
class WebsocketComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, WebsocketCompo...
method WebsocketComponentAutoConfiguration (line 48) | public WebsocketComponentAutoConfiguration(
method configureWebsocketComponent (line 55) | @Lazy
FILE: components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentConfiguration.java
class WebsocketComponentConfiguration (line 31) | @ConfigurationProperties(prefix = "camel.component.atmosphere-websocket")
method getBridgeErrorHandler (line 129) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 133) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getMuteException (line 137) | public Boolean getMuteException() {
method setMuteException (line 141) | public void setMuteException(Boolean muteException) {
method getServletName (line 145) | public String getServletName() {
method setServletName (line 149) | public void setServletName(String servletName) {
method getAttachmentMultipartBinding (line 153) | public Boolean getAttachmentMultipartBinding() {
method setAttachmentMultipartBinding (line 157) | public void setAttachmentMultipartBinding(Boolean attachmentMultipartB...
method getFileNameExtWhitelist (line 161) | public String getFileNameExtWhitelist() {
method setFileNameExtWhitelist (line 165) | public void setFileNameExtWhitelist(String fileNameExtWhitelist) {
method getHttpRegistry (line 169) | public HttpRegistry getHttpRegistry() {
method setHttpRegistry (line 173) | public void setHttpRegistry(HttpRegistry httpRegistry) {
method getLazyStartProducer (line 177) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 181) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getAllowJavaSerializedObject (line 185) | public Boolean getAllowJavaSerializedObject() {
method setAllowJavaSerializedObject (line 189) | public void setAllowJavaSerializedObject(Boolean allowJavaSerializedOb...
method getAutowiredEnabled (line 193) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 197) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getHttpBinding (line 201) | public HttpBinding getHttpBinding() {
method setHttpBinding (line 205) | public void setHttpBinding(HttpBinding httpBinding) {
method getHttpConfiguration (line 209) | public HttpConfiguration getHttpConfiguration() {
method setHttpConfiguration (line 213) | public void setHttpConfiguration(HttpConfiguration httpConfiguration) {
method getHeaderFilterStrategy (line 217) | public HeaderFilterStrategy getHeaderFilterStrategy() {
method setHeaderFilterStrategy (line 221) | public void setHeaderFilterStrategy(
FILE: components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentConverter.java
class WebsocketComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 49) | public Object convert(
FILE: components-starter/camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentAutoConfiguration.java
class AtomComponentAutoConfiguration (line 39) | @AutoConfiguration(after = CamelAutoConfiguration.class)
method AtomComponentAutoConfiguration (line 48) | public AtomComponentAutoConfiguration(
method configureAtomComponent (line 55) | @Lazy
FILE: components-starter/camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentConfiguration.java
class AtomComponentConfiguration (line 27) | @ConfigurationProperties(prefix = "camel.component.atom")
method getBridgeErrorHandler (line 61) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 65) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getAutowiredEnabled (line 69) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 73) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
FILE: components-starter/camel-avro-rpc-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentAutoConfiguration.java
class AvroComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, AvroComponentC...
method AvroComponentAutoConfiguration (line 48) | public AvroComponentAutoConfiguration(
method configureAvroComponent (line 55) | @Lazy
FILE: components-starter/camel-avro-rpc-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentConfiguration.java
class AvroComponentConfiguration (line 29) | @ConfigurationProperties(prefix = "camel.component.avro")
method getProtocol (line 106) | public Protocol getProtocol() {
method setProtocol (line 110) | public void setProtocol(Protocol protocol) {
method getProtocolClassName (line 114) | public String getProtocolClassName() {
method setProtocolClassName (line 118) | public void setProtocolClassName(String protocolClassName) {
method getProtocolLocation (line 122) | public String getProtocolLocation() {
method setProtocolLocation (line 126) | public void setProtocolLocation(String protocolLocation) {
method getReflectionProtocol (line 130) | public Boolean getReflectionProtocol() {
method setReflectionProtocol (line 134) | public void setReflectionProtocol(Boolean reflectionProtocol) {
method getSingleParameter (line 138) | public Boolean getSingleParameter() {
method setSingleParameter (line 142) | public void setSingleParameter(Boolean singleParameter) {
method getUriAuthority (line 146) | public String getUriAuthority() {
method setUriAuthority (line 150) | public void setUriAuthority(String uriAuthority) {
method getBridgeErrorHandler (line 154) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 158) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getLazyStartProducer (line 162) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 166) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getAutowiredEnabled (line 170) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 174) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getConfiguration (line 178) | public AvroConfiguration getConfiguration() {
method setConfiguration (line 182) | public void setConfiguration(AvroConfiguration configuration) {
FILE: components-starter/camel-avro-rpc-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentConverter.java
class AvroComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatAutoConfiguration.java
class AvroDataFormatAutoConfiguration (line 41) | @AutoConfiguration(after = CamelAutoConfiguration.class)
method AvroDataFormatAutoConfiguration (line 51) | public AvroDataFormatAutoConfiguration(
method configureAvroDataFormatFactory (line 60) | @Lazy
FILE: components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatConfiguration.java
class AvroDataFormatConfiguration (line 27) | @ConfigurationProperties(prefix = "camel.dataformat.avro")
method getInstanceClassName (line 42) | public String getInstanceClassName() {
method setInstanceClassName (line 46) | public void setInstanceClassName(String instanceClassName) {
FILE: components-starter/camel-avro-starter/src/test/java/org/apache/camel/dataformat/avro/springboot/test/AvroGenericMarshaAndUnmarshaTest.java
class AvroGenericMarshaAndUnmarshaTest (line 44) | @DirtiesContext
method testGenericMarshalAndUnmarshal (line 60) | @Test
method marshalAndUnmarshalGeneric (line 65) | private void marshalAndUnmarshalGeneric(String inURI, String outURI) t...
class TestConfiguration (line 86) | @Configuration
method routeBuilder (line 89) | @Bean
method getSchema (line 103) | private Schema getSchema() throws IOException {
FILE: components-starter/camel-avro-starter/src/test/java/org/apache/camel/dataformat/avro/springboot/test/AvroMarshalAndUnmarshallTest.java
class AvroMarshalAndUnmarshallTest (line 40) | @DirtiesContext
method testMarshalAndUnmarshalWithDataFormat (line 56) | @Test
method testMarshalAndUnmarshalWithDSL1 (line 61) | @Test
method testMarshalAndUnmarshalWithDSL2 (line 66) | @Test
method testMarshalAndUnmarshalWithDSL3 (line 71) | @Test
method marshalAndUnmarshal (line 87) | private void marshalAndUnmarshal(String inURI, String outURI) throws E...
class TestConfiguration (line 108) | @Configuration
method routeBuilder (line 111) | @Bean
FILE: components-starter/camel-avro-starter/src/test/java/org/apache/camel/dataformat/avro/springboot/test/AvroMarshalAndUnmarshallXmlTest.java
class AvroMarshalAndUnmarshallXmlTest (line 39) | @DirtiesContext
method testMarshalAndUnmarshalWithDataFormat (line 54) | @Test
method testMarshalAndUnmarshalWithDSL1 (line 59) | @Test
method testMarshalAndUnmarshalWithDSL2 (line 64) | @Test
method testMarshalAndUnmarshalWithDSL3 (line 69) | @Test
method marshalAndUnmarshal (line 85) | private void marshalAndUnmarshal(String inURI, String outURI) throws E...
method getAvroDataFormat (line 102) | @Bean(name = "avro1")
FILE: components-starter/camel-avro-starter/src/test/java/org/apache/camel/dataformat/avro/springboot/test/Value.java
class Value (line 25) | @SuppressWarnings("all")
method getSchema (line 33) | public org.apache.avro.Schema getSchema() {
method get (line 38) | public java.lang.Object get(int field$) {
method put (line 48) | @SuppressWarnings(value = "unchecked")
method getValue (line 62) | public java.lang.CharSequence getValue() {
method setValue (line 72) | public void setValue(java.lang.CharSequence value) {
method newBuilder (line 77) | public static org.apache.camel.dataformat.avro.springboot.test.Value.B...
method newBuilder (line 82) | public static org.apache.camel.dataformat.avro.springboot.test.Value.B...
method newBuilder (line 88) | public static org.apache.camel.dataformat.avro.springboot.test.Value.B...
class Builder (line 96) | public static class Builder extends org.apache.avro.specific.SpecificR...
method Builder (line 102) | private Builder() {
method Builder (line 107) | private Builder(org.apache.camel.dataformat.avro.springboot.test.Val...
method Builder (line 112) | private Builder(org.apache.camel.dataformat.avro.springboot.test.Val...
method getValue (line 121) | public java.lang.CharSequence getValue() {
method setValue (line 126) | public org.apache.camel.dataformat.avro.springboot.test.Value.Builde...
method hasValue (line 134) | public boolean hasValue() {
method clearValue (line 139) | public org.apache.camel.dataformat.avro.springboot.test.Value.Builde...
method build (line 145) | @Override
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/agent/springboot/BedrockAgentComponentAutoConfiguration.java
class BedrockAgentComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, BedrockAgentCo...
method BedrockAgentComponentAutoConfiguration (line 48) | public BedrockAgentComponentAutoConfiguration(
method configureBedrockAgentComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/agent/springboot/BedrockAgentComponentConfiguration.java
class BedrockAgentComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws-bedrock-agent")
method getConfiguration (line 191) | public BedrockAgentConfiguration getConfiguration() {
method setConfiguration (line 195) | public void setConfiguration(BedrockAgentConfiguration configuration) {
method getDataSourceId (line 199) | public String getDataSourceId() {
method setDataSourceId (line 203) | public void setDataSourceId(String dataSourceId) {
method getKnowledgeBaseId (line 207) | public String getKnowledgeBaseId() {
method setKnowledgeBaseId (line 211) | public void setKnowledgeBaseId(String knowledgeBaseId) {
method getModelId (line 215) | public String getModelId() {
method setModelId (line 219) | public void setModelId(String modelId) {
method getOperation (line 223) | public BedrockAgentOperations getOperation() {
method setOperation (line 227) | public void setOperation(BedrockAgentOperations operation) {
method getOverrideEndpoint (line 231) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 235) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 239) | public Boolean getPojoRequest() {
method setPojoRequest (line 243) | public void setPojoRequest(Boolean pojoRequest) {
method getProfileCredentialsName (line 247) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 251) | public void setProfileCredentialsName(String profileCredentialsName) {
method getRegion (line 255) | public String getRegion() {
method setRegion (line 259) | public void setRegion(String region) {
method getUriEndpointOverride (line 263) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 267) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getUseDefaultCredentialsProvider (line 271) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 275) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 280) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 284) | public void setUseProfileCredentialsProvider(
method getBridgeErrorHandler (line 289) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 293) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getIngestionJobId (line 297) | public String getIngestionJobId() {
method setIngestionJobId (line 301) | public void setIngestionJobId(String ingestionJobId) {
method getLazyStartProducer (line 305) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 309) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getAutowiredEnabled (line 313) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 317) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getBedrockAgentClient (line 321) | public BedrockAgentClient getBedrockAgentClient() {
method setBedrockAgentClient (line 325) | public void setBedrockAgentClient(BedrockAgentClient bedrockAgentClien...
method getHealthCheckConsumerEnabled (line 329) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 333) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 337) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 341) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 345) | public String getProxyHost() {
method setProxyHost (line 349) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 353) | public Integer getProxyPort() {
method setProxyPort (line 357) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 361) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 365) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 369) | public String getAccessKey() {
method setAccessKey (line 373) | public void setAccessKey(String accessKey) {
method getSecretKey (line 377) | public String getSecretKey() {
method setSecretKey (line 381) | public void setSecretKey(String secretKey) {
method getSessionToken (line 385) | public String getSessionToken() {
method setSessionToken (line 389) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 393) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 397) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseSessionCredentials (line 401) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 405) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/agent/springboot/BedrockAgentComponentConverter.java
class BedrockAgentComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/agentruntime/springboot/BedrockAgentRuntimeComponentAutoConfiguration.java
class BedrockAgentRuntimeComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, BedrockAgentRu...
method BedrockAgentRuntimeComponentAutoConfiguration (line 48) | public BedrockAgentRuntimeComponentAutoConfiguration(
method configureBedrockAgentRuntimeComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/agentruntime/springboot/BedrockAgentRuntimeComponentConfiguration.java
class BedrockAgentRuntimeComponentConfiguration (line 33) | @ConfigurationProperties(prefix = "camel.component.aws-bedrock-agent-run...
method getConfiguration (line 197) | public BedrockAgentRuntimeConfiguration getConfiguration() {
method setConfiguration (line 201) | public void setConfiguration(BedrockAgentRuntimeConfiguration configur...
method getKnowledgeBaseId (line 205) | public String getKnowledgeBaseId() {
method setKnowledgeBaseId (line 209) | public void setKnowledgeBaseId(String knowledgeBaseId) {
method getLazyStartProducer (line 213) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 217) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getModelId (line 221) | public String getModelId() {
method setModelId (line 225) | public void setModelId(String modelId) {
method getOperation (line 229) | public BedrockAgentRuntimeOperations getOperation() {
method setOperation (line 233) | public void setOperation(BedrockAgentRuntimeOperations operation) {
method getOverrideEndpoint (line 237) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 241) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 245) | public Boolean getPojoRequest() {
method setPojoRequest (line 249) | public void setPojoRequest(Boolean pojoRequest) {
method getProfileCredentialsName (line 253) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 257) | public void setProfileCredentialsName(String profileCredentialsName) {
method getRegion (line 261) | public String getRegion() {
method setRegion (line 265) | public void setRegion(String region) {
method getUriEndpointOverride (line 269) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 273) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getUseDefaultCredentialsProvider (line 277) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 281) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 286) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 290) | public void setUseProfileCredentialsProvider(
method getAutowiredEnabled (line 295) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 299) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getBedrockAgentRuntimeAsyncClient (line 303) | public BedrockAgentRuntimeAsyncClient getBedrockAgentRuntimeAsyncClien...
method setBedrockAgentRuntimeAsyncClient (line 307) | public void setBedrockAgentRuntimeAsyncClient(
method getBedrockAgentRuntimeClient (line 312) | public BedrockAgentRuntimeClient getBedrockAgentRuntimeClient() {
method setBedrockAgentRuntimeClient (line 316) | public void setBedrockAgentRuntimeClient(
method getEnableTrace (line 321) | public Boolean getEnableTrace() {
method setEnableTrace (line 325) | public void setEnableTrace(Boolean enableTrace) {
method getFlowAliasIdentifier (line 329) | public String getFlowAliasIdentifier() {
method setFlowAliasIdentifier (line 333) | public void setFlowAliasIdentifier(String flowAliasIdentifier) {
method getFlowIdentifier (line 337) | public String getFlowIdentifier() {
method setFlowIdentifier (line 341) | public void setFlowIdentifier(String flowIdentifier) {
method getHealthCheckConsumerEnabled (line 345) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 349) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 353) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 357) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 361) | public String getProxyHost() {
method setProxyHost (line 365) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 369) | public Integer getProxyPort() {
method setProxyPort (line 373) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 377) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 381) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 385) | public String getAccessKey() {
method setAccessKey (line 389) | public void setAccessKey(String accessKey) {
method getSecretKey (line 393) | public String getSecretKey() {
method setSecretKey (line 397) | public void setSecretKey(String secretKey) {
method getSessionToken (line 401) | public String getSessionToken() {
method setSessionToken (line 405) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 409) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 413) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseSessionCredentials (line 417) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 421) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/agentruntime/springboot/BedrockAgentRuntimeComponentConverter.java
class BedrockAgentRuntimeComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 42) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 50) | public Object convert(
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/runtime/springboot/BedrockComponentAutoConfiguration.java
class BedrockComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, BedrockCompone...
method BedrockComponentAutoConfiguration (line 48) | public BedrockComponentAutoConfiguration(
method configureBedrockComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/runtime/springboot/BedrockComponentConfiguration.java
class BedrockComponentConfiguration (line 33) | @ConfigurationProperties(prefix = "camel.component.aws-bedrock")
method getConfiguration (line 197) | public BedrockConfiguration getConfiguration() {
method setConfiguration (line 201) | public void setConfiguration(BedrockConfiguration configuration) {
method getGuardrailIdentifier (line 205) | public String getGuardrailIdentifier() {
method setGuardrailIdentifier (line 209) | public void setGuardrailIdentifier(String guardrailIdentifier) {
method getGuardrailTrace (line 213) | public Boolean getGuardrailTrace() {
method setGuardrailTrace (line 217) | public void setGuardrailTrace(Boolean guardrailTrace) {
method getGuardrailVersion (line 221) | public String getGuardrailVersion() {
method setGuardrailVersion (line 225) | public void setGuardrailVersion(String guardrailVersion) {
method getIncludeStreamingMetadata (line 229) | public Boolean getIncludeStreamingMetadata() {
method setIncludeStreamingMetadata (line 233) | public void setIncludeStreamingMetadata(Boolean includeStreamingMetada...
method getLazyStartProducer (line 237) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 241) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getModelId (line 245) | public String getModelId() {
method setModelId (line 249) | public void setModelId(String modelId) {
method getOperation (line 253) | public BedrockOperations getOperation() {
method setOperation (line 257) | public void setOperation(BedrockOperations operation) {
method getOverrideEndpoint (line 261) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 265) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 269) | public Boolean getPojoRequest() {
method setPojoRequest (line 273) | public void setPojoRequest(Boolean pojoRequest) {
method getProfileCredentialsName (line 277) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 281) | public void setProfileCredentialsName(String profileCredentialsName) {
method getRegion (line 285) | public String getRegion() {
method setRegion (line 289) | public void setRegion(String region) {
method getStreamOutputMode (line 293) | public String getStreamOutputMode() {
method setStreamOutputMode (line 297) | public void setStreamOutputMode(String streamOutputMode) {
method getUriEndpointOverride (line 301) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 305) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getUseDefaultCredentialsProvider (line 309) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 313) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 318) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 322) | public void setUseProfileCredentialsProvider(
method getAutowiredEnabled (line 327) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 331) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getBedrockRuntimeAsyncClient (line 335) | public BedrockRuntimeAsyncClient getBedrockRuntimeAsyncClient() {
method setBedrockRuntimeAsyncClient (line 339) | public void setBedrockRuntimeAsyncClient(
method getBedrockRuntimeClient (line 344) | public BedrockRuntimeClient getBedrockRuntimeClient() {
method setBedrockRuntimeClient (line 348) | public void setBedrockRuntimeClient(
method getHealthCheckConsumerEnabled (line 353) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 357) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 361) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 365) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 369) | public String getProxyHost() {
method setProxyHost (line 373) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 377) | public Integer getProxyPort() {
method setProxyPort (line 381) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 385) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 389) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 393) | public String getAccessKey() {
method setAccessKey (line 397) | public void setAccessKey(String accessKey) {
method getSecretKey (line 401) | public String getSecretKey() {
method setSecretKey (line 405) | public void setSecretKey(String secretKey) {
method getSessionToken (line 409) | public String getSessionToken() {
method setSessionToken (line 413) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 417) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 421) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseSessionCredentials (line 425) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 429) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-bedrock-starter/src/main/java/org/apache/camel/component/aws2/bedrock/runtime/springboot/BedrockComponentConverter.java
class BedrockComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 48) | public Object convert(
FILE: components-starter/camel-aws-cloudtrail-starter/src/main/java/org/apache/camel/component/aws/cloudtrail/springboot/CloudtrailComponentAutoConfiguration.java
class CloudtrailComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, CloudtrailComp...
method CloudtrailComponentAutoConfiguration (line 48) | public CloudtrailComponentAutoConfiguration(
method configureCloudtrailComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-cloudtrail-starter/src/main/java/org/apache/camel/component/aws/cloudtrail/springboot/CloudtrailComponentConfiguration.java
class CloudtrailComponentConfiguration (line 31) | @ConfigurationProperties(prefix = "camel.component.aws-cloudtrail")
method getBridgeErrorHandler (line 162) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 166) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getConfiguration (line 170) | public CloudtrailConfiguration getConfiguration() {
method setConfiguration (line 174) | public void setConfiguration(CloudtrailConfiguration configuration) {
method getEventSource (line 178) | public String getEventSource() {
method setEventSource (line 182) | public void setEventSource(String eventSource) {
method getMaxResults (line 186) | public Integer getMaxResults() {
method setMaxResults (line 190) | public void setMaxResults(Integer maxResults) {
method getOverrideEndpoint (line 194) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 198) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getRegion (line 202) | public String getRegion() {
method setRegion (line 206) | public void setRegion(String region) {
method getUriEndpointOverride (line 210) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 214) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAutowiredEnabled (line 218) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 222) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getCloudTrailClient (line 226) | public CloudTrailClient getCloudTrailClient() {
method setCloudTrailClient (line 230) | public void setCloudTrailClient(CloudTrailClient cloudTrailClient) {
method getHealthCheckConsumerEnabled (line 234) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 238) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 242) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 246) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 250) | public String getProxyHost() {
method setProxyHost (line 254) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 258) | public Integer getProxyPort() {
method setProxyPort (line 262) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 266) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 270) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 274) | public String getAccessKey() {
method setAccessKey (line 278) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 282) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 286) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 290) | public String getSecretKey() {
method setSecretKey (line 294) | public void setSecretKey(String secretKey) {
method getSessionToken (line 298) | public String getSessionToken() {
method setSessionToken (line 302) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 306) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 310) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 314) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 318) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 323) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 327) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 332) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 336) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-cloudtrail-starter/src/main/java/org/apache/camel/component/aws/cloudtrail/springboot/CloudtrailComponentConverter.java
class CloudtrailComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws-config-starter/src/main/java/org/apache/camel/component/aws/config/springboot/AWSConfigComponentAutoConfiguration.java
class AWSConfigComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, AWSConfigCompo...
method AWSConfigComponentAutoConfiguration (line 48) | public AWSConfigComponentAutoConfiguration(
method configureAWSConfigComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-config-starter/src/main/java/org/apache/camel/component/aws/config/springboot/AWSConfigComponentConfiguration.java
class AWSConfigComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws-config")
method getConfiguration (line 160) | public AWSConfigConfiguration getConfiguration() {
method setConfiguration (line 164) | public void setConfiguration(AWSConfigConfiguration configuration) {
method getLazyStartProducer (line 168) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 172) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 176) | public AWSConfigOperations getOperation() {
method setOperation (line 180) | public void setOperation(AWSConfigOperations operation) {
method getOverrideEndpoint (line 184) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 188) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 192) | public Boolean getPojoRequest() {
method setPojoRequest (line 196) | public void setPojoRequest(Boolean pojoRequest) {
method getRegion (line 200) | public String getRegion() {
method setRegion (line 204) | public void setRegion(String region) {
method getUriEndpointOverride (line 208) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 212) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAutowiredEnabled (line 216) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 220) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getConfigClient (line 224) | public ConfigClient getConfigClient() {
method setConfigClient (line 228) | public void setConfigClient(ConfigClient configClient) {
method getHealthCheckConsumerEnabled (line 232) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 236) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 240) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 244) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 248) | public String getProxyHost() {
method setProxyHost (line 252) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 256) | public Integer getProxyPort() {
method setProxyPort (line 260) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 264) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 268) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 272) | public String getAccessKey() {
method setAccessKey (line 276) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 280) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 284) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 288) | public String getSecretKey() {
method setSecretKey (line 292) | public void setSecretKey(String secretKey) {
method getSessionToken (line 296) | public String getSessionToken() {
method setSessionToken (line 300) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 304) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 308) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 312) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 316) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 321) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 325) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 330) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 334) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-config-starter/src/main/java/org/apache/camel/component/aws/config/springboot/AWSConfigComponentConverter.java
class AWSConfigComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws-parameter-store-starter/src/main/java/org/apache/camel/component/aws/parameterstore/springboot/ParameterStoreComponentAutoConfiguration.java
class ParameterStoreComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, ParameterStore...
method ParameterStoreComponentAutoConfiguration (line 48) | public ParameterStoreComponentAutoConfiguration(
method configureParameterStoreComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-parameter-store-starter/src/main/java/org/apache/camel/component/aws/parameterstore/springboot/ParameterStoreComponentConfiguration.java
class ParameterStoreComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws-parameter-store")
method getConfiguration (line 161) | public ParameterStoreConfiguration getConfiguration() {
method setConfiguration (line 165) | public void setConfiguration(ParameterStoreConfiguration configuration) {
method getLazyStartProducer (line 169) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 173) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 177) | public ParameterStoreOperations getOperation() {
method setOperation (line 181) | public void setOperation(ParameterStoreOperations operation) {
method getOverrideEndpoint (line 185) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 189) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 193) | public Boolean getPojoRequest() {
method setPojoRequest (line 197) | public void setPojoRequest(Boolean pojoRequest) {
method getProfileCredentialsName (line 201) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 205) | public void setProfileCredentialsName(String profileCredentialsName) {
method getRegion (line 209) | public String getRegion() {
method setRegion (line 213) | public void setRegion(String region) {
method getUriEndpointOverride (line 217) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 221) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getUseProfileCredentialsProvider (line 225) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 229) | public void setUseProfileCredentialsProvider(
method getAutowiredEnabled (line 234) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 238) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getSsmClient (line 242) | public SsmClient getSsmClient() {
method setSsmClient (line 246) | public void setSsmClient(SsmClient ssmClient) {
method getHealthCheckConsumerEnabled (line 250) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 254) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 258) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 262) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 266) | public String getProxyHost() {
method setProxyHost (line 270) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 274) | public Integer getProxyPort() {
method setProxyPort (line 278) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 282) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 286) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 290) | public String getAccessKey() {
method setAccessKey (line 294) | public void setAccessKey(String accessKey) {
method getSecretKey (line 298) | public String getSecretKey() {
method setSecretKey (line 302) | public void setSecretKey(String secretKey) {
method getSessionToken (line 306) | public String getSessionToken() {
method setSessionToken (line 310) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 314) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 318) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 322) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 326) | public void setUseDefaultCredentialsProvider(
method getUseSessionCredentials (line 331) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 335) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-parameter-store-starter/src/main/java/org/apache/camel/component/aws/parameterstore/springboot/ParameterStoreComponentConverter.java
class ParameterStoreComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws-secrets-manager-starter/src/main/java/org/apache/camel/component/aws/secretsmanager/springboot/SecretsManagerComponentAutoConfiguration.java
class SecretsManagerComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, SecretsManager...
method SecretsManagerComponentAutoConfiguration (line 48) | public SecretsManagerComponentAutoConfiguration(
method configureSecretsManagerComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-secrets-manager-starter/src/main/java/org/apache/camel/component/aws/secretsmanager/springboot/SecretsManagerComponentConfiguration.java
class SecretsManagerComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws-secrets-manager")
method getBinaryPayload (line 165) | public Boolean getBinaryPayload() {
method setBinaryPayload (line 169) | public void setBinaryPayload(Boolean binaryPayload) {
method getConfiguration (line 173) | public SecretsManagerConfiguration getConfiguration() {
method setConfiguration (line 177) | public void setConfiguration(SecretsManagerConfiguration configuration) {
method getLazyStartProducer (line 181) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 185) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 189) | public SecretsManagerOperations getOperation() {
method setOperation (line 193) | public void setOperation(SecretsManagerOperations operation) {
method getOverrideEndpoint (line 197) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 201) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 205) | public Boolean getPojoRequest() {
method setPojoRequest (line 209) | public void setPojoRequest(Boolean pojoRequest) {
method getProfileCredentialsName (line 213) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 217) | public void setProfileCredentialsName(String profileCredentialsName) {
method getRegion (line 221) | public String getRegion() {
method setRegion (line 225) | public void setRegion(String region) {
method getUriEndpointOverride (line 229) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 233) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getUseProfileCredentialsProvider (line 237) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 241) | public void setUseProfileCredentialsProvider(
method getAutowiredEnabled (line 246) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 250) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getSecretsManagerClient (line 254) | public SecretsManagerClient getSecretsManagerClient() {
method setSecretsManagerClient (line 258) | public void setSecretsManagerClient(
method getHealthCheckConsumerEnabled (line 263) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 267) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 271) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 275) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 279) | public String getProxyHost() {
method setProxyHost (line 283) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 287) | public Integer getProxyPort() {
method setProxyPort (line 291) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 295) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 299) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 303) | public String getAccessKey() {
method setAccessKey (line 307) | public void setAccessKey(String accessKey) {
method getSecretKey (line 311) | public String getSecretKey() {
method setSecretKey (line 315) | public void setSecretKey(String secretKey) {
method getSessionToken (line 319) | public String getSessionToken() {
method setSessionToken (line 323) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 327) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 331) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 335) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 339) | public void setUseDefaultCredentialsProvider(
method getUseSessionCredentials (line 344) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 348) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-secrets-manager-starter/src/main/java/org/apache/camel/component/aws/secretsmanager/springboot/SecretsManagerComponentConverter.java
class SecretsManagerComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws-secrets-manager-starter/src/main/java/org/apache/camel/component/aws/secretsmanager/springboot/SpringBootAwsSecretsManagerPropertiesParser.java
class SpringBootAwsSecretsManagerPropertiesParser (line 40) | public class SpringBootAwsSecretsManagerPropertiesParser implements Appl...
method onApplicationEvent (line 43) | @Override
FILE: components-starter/camel-aws-secrets-manager-starter/src/test/java/org/apache/camel/component/aws/secretsmanager/springboot/EarlyResolvedPropertiesTest.java
class EarlyResolvedPropertiesTest (line 41) | @CamelSpringBootTest
method setup (line 61) | @BeforeAll
method teardown (line 79) | @AfterAll
method testEarlyResolvedProperties (line 100) | @Test
class TestConfiguration (line 106) | @Configuration
FILE: components-starter/camel-aws-security-hub-starter/src/main/java/org/apache/camel/component/aws/securityhub/springboot/SecurityHubComponentAutoConfiguration.java
class SecurityHubComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, SecurityHubCom...
method SecurityHubComponentAutoConfiguration (line 48) | public SecurityHubComponentAutoConfiguration(
method configureSecurityHubComponent (line 55) | @Lazy
FILE: components-starter/camel-aws-security-hub-starter/src/main/java/org/apache/camel/component/aws/securityhub/springboot/SecurityHubComponentConfiguration.java
class SecurityHubComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws-security-hub")
method getConfiguration (line 160) | public SecurityHubConfiguration getConfiguration() {
method setConfiguration (line 164) | public void setConfiguration(SecurityHubConfiguration configuration) {
method getLazyStartProducer (line 168) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 172) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 176) | public SecurityHubOperations getOperation() {
method setOperation (line 180) | public void setOperation(SecurityHubOperations operation) {
method getOverrideEndpoint (line 184) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 188) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 192) | public Boolean getPojoRequest() {
method setPojoRequest (line 196) | public void setPojoRequest(Boolean pojoRequest) {
method getRegion (line 200) | public String getRegion() {
method setRegion (line 204) | public void setRegion(String region) {
method getUriEndpointOverride (line 208) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 212) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAutowiredEnabled (line 216) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 220) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getSecurityHubClient (line 224) | public SecurityHubClient getSecurityHubClient() {
method setSecurityHubClient (line 228) | public void setSecurityHubClient(SecurityHubClient securityHubClient) {
method getHealthCheckConsumerEnabled (line 232) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 236) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 240) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 244) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 248) | public String getProxyHost() {
method setProxyHost (line 252) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 256) | public Integer getProxyPort() {
method setProxyPort (line 260) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 264) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 268) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 272) | public String getAccessKey() {
method setAccessKey (line 276) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 280) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 284) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 288) | public String getSecretKey() {
method setSecretKey (line 292) | public void setSecretKey(String secretKey) {
method getSessionToken (line 296) | public String getSessionToken() {
method setSessionToken (line 300) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 304) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 308) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 312) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 316) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 321) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 325) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 330) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 334) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws-security-hub-starter/src/main/java/org/apache/camel/component/aws/securityhub/springboot/SecurityHubComponentConverter.java
class SecurityHubComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-athena-starter/src/main/java/org/apache/camel/component/aws2/athena/springboot/Athena2ComponentAutoConfiguration.java
class Athena2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, Athena2Compone...
method Athena2ComponentAutoConfiguration (line 48) | public Athena2ComponentAutoConfiguration(
method configureAthena2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-athena-starter/src/main/java/org/apache/camel/component/aws2/athena/springboot/Athena2ComponentConfiguration.java
class Athena2ComponentConfiguration (line 34) | @ConfigurationProperties(prefix = "camel.component.aws2-athena")
method getConfiguration (line 260) | public Athena2Configuration getConfiguration() {
method setConfiguration (line 264) | public void setConfiguration(Athena2Configuration configuration) {
method getDatabase (line 268) | public String getDatabase() {
method setDatabase (line 272) | public void setDatabase(String database) {
method getDelay (line 276) | public Long getDelay() {
method setDelay (line 280) | public void setDelay(Long delay) {
method getInitialDelay (line 284) | public Long getInitialDelay() {
method setInitialDelay (line 288) | public void setInitialDelay(Long initialDelay) {
method getLazyStartProducer (line 292) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 296) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getMaxAttempts (line 300) | public Integer getMaxAttempts() {
method setMaxAttempts (line 304) | public void setMaxAttempts(Integer maxAttempts) {
method getMaxResults (line 308) | public Integer getMaxResults() {
method setMaxResults (line 312) | public void setMaxResults(Integer maxResults) {
method getNextToken (line 316) | public String getNextToken() {
method setNextToken (line 320) | public void setNextToken(String nextToken) {
method getOperation (line 324) | public Athena2Operations getOperation() {
method setOperation (line 328) | public void setOperation(Athena2Operations operation) {
method getOutputLocation (line 332) | public String getOutputLocation() {
method setOutputLocation (line 336) | public void setOutputLocation(String outputLocation) {
method getOutputType (line 340) | public Athena2OutputType getOutputType() {
method setOutputType (line 344) | public void setOutputType(Athena2OutputType outputType) {
method getOverrideEndpoint (line 348) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 352) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getQueryExecutionId (line 356) | public String getQueryExecutionId() {
method setQueryExecutionId (line 360) | public void setQueryExecutionId(String queryExecutionId) {
method getQueryString (line 364) | public String getQueryString() {
method setQueryString (line 368) | public void setQueryString(String queryString) {
method getRegion (line 372) | public String getRegion() {
method setRegion (line 376) | public void setRegion(String region) {
method getResetWaitTimeoutOnRetry (line 380) | public Boolean getResetWaitTimeoutOnRetry() {
method setResetWaitTimeoutOnRetry (line 384) | public void setResetWaitTimeoutOnRetry(Boolean resetWaitTimeoutOnRetry) {
method getRetry (line 388) | public String getRetry() {
method setRetry (line 392) | public void setRetry(String retry) {
method getUriEndpointOverride (line 396) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 400) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getWaitTimeout (line 404) | public Long getWaitTimeout() {
method setWaitTimeout (line 408) | public void setWaitTimeout(Long waitTimeout) {
method getWorkGroup (line 412) | public String getWorkGroup() {
method setWorkGroup (line 416) | public void setWorkGroup(String workGroup) {
method getAmazonAthenaClient (line 420) | public AthenaClient getAmazonAthenaClient() {
method setAmazonAthenaClient (line 424) | public void setAmazonAthenaClient(AthenaClient amazonAthenaClient) {
method getAutowiredEnabled (line 428) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 432) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getClientRequestToken (line 436) | public String getClientRequestToken() {
method setClientRequestToken (line 440) | public void setClientRequestToken(String clientRequestToken) {
method getIncludeTrace (line 444) | public Boolean getIncludeTrace() {
method setIncludeTrace (line 448) | public void setIncludeTrace(Boolean includeTrace) {
method getHealthCheckConsumerEnabled (line 452) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 456) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 460) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 464) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 468) | public String getProxyHost() {
method setProxyHost (line 472) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 476) | public Integer getProxyPort() {
method setProxyPort (line 480) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 484) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 488) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 492) | public String getAccessKey() {
method setAccessKey (line 496) | public void setAccessKey(String accessKey) {
method getEncryptionOption (line 500) | public EncryptionOption getEncryptionOption() {
method setEncryptionOption (line 504) | public void setEncryptionOption(EncryptionOption encryptionOption) {
method getKmsKey (line 508) | public String getKmsKey() {
method setKmsKey (line 512) | public void setKmsKey(String kmsKey) {
method getProfileCredentialsName (line 516) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 520) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 524) | public String getSecretKey() {
method setSecretKey (line 528) | public void setSecretKey(String secretKey) {
method getSessionToken (line 532) | public String getSessionToken() {
method setSessionToken (line 536) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 540) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 544) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 548) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 552) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 557) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 561) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 566) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 570) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-athena-starter/src/main/java/org/apache/camel/component/aws2/athena/springboot/Athena2ComponentConverter.java
class Athena2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-comprehend-starter/src/main/java/org/apache/camel/component/aws2/comprehend/springboot/Comprehend2ComponentAutoConfiguration.java
class Comprehend2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, Comprehend2Com...
method Comprehend2ComponentAutoConfiguration (line 48) | public Comprehend2ComponentAutoConfiguration(
method configureComprehend2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-comprehend-starter/src/main/java/org/apache/camel/component/aws2/comprehend/springboot/Comprehend2ComponentConfiguration.java
class Comprehend2ComponentConfiguration (line 33) | @ConfigurationProperties(prefix = "camel.component.aws2-comprehend")
method getConfiguration (line 172) | public Comprehend2Configuration getConfiguration() {
method setConfiguration (line 176) | public void setConfiguration(Comprehend2Configuration configuration) {
method getEndpointArn (line 180) | public String getEndpointArn() {
method setEndpointArn (line 184) | public void setEndpointArn(String endpointArn) {
method getLanguageCode (line 188) | public String getLanguageCode() {
method setLanguageCode (line 192) | public void setLanguageCode(String languageCode) {
method getLazyStartProducer (line 196) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 200) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 204) | public Comprehend2Operations getOperation() {
method setOperation (line 208) | public void setOperation(Comprehend2Operations operation) {
method getOverrideEndpoint (line 212) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 216) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 220) | public Boolean getPojoRequest() {
method setPojoRequest (line 224) | public void setPojoRequest(Boolean pojoRequest) {
method getRegion (line 228) | public String getRegion() {
method setRegion (line 232) | public void setRegion(String region) {
method getUriEndpointOverride (line 236) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 240) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAutowiredEnabled (line 244) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 248) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getComprehendClient (line 252) | public ComprehendClient getComprehendClient() {
method setComprehendClient (line 256) | public void setComprehendClient(ComprehendClient comprehendClient) {
method getHealthCheckConsumerEnabled (line 260) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 264) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 268) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 272) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 276) | public String getProxyHost() {
method setProxyHost (line 280) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 284) | public Integer getProxyPort() {
method setProxyPort (line 288) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 292) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 296) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 300) | public String getAccessKey() {
method setAccessKey (line 304) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 308) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 312) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 316) | public String getSecretKey() {
method setSecretKey (line 320) | public void setSecretKey(String secretKey) {
method getSessionToken (line 324) | public String getSessionToken() {
method setSessionToken (line 328) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 332) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 336) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 340) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 344) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 349) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 353) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 358) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 362) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-comprehend-starter/src/main/java/org/apache/camel/component/aws2/comprehend/springboot/Comprehend2ComponentConverter.java
class Comprehend2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-cw-starter/src/main/java/org/apache/camel/component/aws2/cw/springboot/Cw2ComponentAutoConfiguration.java
class Cw2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, Cw2ComponentCo...
method Cw2ComponentAutoConfiguration (line 48) | public Cw2ComponentAutoConfiguration(
method configureCw2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-cw-starter/src/main/java/org/apache/camel/component/aws2/cw/springboot/Cw2ComponentConfiguration.java
class Cw2ComponentConfiguration (line 33) | @ConfigurationProperties(prefix = "camel.component.aws2-cw")
method getConfiguration (line 172) | public Cw2Configuration getConfiguration() {
method setConfiguration (line 176) | public void setConfiguration(Cw2Configuration configuration) {
method getLazyStartProducer (line 180) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 184) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getName (line 188) | public String getName() {
method setName (line 192) | public void setName(String name) {
method getOperation (line 196) | public Cw2Operations getOperation() {
method setOperation (line 200) | public void setOperation(Cw2Operations operation) {
method getOverrideEndpoint (line 204) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 208) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getRegion (line 212) | public String getRegion() {
method setRegion (line 216) | public void setRegion(String region) {
method getTimestamp (line 220) | public Instant getTimestamp() {
method setTimestamp (line 224) | public void setTimestamp(Instant timestamp) {
method getUnit (line 228) | public String getUnit() {
method setUnit (line 232) | public void setUnit(String unit) {
method getUriEndpointOverride (line 236) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 240) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getValue (line 244) | public Double getValue() {
method setValue (line 248) | public void setValue(Double value) {
method getAmazonCwClient (line 252) | public CloudWatchClient getAmazonCwClient() {
method setAmazonCwClient (line 256) | public void setAmazonCwClient(CloudWatchClient amazonCwClient) {
method getAutowiredEnabled (line 260) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 264) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getHealthCheckConsumerEnabled (line 268) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 272) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 276) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 280) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 284) | public String getProxyHost() {
method setProxyHost (line 288) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 292) | public Integer getProxyPort() {
method setProxyPort (line 296) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 300) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 304) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 308) | public String getAccessKey() {
method setAccessKey (line 312) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 316) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 320) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 324) | public String getSecretKey() {
method setSecretKey (line 328) | public void setSecretKey(String secretKey) {
method getSessionToken (line 332) | public String getSessionToken() {
method setSessionToken (line 336) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 340) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 344) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 348) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 352) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 357) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 361) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 366) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 370) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-cw-starter/src/main/java/org/apache/camel/component/aws2/cw/springboot/Cw2ComponentConverter.java
class Cw2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-cw-starter/src/test/java/org/apache/camel/component/aws2/cw/BaseCw.java
class BaseCw (line 31) | public class BaseCw {
method assertMockEndpointsSatisfied (line 42) | protected void assertMockEndpointsSatisfied() throws InterruptedExcept...
class TestConfiguration (line 50) | @Configuration
method cloudWatchClient (line 53) | @Bean
FILE: components-starter/camel-aws2-cw-starter/src/test/java/org/apache/camel/component/aws2/cw/CwComponentTest.java
class CwComponentTest (line 43) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method sendInOnly (line 53) | @Test
class TestConfiguration (line 80) | @Configuration
method routeBuilder (line 82) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/main/java/org/apache/camel/component/aws2/ddb/springboot/Ddb2ComponentAutoConfiguration.java
class Ddb2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, Ddb2ComponentC...
method Ddb2ComponentAutoConfiguration (line 48) | public Ddb2ComponentAutoConfiguration(
method configureDdb2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-ddb-starter/src/main/java/org/apache/camel/component/aws2/ddb/springboot/Ddb2ComponentConfiguration.java
class Ddb2ComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws2-ddb")
method getConfiguration (line 187) | public Ddb2Configuration getConfiguration() {
method setConfiguration (line 191) | public void setConfiguration(Ddb2Configuration configuration) {
method getConsistentRead (line 195) | public Boolean getConsistentRead() {
method setConsistentRead (line 199) | public void setConsistentRead(Boolean consistentRead) {
method getEnabledInitialDescribeTable (line 203) | public Boolean getEnabledInitialDescribeTable() {
method setEnabledInitialDescribeTable (line 207) | public void setEnabledInitialDescribeTable(
method getKeyAttributeName (line 212) | public String getKeyAttributeName() {
method setKeyAttributeName (line 216) | public void setKeyAttributeName(String keyAttributeName) {
method getKeyAttributeType (line 220) | public String getKeyAttributeType() {
method setKeyAttributeType (line 224) | public void setKeyAttributeType(String keyAttributeType) {
method getKeyScalarType (line 228) | public String getKeyScalarType() {
method setKeyScalarType (line 232) | public void setKeyScalarType(String keyScalarType) {
method getLazyStartProducer (line 236) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 240) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 244) | public Ddb2Operations getOperation() {
method setOperation (line 248) | public void setOperation(Ddb2Operations operation) {
method getOverrideEndpoint (line 252) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 256) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getReadCapacity (line 260) | public Long getReadCapacity() {
method setReadCapacity (line 264) | public void setReadCapacity(Long readCapacity) {
method getRegion (line 268) | public String getRegion() {
method setRegion (line 272) | public void setRegion(String region) {
method getUriEndpointOverride (line 276) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 280) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getWriteCapacity (line 284) | public Long getWriteCapacity() {
method setWriteCapacity (line 288) | public void setWriteCapacity(Long writeCapacity) {
method getAmazonDDBClient (line 292) | public DynamoDbClient getAmazonDDBClient() {
method setAmazonDDBClient (line 296) | public void setAmazonDDBClient(DynamoDbClient amazonDDBClient) {
method getAutowiredEnabled (line 300) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 304) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getHealthCheckConsumerEnabled (line 308) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 312) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 316) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 320) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 324) | public String getProxyHost() {
method setProxyHost (line 328) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 332) | public Integer getProxyPort() {
method setProxyPort (line 336) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 340) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 344) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 348) | public String getAccessKey() {
method setAccessKey (line 352) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 356) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 360) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 364) | public String getSecretKey() {
method setSecretKey (line 368) | public void setSecretKey(String secretKey) {
method getSessionToken (line 372) | public String getSessionToken() {
method setSessionToken (line 376) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 380) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 384) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 388) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 392) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 397) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 401) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 406) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 410) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-ddb-starter/src/main/java/org/apache/camel/component/aws2/ddb/springboot/Ddb2ComponentConverter.java
class Ddb2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-ddb-starter/src/main/java/org/apache/camel/component/aws2/ddbstream/springboot/Ddb2StreamComponentAutoConfiguration.java
class Ddb2StreamComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, Ddb2StreamComp...
method Ddb2StreamComponentAutoConfiguration (line 48) | public Ddb2StreamComponentAutoConfiguration(
method configureDdb2StreamComponent (line 55) | @Lazy
FILE: components-starter/camel-aws2-ddb-starter/src/main/java/org/apache/camel/component/aws2/ddbstream/springboot/Ddb2StreamComponentConfiguration.java
class Ddb2StreamComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws2-ddbstream")
method getBridgeErrorHandler (line 164) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 168) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getConfiguration (line 172) | public Ddb2StreamConfiguration getConfiguration() {
method setConfiguration (line 176) | public void setConfiguration(Ddb2StreamConfiguration configuration) {
method getMaxResultsPerRequest (line 180) | public Integer getMaxResultsPerRequest() {
method setMaxResultsPerRequest (line 184) | public void setMaxResultsPerRequest(Integer maxResultsPerRequest) {
method getOverrideEndpoint (line 188) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 192) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getRegion (line 196) | public String getRegion() {
method setRegion (line 200) | public void setRegion(String region) {
method getStreamIteratorType (line 204) | public StreamIteratorType getStreamIteratorType() {
method setStreamIteratorType (line 208) | public void setStreamIteratorType(StreamIteratorType streamIteratorTyp...
method getUriEndpointOverride (line 212) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 216) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAmazonDynamoDbStreamsClient (line 220) | public DynamoDbStreamsClient getAmazonDynamoDbStreamsClient() {
method setAmazonDynamoDbStreamsClient (line 224) | public void setAmazonDynamoDbStreamsClient(
method getAutowiredEnabled (line 229) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 233) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getHealthCheckConsumerEnabled (line 237) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 241) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 245) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 249) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 253) | public String getProxyHost() {
method setProxyHost (line 257) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 261) | public Integer getProxyPort() {
method setProxyPort (line 265) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 269) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 273) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 277) | public String getAccessKey() {
method setAccessKey (line 281) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 285) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 289) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 293) | public String getSecretKey() {
method setSecretKey (line 297) | public void setSecretKey(String secretKey) {
method getSessionToken (line 301) | public String getSessionToken() {
method setSessionToken (line 305) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 309) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 313) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 317) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 321) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 326) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 330) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 335) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 339) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-ddb-starter/src/main/java/org/apache/camel/component/aws2/ddbstream/springboot/Ddb2StreamComponentConverter.java
class Ddb2StreamComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/BaseDdb2.java
class BaseDdb2 (line 30) | public class BaseDdb2 {
class TestConfiguration (line 45) | @Configuration
method dynamnoDbClient (line 48) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2BatchGetItemsTest.java
class Ddb2BatchGetItemsTest (line 52) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method setupResources (line 68) | @BeforeAll
method cleanupResources (line 81) | @AfterAll
method batchGetItems (line 88) | @Test
method putItem (line 111) | private void putItem(String value1, String value2) {
class TestConfiguration (line 129) | @Configuration
method routeBuilder (line 131) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2DeleteItemTest.java
class Ddb2DeleteItemTest (line 44) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method putItem (line 57) | @Test
class TestConfiguration (line 99) | @Configuration
method routeBuilder (line 101) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2DeleteTableTest.java
class Ddb2DeleteTableTest (line 39) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method deleteTable (line 52) | @Test
class TestConfiguration (line 80) | @Configuration
method routeBuilder (line 82) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2DescribeTableRuleIT.java
class Ddb2DescribeTableRuleIT (line 39) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method describeTable (line 52) | @Test
class TestConfiguration (line 71) | @Configuration
method routeBuilder (line 73) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2GetItemTest.java
class Ddb2GetItemTest (line 43) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method getItem (line 57) | @Test
class TestConfiguration (line 98) | @Configuration
method routeBuilder (line 100) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2QueryTest.java
class Ddb2QueryTest (line 53) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method setupResources (line 68) | @BeforeAll
method cleanupResources (line 86) | @AfterAll
method queryItems (line 94) | @Test
method putItem (line 116) | private void putItem(String value1, String value2) {
class TestConfiguration (line 134) | @Configuration
method routeBuilder (line 136) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2ScanTest.java
class Ddb2ScanTest (line 54) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method setupResources (line 69) | @BeforeAll
method cleanupResources (line 87) | @AfterAll
method scan (line 95) | @Test
method putItem (line 118) | private void putItem(String value1, String value2) {
class TestConfiguration (line 136) | @Configuration
method routeBuilder (line 138) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2UpdateItemTest.java
class Ddb2UpdateItemTest (line 47) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method putItem (line 60) | @Test
class TestConfiguration (line 111) | @Configuration
method routeBuilder (line 113) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddb/Ddb2UpdateTableByIdTest.java
class Ddb2UpdateTableByIdTest (line 38) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method updateTable (line 51) | @Test
class TestConfiguration (line 69) | @Configuration
method routeBuilder (line 71) | @Bean
FILE: components-starter/camel-aws2-ddb-starter/src/test/java/org/apache/camel/component/aws2/ddbstream/Ddb2StreamTest.java
class Ddb2StreamTest (line 57) | @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
method setupResources (line 69) | @BeforeAll
method cleanupResources (line 77) | @AfterAll
method createTableRequest (line 85) | private static CreateTableRequest.Builder createTableRequest(String ta...
method stream (line 98) | @Test
method insertItem (line 117) | private void insertItem(String key1, String msg1) {
class TestConfiguration (line 138) | @Configuration
method routeBuilder (line 141) | @Bean
FILE: components-starter/camel-aws2-ec2-starter/src/main/java/org/apache/camel/component/aws2/ec2/springboot/AWS2EC2ComponentAutoConfiguration.java
class AWS2EC2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, AWS2EC2Compone...
method AWS2EC2ComponentAutoConfiguration (line 48) | public AWS2EC2ComponentAutoConfiguration(
method configureAWS2EC2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-ec2-starter/src/main/java/org/apache/camel/component/aws2/ec2/springboot/AWS2EC2ComponentConfiguration.java
class AWS2EC2ComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws2-ec2")
method getAmazonEc2Client (line 162) | public Ec2Client getAmazonEc2Client() {
method setAmazonEc2Client (line 166) | public void setAmazonEc2Client(Ec2Client amazonEc2Client) {
method getConfiguration (line 170) | public AWS2EC2Configuration getConfiguration() {
method setConfiguration (line 174) | public void setConfiguration(AWS2EC2Configuration configuration) {
method getLazyStartProducer (line 178) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 182) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 186) | public AWS2EC2Operations getOperation() {
method setOperation (line 190) | public void setOperation(AWS2EC2Operations operation) {
method getOverrideEndpoint (line 194) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 198) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 202) | public Boolean getPojoRequest() {
method setPojoRequest (line 206) | public void setPojoRequest(Boolean pojoRequest) {
method getRegion (line 210) | public String getRegion() {
method setRegion (line 214) | public void setRegion(String region) {
method getUriEndpointOverride (line 218) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 222) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAutowiredEnabled (line 226) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 230) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getHealthCheckConsumerEnabled (line 234) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 238) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 242) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 246) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 250) | public String getProxyHost() {
method setProxyHost (line 254) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 258) | public Integer getProxyPort() {
method setProxyPort (line 262) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 266) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 270) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 274) | public String getAccessKey() {
method setAccessKey (line 278) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 282) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 286) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 290) | public String getSecretKey() {
method setSecretKey (line 294) | public void setSecretKey(String secretKey) {
method getSessionToken (line 298) | public String getSessionToken() {
method setSessionToken (line 302) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 306) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 310) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 314) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 318) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 323) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 327) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 332) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 336) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-ec2-starter/src/main/java/org/apache/camel/component/aws2/ec2/springboot/AWS2EC2ComponentConverter.java
class AWS2EC2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-ecs-starter/src/main/java/org/apache/camel/component/aws2/ecs/springboot/ECS2ComponentAutoConfiguration.java
class ECS2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, ECS2ComponentC...
method ECS2ComponentAutoConfiguration (line 48) | public ECS2ComponentAutoConfiguration(
method configureECS2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-ecs-starter/src/main/java/org/apache/camel/component/aws2/ecs/springboot/ECS2ComponentConfiguration.java
class ECS2ComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws2-ecs")
method getConfiguration (line 160) | public ECS2Configuration getConfiguration() {
method setConfiguration (line 164) | public void setConfiguration(ECS2Configuration configuration) {
method getLazyStartProducer (line 168) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 172) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 176) | public ECS2Operations getOperation() {
method setOperation (line 180) | public void setOperation(ECS2Operations operation) {
method getOverrideEndpoint (line 184) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 188) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 192) | public Boolean getPojoRequest() {
method setPojoRequest (line 196) | public void setPojoRequest(Boolean pojoRequest) {
method getRegion (line 200) | public String getRegion() {
method setRegion (line 204) | public void setRegion(String region) {
method getUriEndpointOverride (line 208) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 212) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAutowiredEnabled (line 216) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 220) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getEcsClient (line 224) | public EcsClient getEcsClient() {
method setEcsClient (line 228) | public void setEcsClient(EcsClient ecsClient) {
method getHealthCheckConsumerEnabled (line 232) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 236) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 240) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 244) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 248) | public String getProxyHost() {
method setProxyHost (line 252) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 256) | public Integer getProxyPort() {
method setProxyPort (line 260) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 264) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 268) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 272) | public String getAccessKey() {
method setAccessKey (line 276) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 280) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 284) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 288) | public String getSecretKey() {
method setSecretKey (line 292) | public void setSecretKey(String secretKey) {
method getSessionToken (line 296) | public String getSessionToken() {
method setSessionToken (line 300) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 304) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 308) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 312) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 316) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 321) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 325) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 330) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 334) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-ecs-starter/src/main/java/org/apache/camel/component/aws2/ecs/springboot/ECS2ComponentConverter.java
class ECS2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-eks-starter/src/main/java/org/apache/camel/component/aws2/eks/springboot/EKS2ComponentAutoConfiguration.java
class EKS2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, EKS2ComponentC...
method EKS2ComponentAutoConfiguration (line 48) | public EKS2ComponentAutoConfiguration(
method configureEKS2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-eks-starter/src/main/java/org/apache/camel/component/aws2/eks/springboot/EKS2ComponentConfiguration.java
class EKS2ComponentConfiguration (line 32) | @ConfigurationProperties(prefix = "camel.component.aws2-eks")
method getConfiguration (line 159) | public EKS2Configuration getConfiguration() {
method setConfiguration (line 163) | public void setConfiguration(EKS2Configuration configuration) {
method getLazyStartProducer (line 167) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 171) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getOperation (line 175) | public EKS2Operations getOperation() {
method setOperation (line 179) | public void setOperation(EKS2Operations operation) {
method getOverrideEndpoint (line 183) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 187) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 191) | public Boolean getPojoRequest() {
method setPojoRequest (line 195) | public void setPojoRequest(Boolean pojoRequest) {
method getProfileCredentialsName (line 199) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 203) | public void setProfileCredentialsName(String profileCredentialsName) {
method getRegion (line 207) | public String getRegion() {
method setRegion (line 211) | public void setRegion(String region) {
method getUriEndpointOverride (line 215) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 219) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getUseDefaultCredentialsProvider (line 223) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 227) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 232) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 236) | public void setUseProfileCredentialsProvider(
method getAutowiredEnabled (line 241) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 245) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getEksClient (line 249) | public EksClient getEksClient() {
method setEksClient (line 253) | public void setEksClient(EksClient eksClient) {
method getHealthCheckConsumerEnabled (line 257) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 261) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 265) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 269) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 273) | public String getProxyHost() {
method setProxyHost (line 277) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 281) | public Integer getProxyPort() {
method setProxyPort (line 285) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 289) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 293) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 297) | public String getAccessKey() {
method setAccessKey (line 301) | public void setAccessKey(String accessKey) {
method getSecretKey (line 305) | public String getSecretKey() {
method setSecretKey (line 309) | public void setSecretKey(String secretKey) {
method getSessionToken (line 313) | public String getSessionToken() {
method setSessionToken (line 317) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 321) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 325) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseSessionCredentials (line 329) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 333) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-eks-starter/src/main/java/org/apache/camel/component/aws2/eks/springboot/EKS2ComponentConverter.java
class EKS2ComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-eventbridge-starter/src/main/java/org/apache/camel/component/aws2/eventbridge/springboot/EventbridgeComponentAutoConfiguration.java
class EventbridgeComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, EventbridgeCom...
method EventbridgeComponentAutoConfiguration (line 48) | public EventbridgeComponentAutoConfiguration(
method configureEventbridgeComponent (line 55) | @Lazy
FILE: components-starter/camel-aws2-eventbridge-starter/src/main/java/org/apache/camel/component/aws2/eventbridge/springboot/EventbridgeComponentConfiguration.java
class EventbridgeComponentConfiguration (line 33) | @ConfigurationProperties(prefix = "camel.component.aws2-eventbridge")
method getConfiguration (line 213) | public EventbridgeConfiguration getConfiguration() {
method setConfiguration (line 217) | public void setConfiguration(EventbridgeConfiguration configuration) {
method getEventPatternFile (line 221) | public String getEventPatternFile() {
method setEventPatternFile (line 225) | public void setEventPatternFile(String eventPatternFile) {
method getOperation (line 229) | public EventbridgeOperations getOperation() {
method setOperation (line 233) | public void setOperation(EventbridgeOperations operation) {
method getOverrideEndpoint (line 237) | public Boolean getOverrideEndpoint() {
method setOverrideEndpoint (line 241) | public void setOverrideEndpoint(Boolean overrideEndpoint) {
method getPojoRequest (line 245) | public Boolean getPojoRequest() {
method setPojoRequest (line 249) | public void setPojoRequest(Boolean pojoRequest) {
method getRegion (line 253) | public String getRegion() {
method setRegion (line 257) | public void setRegion(String region) {
method getUriEndpointOverride (line 261) | public String getUriEndpointOverride() {
method setUriEndpointOverride (line 265) | public void setUriEndpointOverride(String uriEndpointOverride) {
method getAutoCreateQueue (line 269) | public Boolean getAutoCreateQueue() {
method setAutoCreateQueue (line 273) | public void setAutoCreateQueue(Boolean autoCreateQueue) {
method getBridgeErrorHandler (line 277) | public Boolean getBridgeErrorHandler() {
method setBridgeErrorHandler (line 281) | public void setBridgeErrorHandler(Boolean bridgeErrorHandler) {
method getDeleteQueueOnShutdown (line 285) | public Boolean getDeleteQueueOnShutdown() {
method setDeleteQueueOnShutdown (line 289) | public void setDeleteQueueOnShutdown(Boolean deleteQueueOnShutdown) {
method getMaxMessagesPerPoll (line 293) | public Integer getMaxMessagesPerPoll() {
method setMaxMessagesPerPoll (line 297) | public void setMaxMessagesPerPoll(Integer maxMessagesPerPoll) {
method getQueueUrl (line 301) | public String getQueueUrl() {
method setQueueUrl (line 305) | public void setQueueUrl(String queueUrl) {
method getRuleName (line 309) | public String getRuleName() {
method setRuleName (line 313) | public void setRuleName(String ruleName) {
method getVisibilityTimeout (line 317) | public Integer getVisibilityTimeout() {
method setVisibilityTimeout (line 321) | public void setVisibilityTimeout(Integer visibilityTimeout) {
method getWaitTimeSeconds (line 325) | public Integer getWaitTimeSeconds() {
method setWaitTimeSeconds (line 329) | public void setWaitTimeSeconds(Integer waitTimeSeconds) {
method getLazyStartProducer (line 333) | public Boolean getLazyStartProducer() {
method setLazyStartProducer (line 337) | public void setLazyStartProducer(Boolean lazyStartProducer) {
method getAutowiredEnabled (line 341) | public Boolean getAutowiredEnabled() {
method setAutowiredEnabled (line 345) | public void setAutowiredEnabled(Boolean autowiredEnabled) {
method getEventbridgeClient (line 349) | public EventBridgeClient getEventbridgeClient() {
method setEventbridgeClient (line 353) | public void setEventbridgeClient(EventBridgeClient eventbridgeClient) {
method getHealthCheckConsumerEnabled (line 357) | public Boolean getHealthCheckConsumerEnabled() {
method setHealthCheckConsumerEnabled (line 361) | public void setHealthCheckConsumerEnabled(Boolean healthCheckConsumerE...
method getHealthCheckProducerEnabled (line 365) | public Boolean getHealthCheckProducerEnabled() {
method setHealthCheckProducerEnabled (line 369) | public void setHealthCheckProducerEnabled(Boolean healthCheckProducerE...
method getProxyHost (line 373) | public String getProxyHost() {
method setProxyHost (line 377) | public void setProxyHost(String proxyHost) {
method getProxyPort (line 381) | public Integer getProxyPort() {
method setProxyPort (line 385) | public void setProxyPort(Integer proxyPort) {
method getProxyProtocol (line 389) | public Protocol getProxyProtocol() {
method setProxyProtocol (line 393) | public void setProxyProtocol(Protocol proxyProtocol) {
method getAccessKey (line 397) | public String getAccessKey() {
method setAccessKey (line 401) | public void setAccessKey(String accessKey) {
method getProfileCredentialsName (line 405) | public String getProfileCredentialsName() {
method setProfileCredentialsName (line 409) | public void setProfileCredentialsName(String profileCredentialsName) {
method getSecretKey (line 413) | public String getSecretKey() {
method setSecretKey (line 417) | public void setSecretKey(String secretKey) {
method getSessionToken (line 421) | public String getSessionToken() {
method setSessionToken (line 425) | public void setSessionToken(String sessionToken) {
method getTrustAllCertificates (line 429) | public Boolean getTrustAllCertificates() {
method setTrustAllCertificates (line 433) | public void setTrustAllCertificates(Boolean trustAllCertificates) {
method getUseDefaultCredentialsProvider (line 437) | public Boolean getUseDefaultCredentialsProvider() {
method setUseDefaultCredentialsProvider (line 441) | public void setUseDefaultCredentialsProvider(
method getUseProfileCredentialsProvider (line 446) | public Boolean getUseProfileCredentialsProvider() {
method setUseProfileCredentialsProvider (line 450) | public void setUseProfileCredentialsProvider(
method getUseSessionCredentials (line 455) | public Boolean getUseSessionCredentials() {
method setUseSessionCredentials (line 459) | public void setUseSessionCredentials(Boolean useSessionCredentials) {
FILE: components-starter/camel-aws2-eventbridge-starter/src/main/java/org/apache/camel/component/aws2/eventbridge/springboot/EventbridgeComponentConverter.java
class EventbridgeComponentConverter (line 32) | @Configuration(proxyBeanMethods = false)
method getConvertibleTypes (line 40) | public Set<ConvertiblePair> getConvertibleTypes() {
method convert (line 47) | public Object convert(
FILE: components-starter/camel-aws2-iam-starter/src/main/java/org/apache/camel/component/aws2/iam/springboot/IAM2ComponentAutoConfiguration.java
class IAM2ComponentAutoConfiguration (line 39) | @AutoConfiguration(after = {CamelAutoConfiguration.class, IAM2ComponentC...
method IAM2ComponentAutoConfiguration (line 48) | public IAM2ComponentAutoConfiguration(
method configureIAM2Component (line 55) | @Lazy
FILE: components-starter/camel-aws2-iam-starter/src/main/java/org/apache/camel/component/aws2/iam/springboot/IAM2ComponentConfiguration.java
class IAM2ComponentConfiguration
Copy disabled (too large)
Download .json
Condensed preview — 5573 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (55,391K chars).
[
{
"path": ".asf.yaml",
"chars": 1073,
"preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements. See the NOTICE"
},
{
"path": ".gitattributes",
"chars": 97,
"preview": "# OS specific line endings for the Maven wrapper script\nmvnw text eol=lf\nmvnw.cmd text eol=crlf\n\n"
},
{
"path": ".github/actions/incremental-build/exclusions.sh",
"chars": 323,
"preview": "#!/bin/bash\n# Exclusion list for camel-spring-boot incremental builds\n# Override the default exclusion list from apache/"
},
{
"path": ".github/actions/incremental-build/parse_errors.sh",
"chars": 5721,
"preview": "#!/bin/bash\n#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements. Se"
},
{
"path": ".github/asf-deploy-settings.xml",
"chars": 1333,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n Licensed to the Apache Software Foundation (ASF) under one or more\n "
},
{
"path": ".github/dependabot.yml",
"chars": 248,
"preview": "version: 2\nupdates:\n - package-ecosystem: \"github-actions\"\n directory: \"/\"\n schedule:\n interval: \"weekly\"\n "
},
{
"path": ".github/workflows/automatic-sync-main.yml",
"chars": 2370,
"preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements. See the NOTICE"
},
{
"path": ".github/workflows/depsreview.yaml",
"chars": 352,
"preview": "name: 'Dependency Review'\non: [pull_request]\n\npermissions:\n contents: read\n\njobs:\n dependency-review:\n if: github.r"
},
{
"path": ".github/workflows/generate-sbom-main.yml",
"chars": 2433,
"preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements. See the NOTICE"
},
{
"path": ".github/workflows/pr-build-main.yml",
"chars": 1780,
"preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements. See the NOTICE"
},
{
"path": ".github/workflows/pr-doc-validation.yml",
"chars": 1815,
"preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements. See the NOTICE"
},
{
"path": ".gitignore",
"chars": 363,
"preview": "target\n*.iml\n*.ipr\n*.iws\nbuild.metadata\n.idea\n.DS_Store\n.classpath\n.ekstazi\n.project\n.settings\n.checkstyle\n*.log\ntest-sa"
},
{
"path": ".mvn/extensions.xml",
"chars": 66,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<extensions>\n</extensions>\n"
},
{
"path": ".mvn/jvm.config",
"chars": 77,
"preview": "-Xmx3584m -Djava.awt.headless=true -XX:+UseG1GC -XX:+UseStringDeduplication \n"
},
{
"path": ".mvn/wrapper/maven-wrapper.properties",
"chars": 277,
"preview": "wrapperVersion=3.3.4\ndistributionType=bin\ndistributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-m"
},
{
"path": "Jenkinsfile.sb",
"chars": 2522,
"preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
},
{
"path": "Jenkinsfile.sb.deploy",
"chars": 2021,
"preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
},
{
"path": "Jenkinsfile.sb.ppc64le",
"chars": 2618,
"preview": "/*\r\n * Licensed to the Apache Software Foundation (ASF) under one\r\n * or more contributor license agreements. See the N"
},
{
"path": "KEYS",
"chars": 117360,
"preview": "pub 1024D/F5BA7E4F 2006-02-10\nuid Hiram Chirino <hiram@hiramchirino.com>\nsig 3 F5BA7E4F 2006-0"
},
{
"path": "LICENSE.txt",
"chars": 11358,
"preview": "\n Apache License\n Version 2.0, January 2004\n "
},
{
"path": "NOTICE.txt",
"chars": 166,
"preview": "Apache Camel\nCopyright 2007-2026 The Apache Software Foundation\n\nThis product includes software developed at\nThe Apache "
},
{
"path": "README.md",
"chars": 1359,
"preview": "# Apache Camel Spring Boot Support\n\n[ under one or more\n "
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/META-INF/LICENSE.txt",
"chars": 11359,
"preview": "\n Apache License\n Version 2.0, January 2004\n "
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/META-INF/NOTICE.txt",
"chars": 596,
"preview": " =========================================================================\n == NOTICE file corresponding to the sec"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/META-INF/archetype-post-generate.groovy",
"chars": 1947,
"preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOT"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/README.adoc",
"chars": 1137,
"preview": "= Camel Example Spring Boot\n\nThis example shows how to work with a simple Apache Camel application using Spring Boot.\n\nT"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml",
"chars": 4266,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n## ------------------------------------------------------------------------\n## Li"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBean.java",
"chars": 1482,
"preview": "## ------------------------------------------------------------------------\n## Licensed to the Apache Software Foundatio"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBootApplication.java",
"chars": 1334,
"preview": "## ------------------------------------------------------------------------\n## Licensed to the Apache Software Foundatio"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/MySpringBootRouter.java",
"chars": 1631,
"preview": "## ------------------------------------------------------------------------\n## Licensed to the Apache Software Foundatio"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/META-INF/LICENSE.txt",
"chars": 11359,
"preview": "\n Apache License\n Version 2.0, January 2004\n "
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/META-INF/NOTICE.txt",
"chars": 596,
"preview": " =========================================================================\n == NOTICE file corresponding to the sec"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/application.properties",
"chars": 1892,
"preview": "## ---------------------------------------------------------------------------\n## Licensed to the Apache Software Founda"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources/archetype-resources/src/test/java/MySpringBootApplicationTest.java",
"chars": 2191,
"preview": "## ------------------------------------------------------------------------\n## Licensed to the Apache Software Foundatio"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/main/resources-filtered/META-INF/maven/archetype-metadata.xml",
"chars": 2715,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n Licensed to the Apache Software Foundation (ASF) under one or more\n "
},
{
"path": "archetypes/camel-archetype-spring-boot/src/test/resources/projects/build-it/archetype.properties",
"chars": 1437,
"preview": "## ---------------------------------------------------------------------------\n## Licensed to the Apache Software Founda"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/test/resources/projects/build-it/goal.txt",
"chars": 7,
"preview": "install"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/test/resources/projects/run-it/archetype.properties",
"chars": 1435,
"preview": "## ---------------------------------------------------------------------------\n## Licensed to the Apache Software Founda"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/test/resources/projects/run-it/goal.txt",
"chars": 150,
"preview": "install spring-boot:run -Dmaven.test.skip=true -Dspring-boot.run.arguments=\"--camel.main.duration-max-messages=1,--camel"
},
{
"path": "archetypes/camel-archetype-spring-boot/src/test/resources/settings.xml",
"chars": 1772,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n Licensed to the Apache Software Foundation (ASF) under one or more\n "
},
{
"path": "archetypes/pom.xml",
"chars": 1933,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n Licensed to the Apache Software Foundation (ASF) under one or more\n "
},
{
"path": "camel-spring-boot-sbom/camel-spring-boot-sbom.json",
"chars": 8748872,
"preview": "{\n \"bomFormat\" : \"CycloneDX\",\n \"specVersion\" : \"1.6\",\n \"serialNumber\" : \"urn:uuid:58e89f21-542f-37a2-9811-4cf9da1dc5d"
},
{
"path": "camel-spring-boot-sbom/camel-spring-boot-sbom.vex.json",
"chars": 152815,
"preview": "{\n \"bomFormat\" : \"CycloneDX\",\n \"specVersion\" : \"1.5\",\n \"serialNumber\" : \"urn:uuid:d60ba589-0346-4bb2-a4b8-ec4e0bb1acd"
},
{
"path": "camel-spring-boot-sbom/camel-spring-boot-sbom.xml",
"chars": 8172299,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<bom serialNumber=\"urn:uuid:58e89f21-542f-37a2-9811-4cf9da1dc5d9\" version=\"1\" xml"
},
{
"path": "catalog/camel-catalog-provider-springboot/pom.xml",
"chars": 2605,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n Licensed to the Apache Software Foundation (ASF) under one or more\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/java/org/apache/camel/springboot/catalog/SpringBootRuntimeProvider.java",
"chars": 5477,
"preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOT"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/CaffeineAggregationRepository.json",
"chars": 2326,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"CaffeineAggregationRepository\",\n \"javaType\": \"org.apache.camel.compone"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/CaffeineIdempotentRepository.json",
"chars": 849,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"CaffeineIdempotentRepository\",\n \"javaType\": \"org.apache.camel.componen"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/CassandraAggregationRepository.json",
"chars": 5315,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"CassandraAggregationRepository\",\n \"javaType\": \"org.apache.camel.proces"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/CassandraIdempotentRepository.json",
"chars": 2971,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"CassandraIdempotentRepository\",\n \"javaType\": \"org.apache.camel.process"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/ConsulClusterService.json",
"chars": 5055,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"ConsulClusterService\",\n \"javaType\": \"org.apache.camel.component.consul"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/CronScheduledRoutePolicy.json",
"chars": 2309,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"CronScheduledRoutePolicy\",\n \"javaType\": \"org.apache.camel.routepolicy."
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/EhcacheAggregationRepository.json",
"chars": 2557,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"EhcacheAggregationRepository\",\n \"javaType\": \"org.apache.camel.componen"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/EhcacheIdempotentRepository.json",
"chars": 842,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"EhcacheIdempotentRepository\",\n \"javaType\": \"org.apache.camel.component"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/ElasticsearchBulkRequestAggregationStrategy.json",
"chars": 574,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"ElasticsearchBulkRequestAggregationStrategy\",\n \"javaType\": \"org.apache"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/Etcd3AggregationRepository.json",
"chars": 3341,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"Etcd3AggregationRepository\",\n \"javaType\": \"org.apache.camel.component."
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/FileLockClusterService.json",
"chars": 4458,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"FileLockClusterService\",\n \"javaType\": \"org.apache.camel.component.file"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/HazelcastAggregationRepository.json",
"chars": 3433,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"HazelcastAggregationRepository\",\n \"javaType\": \"org.apache.camel.proces"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/HazelcastIdempotentRepository.json",
"chars": 1177,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"HazelcastIdempotentRepository\",\n \"javaType\": \"org.apache.camel.process"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/InfinispanEmbeddedAggregationRepository.json",
"chars": 2930,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"InfinispanEmbeddedAggregationRepository\",\n \"javaType\": \"org.apache.cam"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/InfinispanEmbeddedClusterService.json",
"chars": 2764,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"InfinispanEmbeddedClusterService\",\n \"javaType\": \"org.apache.camel.comp"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/InfinispanEmbeddedIdempotentRepository.json",
"chars": 1167,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"InfinispanEmbeddedIdempotentRepository\",\n \"javaType\": \"org.apache.came"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/InfinispanRemoteAggregationRepository.json",
"chars": 2905,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"InfinispanRemoteAggregationRepository\",\n \"javaType\": \"org.apache.camel"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/InfinispanRemoteClusterService.json",
"chars": 5253,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"InfinispanRemoteClusterService\",\n \"javaType\": \"org.apache.camel.compon"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/InfinispanRemoteIdempotentRepository.json",
"chars": 1142,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"InfinispanRemoteIdempotentRepository\",\n \"javaType\": \"org.apache.camel."
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/JCacheAggregationRepository.json",
"chars": 1512,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"JCacheAggregationRepository\",\n \"javaType\": \"org.apache.camel.component"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/JCacheIdempotentRepository.json",
"chars": 838,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"JCacheIdempotentRepository\",\n \"javaType\": \"org.apache.camel.component."
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/JGroupsRaftClusterService.json",
"chars": 1633,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"JGroupsRaftClusterService\",\n \"javaType\": \"org.apache.camel.component.j"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/JdbcAggregationRepository.json",
"chars": 5526,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"JdbcAggregationRepository\",\n \"javaType\": \"org.apache.camel.processor.a"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/JdbcMessageIdRepository.json",
"chars": 4014,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"JdbcMessageIdRepository\",\n \"javaType\": \"org.apache.camel.processor.ide"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/KafkaIdempotentRepository.json",
"chars": 3649,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"KafkaIdempotentRepository\",\n \"javaType\": \"org.apache.camel.processor.i"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/KubernetesClusterService.json",
"chars": 5419,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"KubernetesClusterService\",\n \"javaType\": \"org.apache.camel.component.ku"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/LevelDBAggregationRepository.json",
"chars": 4472,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"LevelDBAggregationRepository\",\n \"javaType\": \"org.apache.camel.componen"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/LoggingHttpActivityListener.json",
"chars": 4451,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"LoggingHttpActivityListener\",\n \"javaType\": \"org.apache.camel.component"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/MongoDbIdempotentRepository.json",
"chars": 1339,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"MongoDbIdempotentRepository\",\n \"javaType\": \"org.apache.camel.component"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/OpensearchBulkRequestAggregationStrategy.json",
"chars": 567,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"OpensearchBulkRequestAggregationStrategy\",\n \"javaType\": \"org.apache.ca"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/SimpleScheduledRoutePolicy.json",
"chars": 3304,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"SimpleScheduledRoutePolicy\",\n \"javaType\": \"org.apache.camel.routepolic"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/SpringCacheIdempotentRepository.json",
"chars": 1047,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"SpringCacheIdempotentRepository\",\n \"javaType\": \"org.apache.camel.sprin"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/SpringRedisIdempotentRepository.json",
"chars": 1478,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"SpringRedisIdempotentRepository\",\n \"javaType\": \"org.apache.camel.compo"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/TarAggregationStrategy.json",
"chars": 2235,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"TarAggregationStrategy\",\n \"javaType\": \"org.apache.camel.processor.aggr"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/XsltAggregationStrategy.json",
"chars": 2224,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"XsltAggregationStrategy\",\n \"javaType\": \"org.apache.camel.component.xsl"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/XsltSaxonAggregationStrategy.json",
"chars": 2265,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"XsltSaxonAggregationStrategy\",\n \"javaType\": \"org.apache.camel.componen"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/ZipAggregationStrategy.json",
"chars": 2855,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"ZipAggregationStrategy\",\n \"javaType\": \"org.apache.camel.processor.aggr"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans/ZooKeeperClusterService.json",
"chars": 3608,
"preview": "{\n \"bean\": {\n \"kind\": \"bean\",\n \"name\": \"ZooKeeperClusterService\",\n \"javaType\": \"org.apache.camel.component.zoo"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/beans.properties",
"chars": 1117,
"preview": "CaffeineAggregationRepository\nCaffeineIdempotentRepository\nCassandraAggregationRepository\nCassandraIdempotentRepository\n"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/activemq.json",
"chars": 164221,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"activemq\",\n \"title\": \"ActiveMQ 5.x\",\n \"description\": \"Sen"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/activemq6.json",
"chars": 164226,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"activemq6\",\n \"title\": \"ActiveMQ 6.x\",\n \"description\": \"Se"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/amqp.json",
"chars": 164659,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"amqp\",\n \"title\": \"AMQP\",\n \"description\": \"Messaging with "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/arangodb.json",
"chars": 18970,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"arangodb\",\n \"title\": \"ArangoDb\",\n \"description\": \"Perform"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/as2.json",
"chars": 43096,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"as2\",\n \"title\": \"AS2\",\n \"description\": \"Transfer data sec"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/asterisk.json",
"chars": 9788,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"asterisk\",\n \"title\": \"Asterisk\",\n \"description\": \"Interac"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/atmosphere-websocket.json",
"chars": 24010,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"atmosphere-websocket\",\n \"title\": \"Atmosphere Websocket\",\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/atom.json",
"chars": 16051,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"atom\",\n \"title\": \"Atom\",\n \"description\": \"Poll Atom RSS f"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/avro.json",
"chars": 14407,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"avro\",\n \"title\": \"Avro RPC\",\n \"description\": \"Produce or "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-bedrock-agent-runtime.json",
"chars": 36551,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-bedrock-agent-runtime\",\n \"title\": \"AWS Bedrock Agent Run"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-bedrock-agent.json",
"chars": 43017,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-bedrock-agent\",\n \"title\": \"AWS Bedrock Agent\",\n \"desc"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-bedrock.json",
"chars": 44208,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-bedrock\",\n \"title\": \"AWS Bedrock\",\n \"description\": \"I"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-cloudtrail.json",
"chars": 34247,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-cloudtrail\",\n \"title\": \"AWS Cloudtrail\",\n \"descriptio"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-config.json",
"chars": 26712,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-config\",\n \"title\": \"AWS Config Service\",\n \"descriptio"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-parameter-store.json",
"chars": 30222,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-parameter-store\",\n \"title\": \"AWS Parameter Store\",\n \""
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-secrets-manager.json",
"chars": 30496,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-secrets-manager\",\n \"title\": \"AWS Secrets Manager\",\n \""
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-security-hub.json",
"chars": 33307,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws-security-hub\",\n \"title\": \"AWS Security Hub\",\n \"descri"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-athena.json",
"chars": 56206,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-athena\",\n \"title\": \"AWS Athena\",\n \"description\": \"Ac"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-comprehend.json",
"chars": 29656,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-comprehend\",\n \"title\": \"AWS Comprehend\",\n \"descripti"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-cw.json",
"chars": 31041,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-cw\",\n \"title\": \"AWS CloudWatch\",\n \"description\": \"Se"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-ddb.json",
"chars": 52463,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-ddb\",\n \"title\": \"AWS DynamoDB\",\n \"description\": \"Sto"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-ddbstream.json",
"chars": 32933,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-ddbstream\",\n \"title\": \"AWS DynamoDB Streams\",\n \"desc"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-ec2.json",
"chars": 50983,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-ec2\",\n \"title\": \"AWS Elastic Compute Cloud (EC2)\",\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-ecs.json",
"chars": 25818,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-ecs\",\n \"title\": \"AWS Elastic Container Service (ECS)\",\n"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-eks.json",
"chars": 27031,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-eks\",\n \"title\": \"AWS Elastic Kubernetes Service (EKS)\","
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-eventbridge.json",
"chars": 50228,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-eventbridge\",\n \"title\": \"AWS Eventbridge\",\n \"descrip"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-iam.json",
"chars": 36172,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-iam\",\n \"title\": \"AWS Identity and Access Management (IA"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-kinesis-firehose.json",
"chars": 26919,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-kinesis-firehose\",\n \"title\": \"AWS Kinesis Firehose\",\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-kinesis.json",
"chars": 52078,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-kinesis\",\n \"title\": \"AWS Kinesis\",\n \"description\": \""
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-kms.json",
"chars": 26464,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-kms\",\n \"title\": \"AWS Key Management Service (KMS)\",\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-lambda.json",
"chars": 51984,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-lambda\",\n \"title\": \"AWS Lambda\",\n \"description\": \"Ma"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-mq.json",
"chars": 29446,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-mq\",\n \"title\": \"AWS MQ\",\n \"description\": \"Send messa"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-msk.json",
"chars": 27909,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-msk\",\n \"title\": \"AWS Managed Streaming for Apache Kafka"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-polly.json",
"chars": 45650,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-polly\",\n \"title\": \"AWS Polly\",\n \"description\": \"Synt"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-redshift-data.json",
"chars": 35598,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-redshift-data\",\n \"title\": \"AWS RedshiftData\",\n \"desc"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-rekognition.json",
"chars": 40526,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-rekognition\",\n \"title\": \"AWS Rekognition\",\n \"descrip"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-s3-vectors.json",
"chars": 51717,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-s3-vectors\",\n \"title\": \"AWS S3 Vectors\",\n \"descripti"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-s3.json",
"chars": 105460,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-s3\",\n \"title\": \"AWS S3 Storage Service\",\n \"descripti"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-ses.json",
"chars": 32685,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-ses\",\n \"title\": \"AWS Simple Email Service (SES)\",\n \""
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-sns.json",
"chars": 35788,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-sns\",\n \"title\": \"AWS Simple Notification System (SNS)\","
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-sqs.json",
"chars": 73393,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-sqs\",\n \"title\": \"AWS Simple Queue Service (SQS)\",\n \""
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-step-functions.json",
"chars": 32973,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-step-functions\",\n \"title\": \"AWS StepFunctions\",\n \"de"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-sts.json",
"chars": 24664,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-sts\",\n \"title\": \"AWS Security Token Service (STS)\",\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-textract.json",
"chars": 30250,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-textract\",\n \"title\": \"AWS Textract\",\n \"description\":"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-timestream.json",
"chars": 43719,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-timestream\",\n \"title\": \"AWS Timestream\",\n \"descripti"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-transcribe.json",
"chars": 31936,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-transcribe\",\n \"title\": \"AWS Transcribe\",\n \"descripti"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-translate.json",
"chars": 28316,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"aws2-translate\",\n \"title\": \"AWS Translate\",\n \"description"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-cosmosdb.json",
"chars": 44684,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-cosmosdb\",\n \"title\": \"Azure CosmosDB\",\n \"descriptio"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-eventgrid.json",
"chars": 11712,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-eventgrid\",\n \"title\": \"Azure Event Grid\",\n \"descrip"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-eventhubs.json",
"chars": 38260,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-eventhubs\",\n \"title\": \"Azure Event Hubs\",\n \"descrip"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-files.json",
"chars": 72355,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-files\",\n \"title\": \"Azure Files\",\n \"description\": \"S"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-functions.json",
"chars": 30637,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-functions\",\n \"title\": \"Azure Functions\",\n \"descript"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-key-vault.json",
"chars": 7983,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-key-vault\",\n \"title\": \"Azure Key Vault\",\n \"descript"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-servicebus.json",
"chars": 46738,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-servicebus\",\n \"title\": \"Azure ServiceBus\",\n \"descri"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-storage-blob.json",
"chars": 110702,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-storage-blob\",\n \"title\": \"Azure Storage Blob Service\","
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-storage-datalake.json",
"chars": 75623,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-storage-datalake\",\n \"title\": \"Azure Storage Data Lake "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-storage-queue.json",
"chars": 38839,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"azure-storage-queue\",\n \"title\": \"Azure Storage Queue Service"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/bean-validator.json",
"chars": 8205,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"bean-validator\",\n \"title\": \"Bean Validator\",\n \"descriptio"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/bean.json",
"chars": 7182,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"bean\",\n \"title\": \"Bean\",\n \"description\": \"Invoke methods "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/bonita.json",
"chars": 5844,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"bonita\",\n \"title\": \"Bonita\",\n \"description\": \"Communicate"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/box.json",
"chars": 95853,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"box\",\n \"title\": \"Box\",\n \"description\": \"Upload, download "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/braintree.json",
"chars": 63156,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"braintree\",\n \"title\": \"Braintree\",\n \"description\": \"Proce"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/browse.json",
"chars": 7828,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"browse\",\n \"title\": \"Browse\",\n \"description\": \"Inspect the"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/caffeine-cache.json",
"chars": 21772,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"caffeine-cache\",\n \"title\": \"Caffeine Cache\",\n \"descriptio"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/caffeine-loadcache.json",
"chars": 21824,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"caffeine-loadcache\",\n \"title\": \"Caffeine LoadCache\",\n \"de"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/chatscript.json",
"chars": 4823,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"chatscript\",\n \"title\": \"ChatScript\",\n \"description\": \"Cha"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/chunk.json",
"chars": 9212,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"chunk\",\n \"title\": \"Chunk\",\n \"description\": \"Transform mes"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/class.json",
"chars": 7191,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"class\",\n \"title\": \"Class\",\n \"description\": \"Invoke method"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/clickup.json",
"chars": 6955,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"clickup\",\n \"title\": \"ClickUp\",\n \"description\": \"Receives "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cm-sms.json",
"chars": 5474,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cm-sms\",\n \"title\": \"CM SMS Gateway\",\n \"description\": \"Sen"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/coap+tcp.json",
"chars": 16600,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"coap+tcp\",\n \"title\": \"CoAP\",\n \"description\": \"Send and re"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/coap.json",
"chars": 16588,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"coap\",\n \"title\": \"CoAP\",\n \"description\": \"Send and receiv"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/coaps+tcp.json",
"chars": 16603,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"coaps+tcp\",\n \"title\": \"CoAP\",\n \"description\": \"Send and r"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/coaps.json",
"chars": 16600,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"coaps\",\n \"title\": \"CoAP (Secure)\",\n \"description\": \"Send "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cometd.json",
"chars": 15478,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cometd\",\n \"title\": \"CometD\",\n \"description\": \"Offers publ"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cometds.json",
"chars": 15490,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cometds\",\n \"title\": \"CometD (Secure)\",\n \"description\": \"O"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/consul.json",
"chars": 38227,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"consul\",\n \"title\": \"Consul\",\n \"description\": \"Integrate w"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/controlbus.json",
"chars": 6785,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"controlbus\",\n \"title\": \"Control Bus\",\n \"description\": \"Ma"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/couchbase.json",
"chars": 27971,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"couchbase\",\n \"title\": \"Couchbase\",\n \"description\": \"Query"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/couchdb.json",
"chars": 13102,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"couchdb\",\n \"title\": \"CouchDB\",\n \"description\": \"Consume c"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cql.json",
"chars": 19432,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cql\",\n \"title\": \"Cassandra CQL\",\n \"description\": \"Integra"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cron.json",
"chars": 5865,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cron\",\n \"title\": \"Cron\",\n \"description\": \"A generic inter"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/crypto.json",
"chars": 26100,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"crypto\",\n \"title\": \"Crypto (JCE)\",\n \"description\": \"Sign "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cxf.json",
"chars": 24203,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cxf\",\n \"title\": \"CXF\",\n \"description\": \"Expose SOAP WebSe"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cxfrs.json",
"chars": 26869,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cxfrs\",\n \"title\": \"CXF-RS\",\n \"description\": \"Expose JAX-R"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/cyberark-vault.json",
"chars": 14409,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"cyberark-vault\",\n \"title\": \"CyberArk Vault\",\n \"descriptio"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dapr.json",
"chars": 64481,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dapr\",\n \"title\": \"Dapr\",\n \"description\": \"Dapr component "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dataformat.json",
"chars": 3859,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dataformat\",\n \"title\": \"Data Format\",\n \"description\": \"Us"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dataset-test.json",
"chars": 13540,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dataset-test\",\n \"title\": \"DataSet Test\",\n \"description\": "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dataset.json",
"chars": 18107,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dataset\",\n \"title\": \"Dataset\",\n \"description\": \"Provide d"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/debezium-db2.json",
"chars": 127933,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"debezium-db2\",\n \"title\": \"Debezium DB2 Connector\",\n \"desc"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/debezium-mongodb.json",
"chars": 118640,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"debezium-mongodb\",\n \"title\": \"Debezium MongoDB Connector\",\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/debezium-mysql.json",
"chars": 178503,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"debezium-mysql\",\n \"title\": \"Debezium MySQL Connector\",\n \""
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/debezium-oracle.json",
"chars": 209116,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"debezium-oracle\",\n \"title\": \"Debezium Oracle Connector\",\n "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/debezium-postgres.json",
"chars": 185492,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"debezium-postgres\",\n \"title\": \"Debezium PostgresSQL Connecto"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/debezium-sqlserver.json",
"chars": 146766,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"debezium-sqlserver\",\n \"title\": \"Debezium SQL Server Connecto"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dfdl.json",
"chars": 4662,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dfdl\",\n \"title\": \"DFDL\",\n \"description\": \"Transforms fixe"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dhis2.json",
"chars": 29805,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dhis2\",\n \"title\": \"DHIS2\",\n \"description\": \"Leverages the"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/digitalocean.json",
"chars": 18703,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"digitalocean\",\n \"title\": \"DigitalOcean\",\n \"description\": "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/direct.json",
"chars": 9215,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"direct\",\n \"title\": \"Direct\",\n \"description\": \"Call anothe"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/disruptor-vm.json",
"chars": 13612,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"disruptor-vm\",\n \"title\": \"Disruptor VM\",\n \"description\": "
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/disruptor.json",
"chars": 13595,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"disruptor\",\n \"title\": \"Disruptor\",\n \"description\": \"Provi"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/djl.json",
"chars": 5444,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"djl\",\n \"title\": \"Deep Java Library\",\n \"description\": \"Inf"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dns.json",
"chars": 5761,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dns\",\n \"title\": \"DNS\",\n \"description\": \"Perform DNS queri"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/docker.json",
"chars": 52560,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"docker\",\n \"title\": \"Docker\",\n \"description\": \"Manage Dock"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/docling.json",
"chars": 65873,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"docling\",\n \"title\": \"Docling\",\n \"description\": \"Process d"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/drill.json",
"chars": 5224,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"drill\",\n \"title\": \"Drill\",\n \"description\": \"Perform queri"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dropbox.json",
"chars": 17959,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dropbox\",\n \"title\": \"Dropbox\",\n \"description\": \"Upload, d"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router-control.json",
"chars": 10559,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dynamic-router-control\",\n \"title\": \"Dynamic Router Control\","
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dynamic-router.json",
"chars": 16959,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"dynamic-router\",\n \"title\": \"Dynamic Router\",\n \"descriptio"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/ehcache.json",
"chars": 22770,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"ehcache\",\n \"title\": \"Ehcache\",\n \"description\": \"Perform c"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/elasticsearch-rest-client.json",
"chars": 13042,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"elasticsearch-rest-client\",\n \"title\": \"Elasticsearch Low lev"
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/elasticsearch.json",
"chars": 22639,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"elasticsearch\",\n \"title\": \"Elasticsearch\",\n \"description\""
},
{
"path": "catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/etcd3.json",
"chars": 28509,
"preview": "{\n \"component\": {\n \"kind\": \"component\",\n \"name\": \"etcd3\",\n \"title\": \"Etcd v3\",\n \"description\": \"Get, set, d"
}
]
// ... and 5373 more files (download for full content)
About this extraction
This page contains the full source code of the apache/camel-spring-boot GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 5573 files (49.4 MB), approximately 13.4M tokens, and a symbol index with 22435 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.