Skip to content

Commit 1842d8d

Browse files
oscerdgithub-actions[bot]
authored andcommitted
[create-pull-request] automated change
1 parent f043b41 commit 1842d8d

File tree

32 files changed

+737
-37
lines changed

32 files changed

+737
-37
lines changed

camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-sink.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,19 @@
217217
"priority": "MEDIUM",
218218
"required": "false"
219219
},
220+
"camel.sink.endpoint.jmsMessageType": {
221+
"name": "camel.sink.endpoint.jmsMessageType",
222+
"description": "Allows you to force the use of a specific jakarta.jms.Message implementation for sending JMS messages. Possible values are: Bytes, Map, Object, Stream, Text. By default, Camel would determine which JMS message type to use from the In body type. This option allows you to specify it. One of: [Bytes] [Map] [Object] [Stream] [Text]",
223+
"priority": "MEDIUM",
224+
"required": "false",
225+
"enum": [
226+
"Bytes",
227+
"Map",
228+
"Object",
229+
"Stream",
230+
"Text"
231+
]
232+
},
220233
"camel.sink.endpoint.mapJmsMessage": {
221234
"name": "camel.sink.endpoint.mapJmsMessage",
222235
"description": "Specifies whether Camel should auto map the received JMS message to a suited payload type, such as jakarta.jms.TextMessage to a String etc. See section about how mapping works below for more details.",

camel-kafka-connector-catalog/src/generated/resources/connectors/camel-sjms2-source.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,19 @@
220220
"priority": "MEDIUM",
221221
"required": "false"
222222
},
223+
"camel.source.endpoint.jmsMessageType": {
224+
"name": "camel.source.endpoint.jmsMessageType",
225+
"description": "Allows you to force the use of a specific jakarta.jms.Message implementation for sending JMS messages. Possible values are: Bytes, Map, Object, Stream, Text. By default, Camel would determine which JMS message type to use from the In body type. This option allows you to specify it. One of: [Bytes] [Map] [Object] [Stream] [Text]",
226+
"priority": "MEDIUM",
227+
"required": "false",
228+
"enum": [
229+
"Bytes",
230+
"Map",
231+
"Object",
232+
"Stream",
233+
"Text"
234+
]
235+
},
223236
"camel.source.endpoint.mapJmsMessage": {
224237
"name": "camel.source.endpoint.mapJmsMessage",
225238
"description": "Specifies whether Camel should auto map the received JMS message to a suited payload type, such as jakarta.jms.TextMessage to a String etc. See section about how mapping works below for more details.",

camel-kafka-connector-catalog/src/generated/resources/descriptors/connectors.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ camel-oracle-database-sink-sink
161161
camel-oracle-database-source-source
162162
camel-postgresql-sink-sink
163163
camel-postgresql-source-source
164+
camel-pqc-signature-sink-sink
164165
camel-pulsar-sink-sink
165166
camel-pulsar-source-source
166167
camel-redis-sink-sink

connectors/camel-jms-pooled-apache-artemis-sink-kafka-connector/src/main/resources/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,17 @@ spec:
7171
maxSessionsPerConnection:
7272
title: "Max Sessions Per Connection"
7373
description: "The maximum number of pooled sessions per connection in the pool"
74-
type: int
74+
type: integer
7575
default: 500
7676
maxIdleSessionsPerConnection:
7777
title: "Max Idle Sessions Per Connection"
7878
description: "The number of idle sessions allowed per connection before they are closed."
79-
type: int
79+
type: integer
8080
default: 500
8181
connectionIdleTimeout:
8282
title: "Connection Idle Timeout"
8383
description: "The maximum time a pooled Connection can sit unused before it is eligible for removal (in milliseconds)"
84-
type: int
84+
type: integer
8585
default: 30000
8686
dependencies:
8787
- "camel:jms"

connectors/camel-jms-pooled-apache-artemis-source-kafka-connector/src/main/resources/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ spec:
7070
maxSessionsPerConnection:
7171
title: "Max Session Per Connection"
7272
description: "The maximum number of pooled sessions per connection in the pool"
73-
type: int
73+
type: integer
7474
default: 500
7575
maxIdleSessionsPerConnection:
7676
title: "Max Idle Sessions Per Connection"
7777
description: "The number of idle sessions allowed per connection before they are closed."
78-
type: int
78+
type: integer
7979
default: 500
8080
connectionIdleTimeout:
8181
title: "Connection Idle Timeout"
8282
description: "The maximum time a pooled Connection can sit unused before it is eligible for removal (in milliseconds)"
83-
type: int
83+
type: integer
8484
default: 30000
8585
dependencies:
8686
- "camel:jms"

connectors/camel-kafka-batch-apicurio-registry-not-secured-source-kafka-connector/src/main/resources/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,21 +108,21 @@ spec:
108108
batchSize:
109109
title: Batch Dimension
110110
description: The maximum number of records returned in a single call to poll()
111-
type: int
111+
type: integer
112112
default: 500
113113
pollTimeout:
114114
title: Poll Timeout Interval
115115
description: The timeout used when polling the KafkaConsumer
116-
type: int
116+
type: integer
117117
default: 5000
118118
maxPollIntervalMs:
119119
title: Max Poll Interval
120120
description: The maximum delay between invocations of poll() when using consumer group management
121-
type: int
121+
type: integer
122122
batchingIntervalMs:
123123
title: Batching Interval
124124
description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option).
125-
type: int
125+
type: integer
126126
topicIsPattern:
127127
title: Topic Is Pattern
128128
description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.

