You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/10/20 15:54:17 UTC

[camel-examples] branch main updated: added the missing description and updated the order of items. (#130)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 5559d04e added the missing description and updated the order of items. (#130)
5559d04e is described below

commit 5559d04ec3c93bee7da72e980e39e8cd0d30544e
Author: Rafael Marques <ra...@gmail.com>
AuthorDate: Fri Oct 20 12:54:11 2023 -0300

    added the missing description and updated the order of items. (#130)
    
    * added the missing description and updated the order
    
    * added the missing description in the related POM
---
 README.adoc                                       | 25 ++++++++++++-----------
 resume-api/resume-api-aws2-kinesis/pom.xml        |  1 +
 resume-api/resume-api-cassandraql/pom.xml         |  1 +
 resume-api/resume-api-file-offset/pom.xml         |  1 +
 resume-api/resume-api-fileset-clusterized/pom.xml |  1 +
 resume-api/resume-api-fileset-wal/pom.xml         |  1 +
 resume-api/resume-api-fileset/pom.xml             |  1 +
 7 files changed, 19 insertions(+), 12 deletions(-)

diff --git a/README.adoc b/README.adoc
index e6dce022..7f933049 100644
--- a/README.adoc
+++ b/README.adoc
@@ -34,18 +34,6 @@ Number of Examples: 75 (0 deprecated)
 |===
 | Example | Category | Description
 
-| link:resume-api/resume-api-aws2-kinesis/README.md[Resume Api Aws2 Kinesis] (resume-api-aws2-kinesis) |  | 
-
-| link:resume-api/resume-api-cassandraql/README.md[Resume Api Cassandraql] (resume-api-cassandraql) |  | 
-
-| link:resume-api/resume-api-file-offset/README.md[Resume Api File Offset] (resume-api-file-offset) |  | 
-
-| link:resume-api/resume-api-fileset/README.md[Resume Api Fileset] (resume-api-fileset) |  | 
-
-| link:resume-api/resume-api-fileset-clusterized/README.md[Resume Api Fileset Clusterized] (resume-api-fileset-clusterized) |  | 
-
-| link:resume-api/resume-api-fileset-wal/README.md[Resume Api Fileset Wal] (resume-api-fileset-wal) |  | 
-
 | link:as2/README.adoc[AS2 Example] (as2) | Beginner | An example which demonstrates the use of the Camel AS2 component
 
 | link:vault/aws-secrets-manager/README.adoc[Aws Secrets Manager] (aws-secrets-manager) | Beginner | An example for showing AWS Secrets Manager Camel component
@@ -114,6 +102,14 @@ Number of Examples: 75 (0 deprecated)
 
 | link:oaipmh/README.adoc[OAIPMH example] (oaipmh) | Beginner | An example with OAIPMH component
 
+| link:resume-api/resume-api-file-offset/README.md[Resume Api File Offset] (resume-api-file-offset) | Beginner | An example for showing the Resume API for processing a large file.
+
+| link:resume-api/resume-api-fileset/README.md[Resume Api Fileset] (resume-api-fileset) | Beginner | An example for showing the Resume API for processing a large directory
+
+| link:resume-api/resume-api-fileset-clusterized/README.md[Resume Api Fileset Clusterized] (resume-api-fileset-clusterized) | Beginner | An example for showing the Resume API for processing a large directory in clusterized mode
+
+| link:resume-api/resume-api-fileset-wal/README.md[Resume Api Fileset Wal] (resume-api-fileset-wal) | Cloud | An example for showing the Resume API for processing a large directory using a the write ahead log
+
 | link:routeloader/README.adoc[Routeloader] (routeloader) | Beginner | Example loading and compiling Java routes on startup
 
 | link:routes-configuration/README.adoc[Routes Configuration] (routes-configuration) | Beginner | Example with global routes configuration for error handling
@@ -132,6 +128,9 @@ Number of Examples: 75 (0 deprecated)
 
 | link:aws/main-endpointdsl-aws2/README.adoc[Main Endpointdsl Aws2] (main-endpointdsl-aws2) | Cloud | An example for showing standalone Camel with multiple AWS2 components
 
+| link:resume-api/resume-api-aws2-kinesis/README.md[Resume Api Aws2 Kinesis] (resume-api-aws2-kinesis) | Cloud | An example for showing the Resume API for consuming AWS Kinesis data streams
+
+
 | link:debezium/README.adoc[Debezium] (debezium) | Database | An example for Debezium Component
 
 | link:debezium-eventhubs-blob/README.adoc[Debezium Eventhubs Blob] (debezium-eventhubs-blob) | Database | An example for Debezium Component with Azure Event Hubs and Azure Storage Blob
@@ -142,6 +141,8 @@ Number of Examples: 75 (0 deprecated)
 
 | link:mongodb/README.adoc[Mongodb] (mongodb) | Database | An example that uses Camel MongoDB component
 
+| link:resume-api/resume-api-cassandraql/README.md[Resume Api Cassandraql] (resume-api-cassandraql) | Database | An example for showing the Resume API for consuming data from Apache Cassandra
+
 | link:aggregate/README.adoc[Aggregate] (aggregate) | EIP | Demonstrates the persistent support for the Camel aggregator
 
 | link:aggregate-dist/README.adoc[Aggregate Dist] (aggregate-dist) | EIP | How to use the JdbcAggregationRepository in a distributed environment
diff --git a/resume-api/resume-api-aws2-kinesis/pom.xml b/resume-api/resume-api-aws2-kinesis/pom.xml
index 1c270f34..ad29e124 100644
--- a/resume-api/resume-api-aws2-kinesis/pom.xml
+++ b/resume-api/resume-api-aws2-kinesis/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>resume-api-aws2-kinesis</artifactId>
     <name>Camel :: Example :: Resume API :: AWS Kinesis</name>
+    <description>An example for showing the Resume API for consuming AWS Kinesis data streams.</description>
 
     <properties>
         <resume.main.class>org.apache.camel.example.resume.aws.kinesis.main.MainApp</resume.main.class>
diff --git a/resume-api/resume-api-cassandraql/pom.xml b/resume-api/resume-api-cassandraql/pom.xml
index 27377952..0ffead2f 100644
--- a/resume-api/resume-api-cassandraql/pom.xml
+++ b/resume-api/resume-api-cassandraql/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>resume-api-cassandraql</artifactId>
     <name>Camel :: Example :: Resume API :: Cassandra</name>
+    <description>An example for showing the Resume API for consuming data from Apache Cassandra.</description>
 
     <properties>
         <resume.main.class>org.apache.camel.example.resume.cassandra.main.MainApp</resume.main.class>
diff --git a/resume-api/resume-api-file-offset/pom.xml b/resume-api/resume-api-file-offset/pom.xml
index 5303d7ac..abdd7e1f 100644
--- a/resume-api/resume-api-file-offset/pom.xml
+++ b/resume-api/resume-api-file-offset/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>resume-api-file-offset</artifactId>
     <name>Camel :: Example :: Resume API :: File Offset</name>
+    <description>An example for showing the Resume API for processing a large file.</description>
 
     <properties>
         <resume.main.class>org.apache.camel.example.resume.file.offset.main.MainApp</resume.main.class>
diff --git a/resume-api/resume-api-fileset-clusterized/pom.xml b/resume-api/resume-api-fileset-clusterized/pom.xml
index 1dcc988a..0ada152b 100644
--- a/resume-api/resume-api-fileset-clusterized/pom.xml
+++ b/resume-api/resume-api-fileset-clusterized/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>resume-api-fileset-clusterized</artifactId>
     <name>Camel :: Example :: Resume API :: Clusterized File Set</name>
+    <description>An example for showing the Resume API for processing a large directory in clusterized mode.</description>
 
     <properties>
         <resume.main.class>org.apache.camel.example.resume.fileset.clusterized.main.MainApp</resume.main.class>
diff --git a/resume-api/resume-api-fileset-wal/pom.xml b/resume-api/resume-api-fileset-wal/pom.xml
index 50bc7974..5da69316 100644
--- a/resume-api/resume-api-fileset-wal/pom.xml
+++ b/resume-api/resume-api-fileset-wal/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>resume-api-fileset-wal</artifactId>
     <name>Camel :: Example :: Resume API :: File Set (w/ WAL)</name>
+    <description>An example for showing the Resume API for processing a large directory using the write ahead log.</description>
 
     <properties>
         <resume.main.class>org.apache.camel.example.resume.fileset.wal.main.MainApp</resume.main.class>
diff --git a/resume-api/resume-api-fileset/pom.xml b/resume-api/resume-api-fileset/pom.xml
index d714d7c1..8521871c 100644
--- a/resume-api/resume-api-fileset/pom.xml
+++ b/resume-api/resume-api-fileset/pom.xml
@@ -28,6 +28,7 @@
 
     <artifactId>resume-api-fileset</artifactId>
     <name>Camel :: Example :: Resume API :: File Set</name>
+    <description>An example for showing the Resume API for processing a large directory.</description>
 
     <properties>
         <resume.main.class>org.apache.camel.example.resume.fileset.main.MainApp</resume.main.class>