connectors/camel-kafka-batch-apicurio-registry-source-kafka-connector/src/main/resources/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,21 +114,21 @@ spec:
114114
batchSize:
115115
title: Batch Dimension
116116
description: The maximum number of records returned in a single call to poll()
117-
type: int
117+
type: integer
118118
default: 500
119119
pollTimeout:
120120
title: Poll Timeout Interval
121121
description: The timeout used when polling the KafkaConsumer
122-
type: int
122+
type: integer
123123
default: 5000
124124
maxPollIntervalMs:
125125
title: Max Poll Interval
126126
description: The maximum delay between invocations of poll() when using consumer group management
127-
type: int
127+
type: integer
128128
batchingIntervalMs:
129129
title: Batching Interval
130130
description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option).
131-
type: int
131+
type: integer
132132
apicurioAuthServiceUrl:
133133
title: Apicurio Registry Auth Service URL
134134
description: The URL for Keycloak instance securing the Apicurio Registry

connectors/camel-kafka-batch-azure-schema-registry-source-kafka-connector/src/main/resources/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,21 +128,21 @@ spec:
128128
batchSize:
129129
title: Batch Dimension
130130
description: The maximum number of records returned in a single call to poll()
131-
type: int
131+
type: integer
132132
default: 500
133133
pollTimeout:
134134
title: Poll Timeout Interval
135135
description: The timeout used when polling the KafkaConsumer
136-
type: int
136+
type: integer
137137
default: 5000
138138
maxPollIntervalMs:
139139
title: Max Poll Interval
140140
description: The maximum delay between invocations of poll() when using consumer group management
141-
type: int
141+
type: integer
142142
batchingIntervalMs:
143143
title: Batching Interval
144144
description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option).
145-
type: int
145+
type: integer
146146
topicIsPattern:
147147
title: Topic Is Pattern
148148
description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.

connectors/camel-kafka-batch-not-secured-source-kafka-connector/src/main/resources/kamelets/kafka-batch-not-secured-source.kamelet.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,21 +90,21 @@ spec:
9090
batchSize:
9191
title: Batch Dimension
9292
description: The maximum number of records returned in a single call to poll()
93-
type: int
93+
type: integer
9494
default: 500
9595
pollTimeout:
9696
title: Poll Timeout Interval
9797
description: The timeout used when polling the KafkaConsumer
98-
type: int
98+
type: integer
9999
default: 5000
100100
maxPollIntervalMs:
101101
title: Max Poll Interval
102102
description: The maximum delay between invocations of poll() when using consumer group management
103-
type: int
103+
type: integer
104104
batchingIntervalMs:
105105
title: Batching Interval
106106
description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option).
107-
type: int
107+
type: integer
108108
topicIsPattern:
109109
title: Topic Is Pattern
110110
description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.

connectors/camel-kafka-batch-scram-source-kafka-connector/src/main/resources/kamelets/kafka-batch-scram-source.kamelet.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,21 +121,21 @@ spec:
121121
batchSize:
122122
title: Batch Dimension
123123
description: The maximum number of records returned in a single call to poll()
124-
type: int
124+
type: integer
125125
default: 500
126126
pollTimeout:
127127
title: Poll Timeout Interval
128128
description: The timeout used when polling the KafkaConsumer
129-
type: int
129+
type: integer
130130
default: 5000
131131
maxPollIntervalMs:
132132
title: Max Poll Interval
133133
description: The maximum delay between invocations of poll() when using consumer group management
134-
type: int
134+
type: integer
135135
batchingIntervalMs:
136136
title: Batching Interval
137137
description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option).
138-
type: int
138+
type: integer
139139
topicIsPattern:
140140
title: Topic Is Pattern
141141
description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.

connectors/camel-kafka-batch-source-kafka-connector/src/main/resources/kamelets/kafka-batch-source.kamelet.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,21 +121,21 @@ spec:
121121
batchSize:
122122
title: Batch Dimension
123123
description: The maximum number of records returned in a single call to poll()
124-
type: int
124+
type: integer
125125
default: 500
126126
pollTimeout:
127127
title: Poll Timeout Interval
128128
description: The timeout used when polling the KafkaConsumer
129-
type: int
129+
type: integer
130130
default: 5000
131131
maxPollIntervalMs:
132132
title: Max Poll Interval
133133
description: The maximum delay between invocations of poll() when using consumer group management
134-
type: int
134+
type: integer
135135
batchingIntervalMs:
136136
title: Batching Interval
137137
description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option).
138-
type: int
138+
type: integer
139139
topicIsPattern:
140140
title: Topic Is Pattern
141141
description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.

connectors/camel-kafka-batch-ssl-source-kafka-connector/src/main/resources/kamelets/kafka-batch-ssl-source.kamelet.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,21 +145,21 @@ spec:
145145
batchSize:
146146
title: Batch Dimension
147147
description: The maximum number of records returned in a single call to poll()
148-
type: int
148+
type: integer
149149
default: 500
150150
pollTimeout:
151151
title: Poll Timeout Interval
152152
description: The timeout used when polling the KafkaConsumer
153-
type: int
153+
type: integer
154154
default: 5000
155155
maxPollIntervalMs:
156156
title: Max Poll Interval
157157
description: The maximum delay between invocations of poll() when using consumer group management
158-
type: int
158+
type: integer
159159
batchingIntervalMs:
160160
title: Batching Interval
161161
description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option).
162-
type: int
162+
type: integer
163163
topicIsPattern:
164164
title: Topic Is Pattern
165165
description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern.
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Licensed to the Apache Software Foundation (ASF) under one or more
5+
contributor license agreements. See the NOTICE file distributed with
6+
this work for additional information regarding copyright ownership.
7+
The ASF licenses this file to You under the Apache License, Version 2.0
8+
(the "License"); you may not use this file except in compliance with
9+
the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
19+
-->
20+
<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/xsd/maven-4.0.0.xsd">
21+
<modelVersion>4.0.0</modelVersion>
22+
<parent>
23+
<groupId>org.apache.camel.kafkaconnector</groupId>
24+
<artifactId>connectors</artifactId>
25+
<version>4.12.0-SNAPSHOT</version>
26+
</parent>
27+
<artifactId>camel-pqc-signature-sink-kafka-connector</artifactId>
28+
<name>Camel-Kafka-Connector :: pqc-signature-sink</name>
29+
<description>Camel Kafka Connector for pqc-signature-sink</description>
30+
<dependencies>
31+
<!-- Kafka -->
32+
<dependency>
33+
<groupId>org.apache.kafka</groupId>
34+
<artifactId>connect-api</artifactId>
35+
<scope>provided</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.apache.kafka</groupId>
39+
<artifactId>connect-transforms</artifactId>
40+
<scope>provided</scope>
41+
</dependency>
42+
<!-- Camel -->
43+
<!--START OF GENERATED CODE-->
44+
<dependency>
45+
<groupId>org.apache.camel</groupId>
46+
<artifactId>camel-core</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.apache.camel.kafkaconnector</groupId>
50+
<artifactId>camel-kafka-connector</artifactId>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.apache.camel</groupId>
54+
<artifactId>camel-yaml-dsl</artifactId>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.apache.camel</groupId>
58+
<artifactId>camel-kamelet</artifactId>
59+
</dependency>
60+
<dependency>
61+
<groupId>org.apache.camel</groupId>
62+
<artifactId>camel-http</artifactId>
63+
</dependency>
64+
<!--END OF GENERATED CODE-->
65+
</dependencies>
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-surefire-plugin</artifactId>
71+
<version>${version.maven.surefire.plugin}</version>
72+
<configuration>
73+
<failIfNoTests>false</failIfNoTests>
74+
</configuration>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-jar-plugin</artifactId>
79+
<version>${version.maven.jar}</version>
80+
<configuration>
81+
<archive>
82+
<manifest>
83+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
84+
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
85+
</manifest>
86+
</archive>
87+
</configuration>
88+
</plugin>
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-compiler-plugin</artifactId>
92+
<version>${version.maven.compiler}</version>
93+
<inherited>true</inherited>
94+
<configuration>
95+
<source>${version.java}</source>
96+
<target>${version.java}</target>
97+
</configuration>
98+
</plugin>
99+
<plugin>
100+
<artifactId>maven-assembly-plugin</artifactId>
101+
<version>3.3.0</version>
102+
<configuration>
103+
<descriptors>
104+
<descriptor>src/main/assembly/package.xml</descriptor>
105+
</descriptors>
106+
</configuration>
107+
<executions>
108+
<execution>
109+
<id>make-assembly</id>
110+
<phase>package</phase>
111+
<goals>
112+
<goal>single</goal>
113+
</goals>
114+
</execution>
115+
</executions>
116+
</plugin>
117+
</plugins>
118+
</build>
119+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
camel-pqc-signature-sink-sink

0 commit comments

Comments
 (0)