index
int64
0
0
repo_id
stringlengths
9
205
file_path
stringlengths
31
246
content
stringlengths
1
12.2M
__index_level_0__
int64
0
10k
0
Create_ds/camel-kafka-connector/connectors/camel-aws-ses-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-ses-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awssessink/CamelAwssessinkSinkTask.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 org.apache.camel.kafkaconnector.awssessink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwssessinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelAwssessinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:aws-ses-sink"; } }
8,500
0
Create_ds/camel-kafka-connector/connectors/camel-earthquake-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-earthquake-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/earthquakesource/CamelEarthquakesourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.earthquakesource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelEarthquakesourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_PERIOD_CONF = "camel.kamelet.earthquake-source.period"; public static final String CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_PERIOD_DOC = "The interval between fetches to the earthquake API in milliseconds"; public static final Integer CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_PERIOD_DEFAULT = 60000; public static final String CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_LOOK_AHEAD_CONF = "camel.kamelet.earthquake-source.lookAhead"; public static final String CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_LOOK_AHEAD_DOC = "The amount of minutes to look ahead when starting the integration afresh"; public static final Integer CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_LOOK_AHEAD_DEFAULT = 120; public CamelEarthquakesourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelEarthquakesourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_PERIOD_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_PERIOD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_PERIOD_DOC); conf.define(CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_LOOK_AHEAD_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_LOOK_AHEAD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_EARTHQUAKESOURCE_KAMELET_LOOK_AHEAD_DOC); return conf; } }
8,501
0
Create_ds/camel-kafka-connector/connectors/camel-earthquake-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-earthquake-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/earthquakesource/CamelEarthquakesourceSourceConnector.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 org.apache.camel.kafkaconnector.earthquakesource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelEarthquakesourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelEarthquakesourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelEarthquakesourceSourceTask.class; } }
8,502
0
Create_ds/camel-kafka-connector/connectors/camel-earthquake-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-earthquake-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/earthquakesource/CamelEarthquakesourceSourceTask.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 org.apache.camel.kafkaconnector.earthquakesource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelEarthquakesourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelEarthquakesourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:earthquake-source"; } }
8,503
0
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-pods-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-pods-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/kubernetespodssource/CamelKubernetespodssourceSourceConnector.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 org.apache.camel.kafkaconnector.kubernetespodssource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelKubernetespodssourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelKubernetespodssourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelKubernetespodssourceSourceTask.class; } }
8,504
0
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-pods-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-pods-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/kubernetespodssource/CamelKubernetespodssourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.kubernetespodssource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelKubernetespodssourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_TOKEN_CONF = "camel.kamelet.kubernetes-pods-source.token"; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_TOKEN_DOC = "The Auth Token to connect to Kubernetes Cluster"; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_TOKEN_DEFAULT = null; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_MASTER_URL_CONF = "camel.kamelet.kubernetes-pods-source.masterUrl"; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_MASTER_URL_DOC = "The Kubernetes Cluster Master URL"; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_MASTER_URL_DEFAULT = null; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_RESOURCE_NAME_CONF = "camel.kamelet.kubernetes-pods-source.resourceName"; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_RESOURCE_NAME_DOC = "The Resource Name we want to watch"; public static final String CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_RESOURCE_NAME_DEFAULT = null; public CamelKubernetespodssourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelKubernetespodssourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_TOKEN_DOC); conf.define(CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_MASTER_URL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_MASTER_URL_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_MASTER_URL_DOC); conf.define(CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_RESOURCE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_RESOURCE_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_KUBERNETESPODSSOURCE_KAMELET_RESOURCE_NAME_DOC); return conf; } }
8,505
0
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-pods-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-pods-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/kubernetespodssource/CamelKubernetespodssourceSourceTask.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 org.apache.camel.kafkaconnector.kubernetespodssource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelKubernetespodssourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelKubernetespodssourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:kubernetes-pods-source"; } }
8,506
0
Create_ds/camel-kafka-connector/connectors/camel-webhook-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-webhook-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/webhooksource/CamelWebhooksourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.webhooksource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelWebhooksourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_WEBHOOKSOURCE_KAMELET_SUBPATH_CONF = "camel.kamelet.webhook-source.subpath"; public static final String CAMEL_SOURCE_WEBHOOKSOURCE_KAMELET_SUBPATH_DOC = "The subpath where the webhook is registered "; public static final String CAMEL_SOURCE_WEBHOOKSOURCE_KAMELET_SUBPATH_DEFAULT = "webhook"; public CamelWebhooksourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelWebhooksourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_WEBHOOKSOURCE_KAMELET_SUBPATH_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_WEBHOOKSOURCE_KAMELET_SUBPATH_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_WEBHOOKSOURCE_KAMELET_SUBPATH_DOC); return conf; } }
8,507
0
Create_ds/camel-kafka-connector/connectors/camel-webhook-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-webhook-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/webhooksource/CamelWebhooksourceSourceConnector.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 org.apache.camel.kafkaconnector.webhooksource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelWebhooksourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelWebhooksourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelWebhooksourceSourceTask.class; } }
8,508
0
Create_ds/camel-kafka-connector/connectors/camel-webhook-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-webhook-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/webhooksource/CamelWebhooksourceSourceTask.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 org.apache.camel.kafkaconnector.webhooksource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelWebhooksourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelWebhooksourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:webhook-source"; } }
8,509
0
Create_ds/camel-kafka-connector/connectors/camel-salesforce-delete-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-salesforce-delete-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforcedeletesink/CamelSalesforcedeletesinkSinkTask.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 org.apache.camel.kafkaconnector.salesforcedeletesink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelSalesforcedeletesinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelSalesforcedeletesinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:salesforce-delete-sink"; } }
8,510
0
Create_ds/camel-kafka-connector/connectors/camel-salesforce-delete-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-salesforce-delete-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforcedeletesink/CamelSalesforcedeletesinkSinkConnector.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 org.apache.camel.kafkaconnector.salesforcedeletesink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelSalesforcedeletesinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelSalesforcedeletesinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelSalesforcedeletesinkSinkTask.class; } }
8,511
0
Create_ds/camel-kafka-connector/connectors/camel-salesforce-delete-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-salesforce-delete-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/salesforcedeletesink/CamelSalesforcedeletesinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.salesforcedeletesink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelSalesforcedeletesinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_LOGIN_URL_CONF = "camel.kamelet.salesforce-delete-sink.loginUrl"; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_LOGIN_URL_DOC = "The Salesforce instance login URL."; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_LOGIN_URL_DEFAULT = "https://login.salesforce.com"; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_ID_CONF = "camel.kamelet.salesforce-delete-sink.clientId"; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_ID_DOC = "The Salesforce application consumer key."; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_ID_DEFAULT = null; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_SECRET_CONF = "camel.kamelet.salesforce-delete-sink.clientSecret"; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_SECRET_DOC = "The Salesforce application consumer secret."; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_SECRET_DEFAULT = null; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_USER_NAME_CONF = "camel.kamelet.salesforce-delete-sink.userName"; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_USER_NAME_DOC = "The Salesforce username."; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_USER_NAME_DEFAULT = null; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_PASSWORD_CONF = "camel.kamelet.salesforce-delete-sink.password"; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_PASSWORD_DOC = "The Salesforce user password."; public static final String CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_PASSWORD_DEFAULT = null; public CamelSalesforcedeletesinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelSalesforcedeletesinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_LOGIN_URL_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_LOGIN_URL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_LOGIN_URL_DOC); conf.define(CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_ID_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_ID_DOC); conf.define(CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_SECRET_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_SECRET_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_CLIENT_SECRET_DOC); conf.define(CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_USER_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_USER_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_USER_NAME_DOC); conf.define(CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_SALESFORCEDELETESINK_KAMELET_PASSWORD_DOC); return conf; } }
8,512
0
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlepubsubsource/CamelGooglepubsubsourceSourceTask.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 org.apache.camel.kafkaconnector.googlepubsubsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglepubsubsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelGooglepubsubsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:google-pubsub-source"; } }
8,513
0
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlepubsubsource/CamelGooglepubsubsourceSourceConnector.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 org.apache.camel.kafkaconnector.googlepubsubsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglepubsubsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelGooglepubsubsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGooglepubsubsourceSourceTask.class; } }
8,514
0
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlepubsubsource/CamelGooglepubsubsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.googlepubsubsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglepubsubsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_PROJECT_ID_CONF = "camel.kamelet.google-pubsub-source.projectId"; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_PROJECT_ID_DOC = "The Google Cloud Pub/Sub Project ID."; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_PROJECT_ID_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SUBSCRIPTION_NAME_CONF = "camel.kamelet.google-pubsub-source.subscriptionName"; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SUBSCRIPTION_NAME_DOC = "The subscription name."; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SUBSCRIPTION_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_CONF = "camel.kamelet.google-pubsub-source.serviceAccountKey"; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DOC = "The service account key to use as credentials for the Pub/Sub publisher/subscriber. You must encode this value in base64."; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SYNCHRONOUS_PULL_CONF = "camel.kamelet.google-pubsub-source.synchronousPull"; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SYNCHRONOUS_PULL_DOC = "Specifies to synchronously pull batches of messages."; public static final Boolean CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SYNCHRONOUS_PULL_DEFAULT = false; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_CONF = "camel.kamelet.google-pubsub-source.maxMessagesPerPoll"; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DOC = "The maximum number of messages to receive from the server in a single API call."; public static final Integer CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DEFAULT = 1; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_CONCURRENT_CONSUMERS_CONF = "camel.kamelet.google-pubsub-source.concurrentConsumers"; public static final String CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_CONCURRENT_CONSUMERS_DOC = "The number of parallel streams to consume from the subscription."; public static final Integer CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_CONCURRENT_CONSUMERS_DEFAULT = 1; public CamelGooglepubsubsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGooglepubsubsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_PROJECT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_PROJECT_ID_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_PROJECT_ID_DOC); conf.define(CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SUBSCRIPTION_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SUBSCRIPTION_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SUBSCRIPTION_NAME_DOC); conf.define(CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DOC); conf.define(CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SYNCHRONOUS_PULL_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SYNCHRONOUS_PULL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_SYNCHRONOUS_PULL_DOC); conf.define(CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DOC); conf.define(CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_CONCURRENT_CONSUMERS_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_CONCURRENT_CONSUMERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLEPUBSUBSOURCE_KAMELET_CONCURRENT_CONSUMERS_DOC); return conf; } }
8,515
0
Create_ds/camel-kafka-connector/connectors/camel-mail-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mail-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mailsink/CamelMailsinkSinkTask.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 org.apache.camel.kafkaconnector.mailsink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMailsinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelMailsinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:mail-sink"; } }
8,516
0
Create_ds/camel-kafka-connector/connectors/camel-mail-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mail-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mailsink/CamelMailsinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.mailsink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMailsinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_HOST_CONF = "camel.kamelet.mail-sink.connectionHost"; public static final String CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_HOST_DOC = "The mail server host Example: smtp.gmail.com"; public static final String CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_HOST_DEFAULT = null; public static final String CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_PORT_CONF = "camel.kamelet.mail-sink.connectionPort"; public static final String CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_PORT_DOC = "The mail server port"; public static final String CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_PORT_DEFAULT = "25"; public static final String CAMEL_SINK_MAILSINK_KAMELET_USERNAME_CONF = "camel.kamelet.mail-sink.username"; public static final String CAMEL_SINK_MAILSINK_KAMELET_USERNAME_DOC = "The username to access the mail box"; public static final String CAMEL_SINK_MAILSINK_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SINK_MAILSINK_KAMELET_PASSWORD_CONF = "camel.kamelet.mail-sink.password"; public static final String CAMEL_SINK_MAILSINK_KAMELET_PASSWORD_DOC = "The password to access the mail box"; public static final String CAMEL_SINK_MAILSINK_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SINK_MAILSINK_KAMELET_FROM_CONF = "camel.kamelet.mail-sink.from"; public static final String CAMEL_SINK_MAILSINK_KAMELET_FROM_DOC = "The `from` field of the outgoing mail"; public static final String CAMEL_SINK_MAILSINK_KAMELET_FROM_DEFAULT = null; public static final String CAMEL_SINK_MAILSINK_KAMELET_TO_CONF = "camel.kamelet.mail-sink.to"; public static final String CAMEL_SINK_MAILSINK_KAMELET_TO_DOC = "The `to` field of the outgoing mail"; public static final String CAMEL_SINK_MAILSINK_KAMELET_TO_DEFAULT = null; public static final String CAMEL_SINK_MAILSINK_KAMELET_SUBJECT_CONF = "camel.kamelet.mail-sink.subject"; public static final String CAMEL_SINK_MAILSINK_KAMELET_SUBJECT_DOC = "The mail subject of the outgoing mail"; public static final String CAMEL_SINK_MAILSINK_KAMELET_SUBJECT_DEFAULT = null; public CamelMailsinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelMailsinkSinkConnectorConfig(Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_HOST_CONF, ConfigDef.Type.STRING, CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_HOST_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_HOST_DOC); conf.define(CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_PORT_CONF, ConfigDef.Type.STRING, CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_PORT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_MAILSINK_KAMELET_CONNECTION_PORT_DOC); conf.define(CAMEL_SINK_MAILSINK_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_MAILSINK_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_MAILSINK_KAMELET_USERNAME_DOC); conf.define(CAMEL_SINK_MAILSINK_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_MAILSINK_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_MAILSINK_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SINK_MAILSINK_KAMELET_FROM_CONF, ConfigDef.Type.STRING, CAMEL_SINK_MAILSINK_KAMELET_FROM_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_MAILSINK_KAMELET_FROM_DOC); conf.define(CAMEL_SINK_MAILSINK_KAMELET_TO_CONF, ConfigDef.Type.STRING, CAMEL_SINK_MAILSINK_KAMELET_TO_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_MAILSINK_KAMELET_TO_DOC); conf.define(CAMEL_SINK_MAILSINK_KAMELET_SUBJECT_CONF, ConfigDef.Type.STRING, CAMEL_SINK_MAILSINK_KAMELET_SUBJECT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_MAILSINK_KAMELET_SUBJECT_DOC); return conf; } }
8,517
0
Create_ds/camel-kafka-connector/connectors/camel-mail-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mail-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mailsink/CamelMailsinkSinkConnector.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 org.apache.camel.kafkaconnector.mailsink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMailsinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelMailsinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelMailsinkSinkTask.class; } }
8,518
0
Create_ds/camel-kafka-connector/connectors/camel-opensearch-search-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-opensearch-search-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/opensearchsearchsource/CamelOpensearchsearchsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.opensearchsearchsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelOpensearchsearchsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PERIOD_CONF = "camel.kamelet.opensearch-search-source.period"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PERIOD_DOC = "The time interval between two searches"; public static final Integer CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PERIOD_DEFAULT = 1000; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_QUERY_CONF = "camel.kamelet.opensearch-search-source.query"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_QUERY_DOC = "The query we want to use to search on OpenSearch."; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_QUERY_DEFAULT = null; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_USER_CONF = "camel.kamelet.opensearch-search-source.user"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_USER_DOC = "Username to connect to OpenSearch."; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_USER_DEFAULT = null; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.opensearch-search-source.password"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PASSWORD_DOC = "Password to connect to OpenSearch."; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_ENABLE_SSLCONF = "camel.kamelet.opensearch-search-source.enableSSL"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_ENABLE_SSLDOC = "Do we want to connect using SSL?"; public static final Boolean CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_ENABLE_SSLDEFAULT = false; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_HOST_ADDRESSES_CONF = "camel.kamelet.opensearch-search-source.hostAddresses"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_HOST_ADDRESSES_DOC = "Comma separated list with ip:port formatted remote transport addresses to use."; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_HOST_ADDRESSES_DEFAULT = null; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_INDEX_NAME_CONF = "camel.kamelet.opensearch-search-source.indexName"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_INDEX_NAME_DOC = "The name of the index to act against."; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_INDEX_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CLUSTER_NAME_CONF = "camel.kamelet.opensearch-search-source.clusterName"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CLUSTER_NAME_DOC = "The name of the cluster."; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CLUSTER_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CERTIFICATE_CONF = "camel.kamelet.opensearch-search-source.certificate"; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CERTIFICATE_DOC = "The Certificate for accessing the Opensearch cluster. You must encode this value in base64."; public static final String CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CERTIFICATE_DEFAULT = null; public CamelOpensearchsearchsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelOpensearchsearchsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PERIOD_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PERIOD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PERIOD_DOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_QUERY_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_QUERY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_QUERY_DOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_USER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_USER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_USER_DOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_ENABLE_SSLCONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_ENABLE_SSLDEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_ENABLE_SSLDOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_HOST_ADDRESSES_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_HOST_ADDRESSES_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_HOST_ADDRESSES_DOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_INDEX_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_INDEX_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_INDEX_NAME_DOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CLUSTER_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CLUSTER_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CLUSTER_NAME_DOC); conf.define(CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CERTIFICATE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CERTIFICATE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_OPENSEARCHSEARCHSOURCE_KAMELET_CERTIFICATE_DOC); return conf; } }
8,519
0
Create_ds/camel-kafka-connector/connectors/camel-opensearch-search-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-opensearch-search-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/opensearchsearchsource/CamelOpensearchsearchsourceSourceTask.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 org.apache.camel.kafkaconnector.opensearchsearchsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelOpensearchsearchsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelOpensearchsearchsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:opensearch-search-source"; } }
8,520
0
Create_ds/camel-kafka-connector/connectors/camel-opensearch-search-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-opensearch-search-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/opensearchsearchsource/CamelOpensearchsearchsourceSourceConnector.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 org.apache.camel.kafkaconnector.opensearchsearchsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelOpensearchsearchsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelOpensearchsearchsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelOpensearchsearchsourceSourceTask.class; } }
8,521
0
Create_ds/camel-kafka-connector/connectors/camel-splunk-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-splunk-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/splunksink/CamelSplunksinkSinkConnector.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 org.apache.camel.kafkaconnector.splunksink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelSplunksinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelSplunksinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelSplunksinkSinkTask.class; } }
8,522
0
Create_ds/camel-kafka-connector/connectors/camel-splunk-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-splunk-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/splunksink/CamelSplunksinkSinkTask.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 org.apache.camel.kafkaconnector.splunksink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelSplunksinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelSplunksinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:splunk-sink"; } }
8,523
0
Create_ds/camel-kafka-connector/connectors/camel-splunk-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-splunk-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/splunksink/CamelSplunksinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.splunksink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelSplunksinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_HOSTNAME_CONF = "camel.kamelet.splunk-sink.serverHostname"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_HOSTNAME_DOC = "The address of your Splunk server. Example: my_server_splunk.com"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_HOSTNAME_DEFAULT = null; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_PORT_CONF = "camel.kamelet.splunk-sink.serverPort"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_PORT_DOC = "The address of your Splunk server."; public static final Integer CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_PORT_DEFAULT = 8089; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_USERNAME_CONF = "camel.kamelet.splunk-sink.username"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_USERNAME_DOC = "The username to authenticate to Splunk Server."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_PASSWORD_CONF = "camel.kamelet.splunk-sink.password"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_PASSWORD_DOC = "The password to authenticate to Splunk Server."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_INDEX_CONF = "camel.kamelet.splunk-sink.index"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_INDEX_DOC = "Splunk index to write to."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_INDEX_DEFAULT = null; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_PROTOCOL_CONF = "camel.kamelet.splunk-sink.protocol"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_PROTOCOL_DOC = "Connection Protocol to Splunk server."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_PROTOCOL_DEFAULT = "https"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_CONF = "camel.kamelet.splunk-sink.source"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_DOC = "The source named field of the data."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_DEFAULT = null; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_TYPE_CONF = "camel.kamelet.splunk-sink.sourceType"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_TYPE_DOC = "The source named field of the data."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_TYPE_DEFAULT = null; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_APP_CONF = "camel.kamelet.splunk-sink.app"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_APP_DOC = "The app name in Splunk."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_APP_DEFAULT = null; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_CONNECTION_TIMEOUT_CONF = "camel.kamelet.splunk-sink.connectionTimeout"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_CONNECTION_TIMEOUT_DOC = "Timeout in milliseconds when connecting to Splunk server"; public static final Integer CAMEL_SINK_SPLUNKSINK_KAMELET_CONNECTION_TIMEOUT_DEFAULT = 5000; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_MODE_CONF = "camel.kamelet.splunk-sink.mode"; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_MODE_DOC = "The mode to publish events to Splunk."; public static final String CAMEL_SINK_SPLUNKSINK_KAMELET_MODE_DEFAULT = "stream"; public CamelSplunksinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelSplunksinkSinkConnectorConfig(Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_HOSTNAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_HOSTNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_HOSTNAME_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_PORT_CONF, ConfigDef.Type.INT, CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_PORT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_SERVER_PORT_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_SPLUNKSINK_KAMELET_USERNAME_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_SPLUNKSINK_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_SPLUNKSINK_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_INDEX_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_INDEX_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_INDEX_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_PROTOCOL_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_PROTOCOL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_PROTOCOL_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_TYPE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_TYPE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_SOURCE_TYPE_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_APP_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_APP_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_APP_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_CONNECTION_TIMEOUT_CONF, ConfigDef.Type.INT, CAMEL_SINK_SPLUNKSINK_KAMELET_CONNECTION_TIMEOUT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_CONNECTION_TIMEOUT_DOC); conf.define(CAMEL_SINK_SPLUNKSINK_KAMELET_MODE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_SPLUNKSINK_KAMELET_MODE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_SPLUNKSINK_KAMELET_MODE_DOC); return conf; } }
8,524
0
Create_ds/camel-kafka-connector/connectors/camel-mongodb-changes-stream-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mongodb-changes-stream-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mongodbchangesstreamsource/CamelMongodbchangesstreamsourceSourceTask.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 org.apache.camel.kafkaconnector.mongodbchangesstreamsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMongodbchangesstreamsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelMongodbchangesstreamsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:mongodb-changes-stream-source"; } }
8,525
0
Create_ds/camel-kafka-connector/connectors/camel-mongodb-changes-stream-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mongodb-changes-stream-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mongodbchangesstreamsource/CamelMongodbchangesstreamsourceSourceConnector.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 org.apache.camel.kafkaconnector.mongodbchangesstreamsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMongodbchangesstreamsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelMongodbchangesstreamsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelMongodbchangesstreamsourceSourceTask.class; } }
8,526
0
Create_ds/camel-kafka-connector/connectors/camel-mongodb-changes-stream-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mongodb-changes-stream-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mongodbchangesstreamsource/CamelMongodbchangesstreamsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.mongodbchangesstreamsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMongodbchangesstreamsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_CONF = "camel.kamelet.mongodb-changes-stream-source.hosts"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DOC = "Comma separated list of MongoDB Host Addresses in host:port format."; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DEFAULT = null; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_CONF = "camel.kamelet.mongodb-changes-stream-source.collection"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DOC = "Sets the name of the MongoDB collection to bind to this endpoint."; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DEFAULT = null; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.mongodb-changes-stream-source.password"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DOC = "User password for accessing MongoDB."; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_CONF = "camel.kamelet.mongodb-changes-stream-source.username"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DOC = "Username for accessing MongoDB. The username must be present in the MongoDB's authentication database (authenticationDatabase). By default, the MongoDB authenticationDatabase is 'admin'."; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_CONF = "camel.kamelet.mongodb-changes-stream-source.ssl"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_DOC = "whether to enable ssl connection to mongodb"; public static final Boolean CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_DEFAULT = true; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_VALIDATION_ENABLED_CONF = "camel.kamelet.mongodb-changes-stream-source.sslValidationEnabled"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_VALIDATION_ENABLED_DOC = "IMPORTANT this should be disabled only in test environment since can pose security issues."; public static final Boolean CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_VALIDATION_ENABLED_DEFAULT = true; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_CONF = "camel.kamelet.mongodb-changes-stream-source.database"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DOC = "Sets the name of the MongoDB database to target."; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DEFAULT = null; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_CONF = "camel.kamelet.mongodb-changes-stream-source.streamFilter"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DOC = "Filter condition for change streams consumer. Example: { '$match':{'$or':[{'fullDocument.stringValue': 'specificValue'}]} }"; public static final String CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DEFAULT = null; public CamelMongodbchangesstreamsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelMongodbchangesstreamsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_HOSTS_DOC); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_COLLECTION_DOC); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_USERNAME_DOC); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_DOC); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_VALIDATION_ENABLED_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_VALIDATION_ENABLED_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_SSL_VALIDATION_ENABLED_DOC); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_DATABASE_DOC); conf.define(CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MONGODBCHANGESSTREAMSOURCE_KAMELET_STREAM_FILTER_DOC); return conf; } }
8,527
0
Create_ds/camel-kafka-connector/connectors/camel-jms-ibm-mq-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-jms-ibm-mq-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/jmsibmmqsource/CamelJmsibmmqsourceSourceConnector.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 org.apache.camel.kafkaconnector.jmsibmmqsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelJmsibmmqsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelJmsibmmqsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelJmsibmmqsourceSourceTask.class; } }
8,528
0
Create_ds/camel-kafka-connector/connectors/camel-jms-ibm-mq-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-jms-ibm-mq-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/jmsibmmqsource/CamelJmsibmmqsourceSourceTask.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 org.apache.camel.kafkaconnector.jmsibmmqsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelJmsibmmqsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelJmsibmmqsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:jms-ibm-mq-source"; } }
8,529
0
Create_ds/camel-kafka-connector/connectors/camel-jms-ibm-mq-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-jms-ibm-mq-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/jmsibmmqsource/CamelJmsibmmqsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.jmsibmmqsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelJmsibmmqsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_NAME_CONF = "camel.kamelet.jms-ibm-mq-source.serverName"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_NAME_DOC = "IBM MQ Server name or address"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_PORT_CONF = "camel.kamelet.jms-ibm-mq-source.serverPort"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_PORT_DOC = "IBM MQ Server port"; public static final Integer CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_PORT_DEFAULT = 1414; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_TYPE_CONF = "camel.kamelet.jms-ibm-mq-source.destinationType"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_TYPE_DOC = "The JMS destination type (queue or topic)"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_TYPE_DEFAULT = "queue"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_NAME_CONF = "camel.kamelet.jms-ibm-mq-source.destinationName"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_NAME_DOC = "The destination name"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_QUEUE_MANAGER_CONF = "camel.kamelet.jms-ibm-mq-source.queueManager"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_QUEUE_MANAGER_DOC = "Name of the IBM MQ Queue Manager"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_QUEUE_MANAGER_DEFAULT = null; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CHANNEL_CONF = "camel.kamelet.jms-ibm-mq-source.channel"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CHANNEL_DOC = "Name of the IBM MQ Channel"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CHANNEL_DEFAULT = null; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CLIENT_ID_CONF = "camel.kamelet.jms-ibm-mq-source.clientId"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CLIENT_ID_DOC = "Name of the IBM MQ Client ID"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CLIENT_ID_DEFAULT = null; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_USERNAME_CONF = "camel.kamelet.jms-ibm-mq-source.username"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_USERNAME_DOC = "Username to authenticate to IBM MQ server"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.jms-ibm-mq-source.password"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_PASSWORD_DOC = "Password to authenticate to IBM MQ server"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SSL_CIPHER_SUITE_CONF = "camel.kamelet.jms-ibm-mq-source.sslCipherSuite"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SSL_CIPHER_SUITE_DOC = "CipherSuite to use for enabling TLS"; public static final String CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SSL_CIPHER_SUITE_DEFAULT = null; public CamelJmsibmmqsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelJmsibmmqsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_NAME_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_PORT_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_PORT_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SERVER_PORT_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_TYPE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_TYPE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_TYPE_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_DESTINATION_NAME_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_QUEUE_MANAGER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_QUEUE_MANAGER_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_QUEUE_MANAGER_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CHANNEL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CHANNEL_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CHANNEL_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CLIENT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CLIENT_ID_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_CLIENT_ID_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_USERNAME_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SSL_CIPHER_SUITE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SSL_CIPHER_SUITE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_JMSIBMMQSOURCE_KAMELET_SSL_CIPHER_SUITE_DOC); return conf; } }
8,530
0
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-queue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-queue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/azurestoragequeuesink/CamelAzurestoragequeuesinkSinkTask.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 org.apache.camel.kafkaconnector.azurestoragequeuesink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAzurestoragequeuesinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelAzurestoragequeuesinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:azure-storage-queue-sink"; } }
8,531
0
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-queue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-queue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/azurestoragequeuesink/CamelAzurestoragequeuesinkSinkConnector.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 org.apache.camel.kafkaconnector.azurestoragequeuesink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAzurestoragequeuesinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelAzurestoragequeuesinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelAzurestoragequeuesinkSinkTask.class; } }
8,532
0
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-queue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-queue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/azurestoragequeuesink/CamelAzurestoragequeuesinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.azurestoragequeuesink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAzurestoragequeuesinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCOUNT_NAME_CONF = "camel.kamelet.azure-storage-queue-sink.accountName"; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCOUNT_NAME_DOC = "The Azure Storage Queue account name."; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCOUNT_NAME_DEFAULT = null; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_QUEUE_NAME_CONF = "camel.kamelet.azure-storage-queue-sink.queueName"; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_QUEUE_NAME_DOC = "The Azure Storage Queue container name."; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_QUEUE_NAME_DEFAULT = null; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCESS_KEY_CONF = "camel.kamelet.azure-storage-queue-sink.accessKey"; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCESS_KEY_DOC = "The Azure Storage Queue access key."; public static final String CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCESS_KEY_DEFAULT = null; public CamelAzurestoragequeuesinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelAzurestoragequeuesinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCOUNT_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCOUNT_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCOUNT_NAME_DOC); conf.define(CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_QUEUE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_QUEUE_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_QUEUE_NAME_DOC); conf.define(CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCESS_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCESS_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AZURESTORAGEQUEUESINK_KAMELET_ACCESS_KEY_DOC); return conf; } }
8,533
0
Create_ds/camel-kafka-connector/connectors/camel-bitcoin-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-bitcoin-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/bitcoinsource/CamelBitcoinsourceSourceTask.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 org.apache.camel.kafkaconnector.bitcoinsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelBitcoinsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelBitcoinsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:bitcoin-source"; } }
8,534
0
Create_ds/camel-kafka-connector/connectors/camel-bitcoin-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-bitcoin-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/bitcoinsource/CamelBitcoinsourceSourceConnector.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 org.apache.camel.kafkaconnector.bitcoinsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelBitcoinsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelBitcoinsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelBitcoinsourceSourceTask.class; } }
8,535
0
Create_ds/camel-kafka-connector/connectors/camel-bitcoin-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-bitcoin-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/bitcoinsource/CamelBitcoinsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.bitcoinsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelBitcoinsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_BITCOINSOURCE_KAMELET_PERIOD_CONF = "camel.kamelet.bitcoin-source.period"; public static final String CAMEL_SOURCE_BITCOINSOURCE_KAMELET_PERIOD_DOC = "The interval between updates in milliseconds"; public static final Integer CAMEL_SOURCE_BITCOINSOURCE_KAMELET_PERIOD_DEFAULT = 10000; public CamelBitcoinsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelBitcoinsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_BITCOINSOURCE_KAMELET_PERIOD_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_BITCOINSOURCE_KAMELET_PERIOD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_BITCOINSOURCE_KAMELET_PERIOD_DOC); return conf; } }
8,536
0
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-comment-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-comment-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/githubpullrequestcommentsource/CamelGithubpullrequestcommentsourceSourceTask.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 org.apache.camel.kafkaconnector.githubpullrequestcommentsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGithubpullrequestcommentsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelGithubpullrequestcommentsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:github-pullrequest-comment-source"; } }
8,537
0
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-comment-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-comment-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/githubpullrequestcommentsource/CamelGithubpullrequestcommentsourceSourceConnector.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 org.apache.camel.kafkaconnector.githubpullrequestcommentsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGithubpullrequestcommentsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelGithubpullrequestcommentsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGithubpullrequestcommentsourceSourceTask.class; } }
8,538
0
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-comment-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-comment-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/githubpullrequestcommentsource/CamelGithubpullrequestcommentsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.githubpullrequestcommentsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGithubpullrequestcommentsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_NAME_CONF = "camel.kamelet.github-pullrequest-comment-source.repoName"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_NAME_DOC = "The GitHub Repository name"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_OWNER_CONF = "camel.kamelet.github-pullrequest-comment-source.repoOwner"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_OWNER_DOC = "The repository owner"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_OWNER_DEFAULT = null; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_OAUTH_TOKEN_CONF = "camel.kamelet.github-pullrequest-comment-source.oauthToken"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_OAUTH_TOKEN_DOC = "OAuth token"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_OAUTH_TOKEN_DEFAULT = null; public CamelGithubpullrequestcommentsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGithubpullrequestcommentsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_NAME_DOC); conf.define(CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_OWNER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_OWNER_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_REPO_OWNER_DOC); conf.define(CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_OAUTH_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_OAUTH_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GITHUBPULLREQUESTCOMMENTSOURCE_KAMELET_OAUTH_TOKEN_DOC); return conf; } }
8,539
0
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/githubpullrequestsource/CamelGithubpullrequestsourceSourceConnector.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 org.apache.camel.kafkaconnector.githubpullrequestsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGithubpullrequestsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelGithubpullrequestsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGithubpullrequestsourceSourceTask.class; } }
8,540
0
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/githubpullrequestsource/CamelGithubpullrequestsourceSourceTask.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 org.apache.camel.kafkaconnector.githubpullrequestsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGithubpullrequestsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelGithubpullrequestsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:github-pullrequest-source"; } }
8,541
0
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-github-pullrequest-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/githubpullrequestsource/CamelGithubpullrequestsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.githubpullrequestsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGithubpullrequestsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_NAME_CONF = "camel.kamelet.github-pullrequest-source.repoName"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_NAME_DOC = "The GitHub Repository name"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_OWNER_CONF = "camel.kamelet.github-pullrequest-source.repoOwner"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_OWNER_DOC = "The repository owner"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_OWNER_DEFAULT = null; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_OAUTH_TOKEN_CONF = "camel.kamelet.github-pullrequest-source.oauthToken"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_OAUTH_TOKEN_DOC = "OAuth token"; public static final String CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_OAUTH_TOKEN_DEFAULT = null; public CamelGithubpullrequestsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGithubpullrequestsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_NAME_DOC); conf.define(CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_OWNER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_OWNER_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_REPO_OWNER_DOC); conf.define(CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_OAUTH_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_OAUTH_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GITHUBPULLREQUESTSOURCE_KAMELET_OAUTH_TOKEN_DOC); return conf; } }
8,542
0
Create_ds/camel-kafka-connector/connectors/camel-jira-add-issue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-jira-add-issue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/jiraaddissuesink/CamelJiraaddissuesinkSinkTask.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 org.apache.camel.kafkaconnector.jiraaddissuesink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelJiraaddissuesinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelJiraaddissuesinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:jira-add-issue-sink"; } }
8,543
0
Create_ds/camel-kafka-connector/connectors/camel-jira-add-issue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-jira-add-issue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/jiraaddissuesink/CamelJiraaddissuesinkSinkConnector.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 org.apache.camel.kafkaconnector.jiraaddissuesink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelJiraaddissuesinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelJiraaddissuesinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelJiraaddissuesinkSinkTask.class; } }
8,544
0
Create_ds/camel-kafka-connector/connectors/camel-jira-add-issue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-jira-add-issue-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/jiraaddissuesink/CamelJiraaddissuesinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.jiraaddissuesink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelJiraaddissuesinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_JIRA_URL_CONF = "camel.kamelet.jira-add-issue-sink.jiraUrl"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_JIRA_URL_DOC = "The URL of your instance of Jira Example: http://my_jira.com:8081"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_JIRA_URL_DEFAULT = null; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_USERNAME_CONF = "camel.kamelet.jira-add-issue-sink.username"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_USERNAME_DOC = "The username to access Jira"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PASSWORD_CONF = "camel.kamelet.jira-add-issue-sink.password"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PASSWORD_DOC = "The password to access Jira"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PERSONALTOKEN_CONF = "camel.kamelet.jira-add-issue-sink.personal-token"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PERSONALTOKEN_DOC = "Personal Token"; public static final String CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PERSONALTOKEN_DEFAULT = null; public CamelJiraaddissuesinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelJiraaddissuesinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_JIRAADDISSUESINK_KAMELET_JIRA_URL_CONF, ConfigDef.Type.STRING, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_JIRA_URL_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_JIRA_URL_DOC); conf.define(CAMEL_SINK_JIRAADDISSUESINK_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_USERNAME_DOC); conf.define(CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PERSONALTOKEN_CONF, ConfigDef.Type.STRING, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PERSONALTOKEN_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_JIRAADDISSUESINK_KAMELET_PERSONALTOKEN_DOC); return conf; } }
8,545
0
Create_ds/camel-kafka-connector/connectors/camel-rest-openapi-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-rest-openapi-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/restopenapisink/CamelRestopenapisinkSinkConnector.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 org.apache.camel.kafkaconnector.restopenapisink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelRestopenapisinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelRestopenapisinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelRestopenapisinkSinkTask.class; } }
8,546
0
Create_ds/camel-kafka-connector/connectors/camel-rest-openapi-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-rest-openapi-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/restopenapisink/CamelRestopenapisinkSinkTask.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 org.apache.camel.kafkaconnector.restopenapisink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelRestopenapisinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelRestopenapisinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:rest-openapi-sink"; } }
8,547
0
Create_ds/camel-kafka-connector/connectors/camel-rest-openapi-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-rest-openapi-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/restopenapisink/CamelRestopenapisinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.restopenapisink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelRestopenapisinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_RESTOPENAPISINK_KAMELET_SPECIFICATION_CONF = "camel.kamelet.rest-openapi-sink.specification"; public static final String CAMEL_SINK_RESTOPENAPISINK_KAMELET_SPECIFICATION_DOC = "The URI to the OpenApi specification file. Example: https://api.example.com/openapi.json"; public static final String CAMEL_SINK_RESTOPENAPISINK_KAMELET_SPECIFICATION_DEFAULT = null; public static final String CAMEL_SINK_RESTOPENAPISINK_KAMELET_OPERATION_CONF = "camel.kamelet.rest-openapi-sink.operation"; public static final String CAMEL_SINK_RESTOPENAPISINK_KAMELET_OPERATION_DOC = "The operation to call."; public static final String CAMEL_SINK_RESTOPENAPISINK_KAMELET_OPERATION_DEFAULT = null; public CamelRestopenapisinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelRestopenapisinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_RESTOPENAPISINK_KAMELET_SPECIFICATION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_RESTOPENAPISINK_KAMELET_SPECIFICATION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_RESTOPENAPISINK_KAMELET_SPECIFICATION_DOC); conf.define(CAMEL_SINK_RESTOPENAPISINK_KAMELET_OPERATION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_RESTOPENAPISINK_KAMELET_OPERATION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_RESTOPENAPISINK_KAMELET_OPERATION_DOC); return conf; } }
8,548
0
Create_ds/camel-kafka-connector/connectors/camel-aws-eventbridge-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-eventbridge-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awseventbridgesink/CamelAwseventbridgesinkSinkConnector.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 org.apache.camel.kafkaconnector.awseventbridgesink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwseventbridgesinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelAwseventbridgesinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelAwseventbridgesinkSinkTask.class; } }
8,549
0
Create_ds/camel-kafka-connector/connectors/camel-aws-eventbridge-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-eventbridge-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awseventbridgesink/CamelAwseventbridgesinkSinkTask.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 org.apache.camel.kafkaconnector.awseventbridgesink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwseventbridgesinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelAwseventbridgesinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:aws-eventbridge-sink"; } }
8,550
0
Create_ds/camel-kafka-connector/connectors/camel-aws-eventbridge-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-eventbridge-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awseventbridgesink/CamelAwseventbridgesinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.awseventbridgesink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwseventbridgesinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_EVENTBUS_NAME_OR_ARN_CONF = "camel.kamelet.aws-eventbridge-sink.eventbusNameOrArn"; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_EVENTBUS_NAME_OR_ARN_DOC = "The Eventbridge Eventbus name or Amazon Resource Name (ARN)."; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_EVENTBUS_NAME_OR_ARN_DEFAULT = null; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_ACCESS_KEY_CONF = "camel.kamelet.aws-eventbridge-sink.accessKey"; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_ACCESS_KEY_DOC = "The access key obtained from AWS."; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_ACCESS_KEY_DEFAULT = null; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_SECRET_KEY_CONF = "camel.kamelet.aws-eventbridge-sink.secretKey"; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_SECRET_KEY_DOC = "The secret key obtained from AWS."; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_SECRET_KEY_DEFAULT = null; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_REGION_CONF = "camel.kamelet.aws-eventbridge-sink.region"; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_REGION_DOC = "The AWS region to access."; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_REGION_DEFAULT = null; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_CONF = "camel.kamelet.aws-eventbridge-sink.useDefaultCredentialsProvider"; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DOC = "If true, the Eventbridge client loads credentials through a default credentials provider. If false, it uses the basic authentication method (access key and secret key)."; public static final Boolean CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DEFAULT = false; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_URI_ENDPOINT_OVERRIDE_CONF = "camel.kamelet.aws-eventbridge-sink.uriEndpointOverride"; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_URI_ENDPOINT_OVERRIDE_DOC = "The overriding endpoint URI. To use this option, you must also select the `overrideEndpoint` option."; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_URI_ENDPOINT_OVERRIDE_DEFAULT = null; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_OVERRIDE_ENDPOINT_CONF = "camel.kamelet.aws-eventbridge-sink.overrideEndpoint"; public static final String CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_OVERRIDE_ENDPOINT_DOC = "Select this option to override the endpoint URI. To use this option, you must also provide a URI for the `uriEndpointOverride` option."; public static final Boolean CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_OVERRIDE_ENDPOINT_DEFAULT = false; public CamelAwseventbridgesinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelAwseventbridgesinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_EVENTBUS_NAME_OR_ARN_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_EVENTBUS_NAME_OR_ARN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_EVENTBUS_NAME_OR_ARN_DOC); conf.define(CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_ACCESS_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_ACCESS_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_ACCESS_KEY_DOC); conf.define(CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_SECRET_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_SECRET_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_SECRET_KEY_DOC); conf.define(CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_REGION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_REGION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_REGION_DOC); conf.define(CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DOC); conf.define(CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_URI_ENDPOINT_OVERRIDE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_URI_ENDPOINT_OVERRIDE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_URI_ENDPOINT_OVERRIDE_DOC); conf.define(CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_OVERRIDE_ENDPOINT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_OVERRIDE_ENDPOINT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSEVENTBRIDGESINK_KAMELET_OVERRIDE_ENDPOINT_DOC); return conf; } }
8,551
0
Create_ds/camel-kafka-connector/connectors/camel-aws-ddb-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-ddb-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awsddbsink/CamelAwsddbsinkSinkTask.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 org.apache.camel.kafkaconnector.awsddbsink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwsddbsinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelAwsddbsinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:aws-ddb-sink"; } }
8,552
0
Create_ds/camel-kafka-connector/connectors/camel-aws-ddb-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-ddb-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awsddbsink/CamelAwsddbsinkSinkConnector.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 org.apache.camel.kafkaconnector.awsddbsink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwsddbsinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelAwsddbsinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelAwsddbsinkSinkTask.class; } }
8,553
0
Create_ds/camel-kafka-connector/connectors/camel-aws-ddb-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-ddb-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awsddbsink/CamelAwsddbsinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.awsddbsink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwsddbsinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_TABLE_CONF = "camel.kamelet.aws-ddb-sink.table"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_TABLE_DOC = "The name of the DynamoDB table."; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_TABLE_DEFAULT = null; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_ACCESS_KEY_CONF = "camel.kamelet.aws-ddb-sink.accessKey"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_ACCESS_KEY_DOC = "The access key obtained from AWS."; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_ACCESS_KEY_DEFAULT = null; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_SECRET_KEY_CONF = "camel.kamelet.aws-ddb-sink.secretKey"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_SECRET_KEY_DOC = "The secret key obtained from AWS."; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_SECRET_KEY_DEFAULT = null; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_REGION_CONF = "camel.kamelet.aws-ddb-sink.region"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_REGION_DOC = "The AWS region to access."; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_REGION_DEFAULT = null; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_OPERATION_CONF = "camel.kamelet.aws-ddb-sink.operation"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_OPERATION_DOC = "The operation to perform. Example: PutItem"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_OPERATION_DEFAULT = "PutItem"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_CONF = "camel.kamelet.aws-ddb-sink.useDefaultCredentialsProvider"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DOC = "If true, the DynamoDB client loads credentials through a default credentials provider. If false, it uses the basic authentication method (access key and secret key)."; public static final Boolean CAMEL_SINK_AWSDDBSINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DEFAULT = false; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_URI_ENDPOINT_OVERRIDE_CONF = "camel.kamelet.aws-ddb-sink.uriEndpointOverride"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_URI_ENDPOINT_OVERRIDE_DOC = "The overriding endpoint URI. To use this option, you must also select the `overrideEndpoint` option."; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_URI_ENDPOINT_OVERRIDE_DEFAULT = null; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_OVERRIDE_ENDPOINT_CONF = "camel.kamelet.aws-ddb-sink.overrideEndpoint"; public static final String CAMEL_SINK_AWSDDBSINK_KAMELET_OVERRIDE_ENDPOINT_DOC = "Select this option to override the endpoint URI. To use this option, you must also provide a URI for the `uriEndpointOverride` option."; public static final Boolean CAMEL_SINK_AWSDDBSINK_KAMELET_OVERRIDE_ENDPOINT_DEFAULT = false; public CamelAwsddbsinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelAwsddbsinkSinkConnectorConfig(Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_TABLE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSDDBSINK_KAMELET_TABLE_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AWSDDBSINK_KAMELET_TABLE_DOC); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_ACCESS_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_AWSDDBSINK_KAMELET_ACCESS_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSDDBSINK_KAMELET_ACCESS_KEY_DOC); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_SECRET_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_AWSDDBSINK_KAMELET_SECRET_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSDDBSINK_KAMELET_SECRET_KEY_DOC); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_REGION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSDDBSINK_KAMELET_REGION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AWSDDBSINK_KAMELET_REGION_DOC); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_OPERATION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSDDBSINK_KAMELET_OPERATION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSDDBSINK_KAMELET_OPERATION_DOC); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_AWSDDBSINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSDDBSINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DOC); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_URI_ENDPOINT_OVERRIDE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSDDBSINK_KAMELET_URI_ENDPOINT_OVERRIDE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSDDBSINK_KAMELET_URI_ENDPOINT_OVERRIDE_DOC); conf.define(CAMEL_SINK_AWSDDBSINK_KAMELET_OVERRIDE_ENDPOINT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_AWSDDBSINK_KAMELET_OVERRIDE_ENDPOINT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSDDBSINK_KAMELET_OVERRIDE_ENDPOINT_DOC); return conf; } }
8,554
0
Create_ds/camel-kafka-connector/connectors/camel-aws-s3-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-s3-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awss3sink/CamelAwss3sinkSinkConnector.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 org.apache.camel.kafkaconnector.awss3sink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwss3sinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelAwss3sinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelAwss3sinkSinkTask.class; } }
8,555
0
Create_ds/camel-kafka-connector/connectors/camel-aws-s3-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-s3-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awss3sink/CamelAwss3sinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.awss3sink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwss3sinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_AWSS3SINK_KAMELET_BUCKET_NAME_OR_ARN_CONF = "camel.kamelet.aws-s3-sink.bucketNameOrArn"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_BUCKET_NAME_OR_ARN_DOC = "The S3 Bucket name or Amazon Resource Name (ARN)."; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_BUCKET_NAME_OR_ARN_DEFAULT = null; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_ACCESS_KEY_CONF = "camel.kamelet.aws-s3-sink.accessKey"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_ACCESS_KEY_DOC = "The access key obtained from AWS."; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_ACCESS_KEY_DEFAULT = null; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_SECRET_KEY_CONF = "camel.kamelet.aws-s3-sink.secretKey"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_SECRET_KEY_DOC = "The secret key obtained from AWS."; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_SECRET_KEY_DEFAULT = null; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_REGION_CONF = "camel.kamelet.aws-s3-sink.region"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_REGION_DOC = "The AWS region to access."; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_REGION_DEFAULT = null; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_AUTO_CREATE_BUCKET_CONF = "camel.kamelet.aws-s3-sink.autoCreateBucket"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_AUTO_CREATE_BUCKET_DOC = "Specifies to automatically create the S3 bucket."; public static final Boolean CAMEL_SINK_AWSS3SINK_KAMELET_AUTO_CREATE_BUCKET_DEFAULT = false; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_CONF = "camel.kamelet.aws-s3-sink.useDefaultCredentialsProvider"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DOC = "If true, the S3 client loads credentials through a default credentials provider. If false, it uses the basic authentication method (access key and secret key)."; public static final Boolean CAMEL_SINK_AWSS3SINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DEFAULT = false; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_URI_ENDPOINT_OVERRIDE_CONF = "camel.kamelet.aws-s3-sink.uriEndpointOverride"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_URI_ENDPOINT_OVERRIDE_DOC = "The overriding endpoint URI. To use this option, you must also select the `overrideEndpoint` option."; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_URI_ENDPOINT_OVERRIDE_DEFAULT = null; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_OVERRIDE_ENDPOINT_CONF = "camel.kamelet.aws-s3-sink.overrideEndpoint"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_OVERRIDE_ENDPOINT_DOC = "Select this option to override the endpoint URI. To use this option, you must also provide a URI for the `uriEndpointOverride` option."; public static final Boolean CAMEL_SINK_AWSS3SINK_KAMELET_OVERRIDE_ENDPOINT_DEFAULT = false; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_KEY_NAME_CONF = "camel.kamelet.aws-s3-sink.keyName"; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_KEY_NAME_DOC = "The key name for saving an element in the bucket."; public static final String CAMEL_SINK_AWSS3SINK_KAMELET_KEY_NAME_DEFAULT = null; public CamelAwss3sinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelAwss3sinkSinkConnectorConfig(Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_BUCKET_NAME_OR_ARN_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSS3SINK_KAMELET_BUCKET_NAME_OR_ARN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AWSS3SINK_KAMELET_BUCKET_NAME_OR_ARN_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_ACCESS_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_AWSS3SINK_KAMELET_ACCESS_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSS3SINK_KAMELET_ACCESS_KEY_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_SECRET_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SINK_AWSS3SINK_KAMELET_SECRET_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSS3SINK_KAMELET_SECRET_KEY_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_REGION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSS3SINK_KAMELET_REGION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_AWSS3SINK_KAMELET_REGION_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_AUTO_CREATE_BUCKET_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_AWSS3SINK_KAMELET_AUTO_CREATE_BUCKET_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSS3SINK_KAMELET_AUTO_CREATE_BUCKET_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_AWSS3SINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSS3SINK_KAMELET_USE_DEFAULT_CREDENTIALS_PROVIDER_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_URI_ENDPOINT_OVERRIDE_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSS3SINK_KAMELET_URI_ENDPOINT_OVERRIDE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSS3SINK_KAMELET_URI_ENDPOINT_OVERRIDE_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_OVERRIDE_ENDPOINT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_AWSS3SINK_KAMELET_OVERRIDE_ENDPOINT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSS3SINK_KAMELET_OVERRIDE_ENDPOINT_DOC); conf.define(CAMEL_SINK_AWSS3SINK_KAMELET_KEY_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_AWSS3SINK_KAMELET_KEY_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_AWSS3SINK_KAMELET_KEY_NAME_DOC); return conf; } }
8,556
0
Create_ds/camel-kafka-connector/connectors/camel-aws-s3-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-aws-s3-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/awss3sink/CamelAwss3sinkSinkTask.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 org.apache.camel.kafkaconnector.awss3sink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAwss3sinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelAwss3sinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:aws-s3-sink"; } }
8,557
0
Create_ds/camel-kafka-connector/connectors/camel-google-storage-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-storage-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlestoragesink/CamelGooglestoragesinkSinkConnector.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 org.apache.camel.kafkaconnector.googlestoragesink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglestoragesinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelGooglestoragesinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGooglestoragesinkSinkTask.class; } }
8,558
0
Create_ds/camel-kafka-connector/connectors/camel-google-storage-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-storage-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlestoragesink/CamelGooglestoragesinkSinkTask.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 org.apache.camel.kafkaconnector.googlestoragesink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglestoragesinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelGooglestoragesinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:google-storage-sink"; } }
8,559
0
Create_ds/camel-kafka-connector/connectors/camel-google-storage-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-storage-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlestoragesink/CamelGooglestoragesinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.googlestoragesink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglestoragesinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_BUCKET_NAME_OR_ARN_CONF = "camel.kamelet.google-storage-sink.bucketNameOrArn"; public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_BUCKET_NAME_OR_ARN_DOC = "The Google Cloud Storage bucket name or Bucket Amazon Resource Name (ARN)."; public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_BUCKET_NAME_OR_ARN_DEFAULT = null; public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_SERVICE_ACCOUNT_KEY_CONF = "camel.kamelet.google-storage-sink.serviceAccountKey"; public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_SERVICE_ACCOUNT_KEY_DOC = "The service account key to use as credentials for Google Cloud Storage access. You must encode this value in base64."; public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT = null; public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_AUTO_CREATE_BUCKET_CONF = "camel.kamelet.google-storage-sink.autoCreateBucket"; public static final String CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_AUTO_CREATE_BUCKET_DOC = "Specifies to automatically create the Google Cloud Storage bucket."; public static final Boolean CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_AUTO_CREATE_BUCKET_DEFAULT = false; public CamelGooglestoragesinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGooglestoragesinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_BUCKET_NAME_OR_ARN_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_BUCKET_NAME_OR_ARN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_BUCKET_NAME_OR_ARN_DOC); conf.define(CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_SERVICE_ACCOUNT_KEY_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_SERVICE_ACCOUNT_KEY_DOC); conf.define(CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_AUTO_CREATE_BUCKET_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_AUTO_CREATE_BUCKET_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_GOOGLESTORAGESINK_KAMELET_AUTO_CREATE_BUCKET_DOC); return conf; } }
8,560
0
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlepubsubsink/CamelGooglepubsubsinkSinkConnector.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 org.apache.camel.kafkaconnector.googlepubsubsink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglepubsubsinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelGooglepubsubsinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGooglepubsubsinkSinkTask.class; } }
8,561
0
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlepubsubsink/CamelGooglepubsubsinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.googlepubsubsink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglepubsubsinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_PROJECT_ID_CONF = "camel.kamelet.google-pubsub-sink.projectId"; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_PROJECT_ID_DOC = "The Google Cloud Pub/Sub Project ID."; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_PROJECT_ID_DEFAULT = null; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_DESTINATION_NAME_CONF = "camel.kamelet.google-pubsub-sink.destinationName"; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_DESTINATION_NAME_DOC = "The destination name."; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_DESTINATION_NAME_DEFAULT = null; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_SERVICE_ACCOUNT_KEY_CONF = "camel.kamelet.google-pubsub-sink.serviceAccountKey"; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_SERVICE_ACCOUNT_KEY_DOC = "The service account key to use as credentials for the Pub/Sub publisher/subscriber. You must encode this value in base64."; public static final String CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT = null; public CamelGooglepubsubsinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGooglepubsubsinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_PROJECT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_PROJECT_ID_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_PROJECT_ID_DOC); conf.define(CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_DESTINATION_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_DESTINATION_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_DESTINATION_NAME_DOC); conf.define(CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_SERVICE_ACCOUNT_KEY_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SINK_GOOGLEPUBSUBSINK_KAMELET_SERVICE_ACCOUNT_KEY_DOC); return conf; } }
8,562
0
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-pubsub-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlepubsubsink/CamelGooglepubsubsinkSinkTask.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 org.apache.camel.kafkaconnector.googlepubsubsink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglepubsubsinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelGooglepubsubsinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:google-pubsub-sink"; } }
8,563
0
Create_ds/camel-kafka-connector/connectors/camel-twitter-directmessage-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-twitter-directmessage-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/twitterdirectmessagesource/CamelTwitterdirectmessagesourceSourceTask.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 org.apache.camel.kafkaconnector.twitterdirectmessagesource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelTwitterdirectmessagesourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelTwitterdirectmessagesourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:twitter-directmessage-source"; } }
8,564
0
Create_ds/camel-kafka-connector/connectors/camel-twitter-directmessage-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-twitter-directmessage-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/twitterdirectmessagesource/CamelTwitterdirectmessagesourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.twitterdirectmessagesource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelTwitterdirectmessagesourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_USER_CONF = "camel.kamelet.twitter-directmessage-source.user"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_USER_DOC = "The user we want to read the direct messages Example: ApacheCamel"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_USER_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_CONF = "camel.kamelet.twitter-directmessage-source.apiKey"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_DOC = "The API Key from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_SECRET_CONF = "camel.kamelet.twitter-directmessage-source.apiKeySecret"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_SECRET_DOC = "The API Key Secret from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_SECRET_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_CONF = "camel.kamelet.twitter-directmessage-source.accessToken"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_DOC = "The Access Token from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_SECRET_CONF = "camel.kamelet.twitter-directmessage-source.accessTokenSecret"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DOC = "The Access Token Secret from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DEFAULT = null; public CamelTwitterdirectmessagesourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelTwitterdirectmessagesourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_USER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_USER_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_USER_DOC); conf.define(CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_DOC); conf.define(CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_SECRET_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_SECRET_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_API_KEY_SECRET_DOC); conf.define(CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_DOC); conf.define(CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_SECRET_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERDIRECTMESSAGESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DOC); return conf; } }
8,565
0
Create_ds/camel-kafka-connector/connectors/camel-twitter-directmessage-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-twitter-directmessage-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/twitterdirectmessagesource/CamelTwitterdirectmessagesourceSourceConnector.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 org.apache.camel.kafkaconnector.twitterdirectmessagesource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelTwitterdirectmessagesourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelTwitterdirectmessagesourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelTwitterdirectmessagesourceSourceTask.class; } }
8,566
0
Create_ds/camel-kafka-connector/connectors/camel-twitter-timeline-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-twitter-timeline-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/twittertimelinesource/CamelTwittertimelinesourceSourceTask.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 org.apache.camel.kafkaconnector.twittertimelinesource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelTwittertimelinesourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelTwittertimelinesourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:twitter-timeline-source"; } }
8,567
0
Create_ds/camel-kafka-connector/connectors/camel-twitter-timeline-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-twitter-timeline-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/twittertimelinesource/CamelTwittertimelinesourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.twittertimelinesource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelTwittertimelinesourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_USER_CONF = "camel.kamelet.twitter-timeline-source.user"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_USER_DOC = "The user we want to read the timeline Example: ApacheCamel"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_USER_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_CONF = "camel.kamelet.twitter-timeline-source.apiKey"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_DOC = "The API Key from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_SECRET_CONF = "camel.kamelet.twitter-timeline-source.apiKeySecret"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_SECRET_DOC = "The API Key Secret from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_SECRET_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_CONF = "camel.kamelet.twitter-timeline-source.accessToken"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_DOC = "The Access Token from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_DEFAULT = null; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_SECRET_CONF = "camel.kamelet.twitter-timeline-source.accessTokenSecret"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DOC = "The Access Token Secret from the Twitter application in the developer portal"; public static final String CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DEFAULT = null; public CamelTwittertimelinesourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelTwittertimelinesourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_USER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_USER_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_USER_DOC); conf.define(CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_DOC); conf.define(CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_SECRET_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_SECRET_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_API_KEY_SECRET_DOC); conf.define(CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_DOC); conf.define(CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_SECRET_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_TWITTERTIMELINESOURCE_KAMELET_ACCESS_TOKEN_SECRET_DOC); return conf; } }
8,568
0
Create_ds/camel-kafka-connector/connectors/camel-twitter-timeline-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-twitter-timeline-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/twittertimelinesource/CamelTwittertimelinesourceSourceConnector.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 org.apache.camel.kafkaconnector.twittertimelinesource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelTwittertimelinesourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelTwittertimelinesourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelTwittertimelinesourceSourceTask.class; } }
8,569
0
Create_ds/camel-kafka-connector/connectors/camel-google-storage-cdc-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-storage-cdc-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlestoragecdcsource/CamelGooglestoragecdcsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.googlestoragecdcsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglestoragecdcsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_PROJECT_ID_CONF = "camel.kamelet.google-storage-cdc-source.projectId"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_PROJECT_ID_DOC = "The Google Cloud Pub/Sub Project ID."; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_PROJECT_ID_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SUBSCRIPTION_NAME_CONF = "camel.kamelet.google-storage-cdc-source.subscriptionName"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SUBSCRIPTION_NAME_DOC = "The subscription name."; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SUBSCRIPTION_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_CONF = "camel.kamelet.google-storage-cdc-source.serviceAccountKey"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DOC = "The service account key to use as credentials for the Pub/Sub publisher/subscriber. You must encode this value in base64."; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SYNCHRONOUS_PULL_CONF = "camel.kamelet.google-storage-cdc-source.synchronousPull"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SYNCHRONOUS_PULL_DOC = "Specifies to synchronously pull batches of messages."; public static final Boolean CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SYNCHRONOUS_PULL_DEFAULT = false; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_CONF = "camel.kamelet.google-storage-cdc-source.maxMessagesPerPoll"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DOC = "The maximum number of messages to receive from the server in a single API call."; public static final Integer CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DEFAULT = 1; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_CONCURRENT_CONSUMERS_CONF = "camel.kamelet.google-storage-cdc-source.concurrentConsumers"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_CONCURRENT_CONSUMERS_DOC = "The number of parallel streams to consume from the subscription."; public static final Integer CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_CONCURRENT_CONSUMERS_DEFAULT = 1; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_BUCKET_NAME_OR_ARN_CONF = "camel.kamelet.google-storage-cdc-source.bucketNameOrArn"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_BUCKET_NAME_OR_ARN_DOC = "The Google Cloud Storage bucket name or Bucket Amazon Resource Name (ARN)."; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_BUCKET_NAME_OR_ARN_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_GET_OBJECT_CONF = "camel.kamelet.google-storage-cdc-source.getObject"; public static final String CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_GET_OBJECT_DOC = "If getObject is enabled, then the file created in the Bucket will be get and returned as body, if not only the event will be returned as body."; public static final Boolean CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_GET_OBJECT_DEFAULT = false; public CamelGooglestoragecdcsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGooglestoragecdcsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_PROJECT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_PROJECT_ID_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_PROJECT_ID_DOC); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SUBSCRIPTION_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SUBSCRIPTION_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SUBSCRIPTION_NAME_DOC); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SERVICE_ACCOUNT_KEY_DOC); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SYNCHRONOUS_PULL_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SYNCHRONOUS_PULL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_SYNCHRONOUS_PULL_DOC); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_MAX_MESSAGES_PER_POLL_DOC); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_CONCURRENT_CONSUMERS_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_CONCURRENT_CONSUMERS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_CONCURRENT_CONSUMERS_DOC); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_BUCKET_NAME_OR_ARN_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_BUCKET_NAME_OR_ARN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_BUCKET_NAME_OR_ARN_DOC); conf.define(CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_GET_OBJECT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_GET_OBJECT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESTORAGECDCSOURCE_KAMELET_GET_OBJECT_DOC); return conf; } }
8,570
0
Create_ds/camel-kafka-connector/connectors/camel-google-storage-cdc-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-storage-cdc-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlestoragecdcsource/CamelGooglestoragecdcsourceSourceTask.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 org.apache.camel.kafkaconnector.googlestoragecdcsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglestoragecdcsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelGooglestoragecdcsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:google-storage-cdc-source"; } }
8,571
0
Create_ds/camel-kafka-connector/connectors/camel-google-storage-cdc-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-storage-cdc-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlestoragecdcsource/CamelGooglestoragecdcsourceSourceConnector.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 org.apache.camel.kafkaconnector.googlestoragecdcsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglestoragecdcsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelGooglestoragecdcsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGooglestoragecdcsourceSourceTask.class; } }
8,572
0
Create_ds/camel-kafka-connector/connectors/camel-google-sheets-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-sheets-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlesheetssource/CamelGooglesheetssourceSourceTask.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 org.apache.camel.kafkaconnector.googlesheetssource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglesheetssourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelGooglesheetssourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:google-sheets-source"; } }
8,573
0
Create_ds/camel-kafka-connector/connectors/camel-google-sheets-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-sheets-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlesheetssource/CamelGooglesheetssourceSourceConnector.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 org.apache.camel.kafkaconnector.googlesheetssource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglesheetssourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelGooglesheetssourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGooglesheetssourceSourceTask.class; } }
8,574
0
Create_ds/camel-kafka-connector/connectors/camel-google-sheets-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-sheets-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlesheetssource/CamelGooglesheetssourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.googlesheetssource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglesheetssourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPREADSHEET_ID_CONF = "camel.kamelet.google-sheets-source.spreadsheetId"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPREADSHEET_ID_DOC = "The Spreadsheet ID to be used as events source"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPREADSHEET_ID_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_ID_CONF = "camel.kamelet.google-sheets-source.clientId"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_ID_DOC = "Client ID of the sheets application"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_ID_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_SECRET_CONF = "camel.kamelet.google-sheets-source.clientSecret"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_SECRET_DOC = "Client Secret of the sheets application"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_SECRET_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_ACCESS_TOKEN_CONF = "camel.kamelet.google-sheets-source.accessToken"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_ACCESS_TOKEN_DOC = "OAuth 2 access token for google sheets application. This typically expires after an hour so refreshToken is recommended for long term usage."; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_ACCESS_TOKEN_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REFRESH_TOKEN_CONF = "camel.kamelet.google-sheets-source.refreshToken"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REFRESH_TOKEN_DOC = "OAuth 2 refresh token for google sheets application. Using this, the Google Calendar component can obtain a new accessToken whenever the current one expires - a necessity if the application is long-lived."; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REFRESH_TOKEN_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_DELAY_CONF = "camel.kamelet.google-sheets-source.delay"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_DELAY_DOC = "The number of milliseconds before the next poll"; public static final Integer CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_DELAY_DEFAULT = 500; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REPEAT_COUNT_CONF = "camel.kamelet.google-sheets-source.repeatCount"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REPEAT_COUNT_DOC = "Specifies a maximum limit of number of fires"; public static final Integer CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REPEAT_COUNT_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_APPLICATION_NAME_CONF = "camel.kamelet.google-sheets-source.applicationName"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_APPLICATION_NAME_DOC = "Google Sheets application name"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_APPLICATION_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPLIT_RESULTS_CONF = "camel.kamelet.google-sheets-source.splitResults"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPLIT_RESULTS_DOC = "True if value range result should be split into rows or columns to process each of them individually."; public static final Boolean CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPLIT_RESULTS_DEFAULT = true; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_RANGE_CONF = "camel.kamelet.google-sheets-source.range"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_RANGE_DOC = "the range of rows and columns in a sheet to get data from. Example: A1:B3"; public static final String CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_RANGE_DEFAULT = null; public CamelGooglesheetssourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGooglesheetssourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPREADSHEET_ID_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPREADSHEET_ID_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPREADSHEET_ID_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_ID_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_ID_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_ID_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_SECRET_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_SECRET_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_CLIENT_SECRET_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_ACCESS_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_ACCESS_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_ACCESS_TOKEN_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REFRESH_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REFRESH_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REFRESH_TOKEN_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_DELAY_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_DELAY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_DELAY_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REPEAT_COUNT_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REPEAT_COUNT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_REPEAT_COUNT_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_APPLICATION_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_APPLICATION_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_APPLICATION_NAME_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPLIT_RESULTS_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPLIT_RESULTS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_SPLIT_RESULTS_DOC); conf.define(CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_RANGE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_RANGE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GOOGLESHEETSSOURCE_KAMELET_RANGE_DOC); return conf; } }
8,575
0
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-nodes-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-nodes-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/kubernetesnodessource/CamelKubernetesnodessourceSourceConnector.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 org.apache.camel.kafkaconnector.kubernetesnodessource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelKubernetesnodessourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelKubernetesnodessourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelKubernetesnodessourceSourceTask.class; } }
8,576
0
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-nodes-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-nodes-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/kubernetesnodessource/CamelKubernetesnodessourceSourceTask.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 org.apache.camel.kafkaconnector.kubernetesnodessource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelKubernetesnodessourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelKubernetesnodessourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:kubernetes-nodes-source"; } }
8,577
0
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-nodes-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-kubernetes-nodes-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/kubernetesnodessource/CamelKubernetesnodessourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.kubernetesnodessource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelKubernetesnodessourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_TOKEN_CONF = "camel.kamelet.kubernetes-nodes-source.token"; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_TOKEN_DOC = "The Auth Token to connect to Kubernetes Cluster"; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_TOKEN_DEFAULT = null; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_MASTER_URL_CONF = "camel.kamelet.kubernetes-nodes-source.masterUrl"; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_MASTER_URL_DOC = "The Kubernetes Cluster Master URL"; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_MASTER_URL_DEFAULT = null; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_RESOURCE_NAME_CONF = "camel.kamelet.kubernetes-nodes-source.resourceName"; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_RESOURCE_NAME_DOC = "The Resource Name we want to watch"; public static final String CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_RESOURCE_NAME_DEFAULT = null; public CamelKubernetesnodessourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelKubernetesnodessourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_TOKEN_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_TOKEN_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_TOKEN_DOC); conf.define(CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_MASTER_URL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_MASTER_URL_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_MASTER_URL_DOC); conf.define(CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_RESOURCE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_RESOURCE_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_KUBERNETESNODESSOURCE_KAMELET_RESOURCE_NAME_DOC); return conf; } }
8,578
0
Create_ds/camel-kafka-connector/connectors/camel-file-watch-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-file-watch-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/filewatchsource/CamelFilewatchsourceSourceConnector.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 org.apache.camel.kafkaconnector.filewatchsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFilewatchsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelFilewatchsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelFilewatchsourceSourceTask.class; } }
8,579
0
Create_ds/camel-kafka-connector/connectors/camel-file-watch-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-file-watch-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/filewatchsource/CamelFilewatchsourceSourceTask.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 org.apache.camel.kafkaconnector.filewatchsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFilewatchsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelFilewatchsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:file-watch-source"; } }
8,580
0
Create_ds/camel-kafka-connector/connectors/camel-file-watch-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-file-watch-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/filewatchsource/CamelFilewatchsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.filewatchsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFilewatchsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_FILE_PATH_CONF = "camel.kamelet.file-watch-source.filePath"; public static final String CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_FILE_PATH_DOC = "Path of file or folder to watch"; public static final String CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_FILE_PATH_DEFAULT = null; public static final String CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_EVENTS_CONF = "camel.kamelet.file-watch-source.events"; public static final String CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_EVENTS_DOC = "The type of events to consume"; public static final String CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_EVENTS_DEFAULT = "CREATE,MODIFY,DELETE"; public CamelFilewatchsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelFilewatchsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_FILE_PATH_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_FILE_PATH_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_FILE_PATH_DOC); conf.define(CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_EVENTS_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_EVENTS_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FILEWATCHSOURCE_KAMELET_EVENTS_DOC); return conf; } }
8,581
0
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-blob-changefeed-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-blob-changefeed-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/azurestorageblobchangefeedsource/CamelAzurestorageblobchangefeedsourceSourceConnector.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 org.apache.camel.kafkaconnector.azurestorageblobchangefeedsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAzurestorageblobchangefeedsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelAzurestorageblobchangefeedsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelAzurestorageblobchangefeedsourceSourceTask.class; } }
8,582
0
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-blob-changefeed-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-blob-changefeed-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/azurestorageblobchangefeedsource/CamelAzurestorageblobchangefeedsourceSourceTask.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 org.apache.camel.kafkaconnector.azurestorageblobchangefeedsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAzurestorageblobchangefeedsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelAzurestorageblobchangefeedsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:azure-storage-blob-changefeed-source"; } }
8,583
0
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-blob-changefeed-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-azure-storage-blob-changefeed-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/azurestorageblobchangefeedsource/CamelAzurestorageblobchangefeedsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.azurestorageblobchangefeedsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelAzurestorageblobchangefeedsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_PERIOD_CONF = "camel.kamelet.azure-storage-blob-changefeed-source.period"; public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_PERIOD_DOC = "The interval (in milliseconds) between fetches to the Azure Storage change feed."; public static final Integer CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_PERIOD_DEFAULT = 10000; public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCOUNT_NAME_CONF = "camel.kamelet.azure-storage-blob-changefeed-source.accountName"; public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCOUNT_NAME_DOC = "The Azure Storage Blob account name."; public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCOUNT_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCESS_KEY_CONF = "camel.kamelet.azure-storage-blob-changefeed-source.accessKey"; public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCESS_KEY_DOC = "The Azure Storage Blob access Key."; public static final String CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCESS_KEY_DEFAULT = null; public CamelAzurestorageblobchangefeedsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelAzurestorageblobchangefeedsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_PERIOD_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_PERIOD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_PERIOD_DOC); conf.define(CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCOUNT_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCOUNT_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCOUNT_NAME_DOC); conf.define(CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCESS_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCESS_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_AZURESTORAGEBLOBCHANGEFEEDSOURCE_KAMELET_ACCESS_KEY_DOC); return conf; } }
8,584
0
Create_ds/camel-kafka-connector/connectors/camel-ftps-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-ftps-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/ftpssource/CamelFtpssourceSourceConnector.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 org.apache.camel.kafkaconnector.ftpssource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFtpssourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelFtpssourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelFtpssourceSourceTask.class; } }
8,585
0
Create_ds/camel-kafka-connector/connectors/camel-ftps-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-ftps-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/ftpssource/CamelFtpssourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.ftpssource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFtpssourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_HOST_CONF = "camel.kamelet.ftps-source.connectionHost"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_HOST_DOC = "The hostname of the FTPS server."; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_HOST_DEFAULT = null; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_PORT_CONF = "camel.kamelet.ftps-source.connectionPort"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_PORT_DOC = "The port of the FTPS server."; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_PORT_DEFAULT = "21"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_USERNAME_CONF = "camel.kamelet.ftps-source.username"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_USERNAME_DOC = "The username to access the FTPS server."; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.ftps-source.password"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSWORD_DOC = "The password to access the FTPS server."; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_DIRECTORY_NAME_CONF = "camel.kamelet.ftps-source.directoryName"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_DIRECTORY_NAME_DOC = "The starting directory."; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_DIRECTORY_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSIVE_MODE_CONF = "camel.kamelet.ftps-source.passiveMode"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSIVE_MODE_DOC = "Specifies to use passive mode connection."; public static final Boolean CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSIVE_MODE_DEFAULT = false; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_RECURSIVE_CONF = "camel.kamelet.ftps-source.recursive"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_RECURSIVE_DOC = "If a directory, look for files in all sub-directories as well."; public static final Boolean CAMEL_SOURCE_FTPSSOURCE_KAMELET_RECURSIVE_DEFAULT = false; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_IDEMPOTENT_CONF = "camel.kamelet.ftps-source.idempotent"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_IDEMPOTENT_DOC = "Skip already-processed files."; public static final Boolean CAMEL_SOURCE_FTPSSOURCE_KAMELET_IDEMPOTENT_DEFAULT = true; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_BINARY_CONF = "camel.kamelet.ftps-source.binary"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_BINARY_DOC = "Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false)."; public static final Boolean CAMEL_SOURCE_FTPSSOURCE_KAMELET_BINARY_DEFAULT = false; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_AUTO_CREATE_CONF = "camel.kamelet.ftps-source.autoCreate"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_AUTO_CREATE_DOC = "Automatically create starting directory."; public static final Boolean CAMEL_SOURCE_FTPSSOURCE_KAMELET_AUTO_CREATE_DEFAULT = true; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_DELETE_CONF = "camel.kamelet.ftps-source.delete"; public static final String CAMEL_SOURCE_FTPSSOURCE_KAMELET_DELETE_DOC = "If true, the file will be deleted after it is processed successfully."; public static final Boolean CAMEL_SOURCE_FTPSSOURCE_KAMELET_DELETE_DEFAULT = false; public CamelFtpssourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelFtpssourceSourceConnectorConfig(Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_HOST_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_HOST_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_HOST_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_PORT_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_PORT_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FTPSSOURCE_KAMELET_CONNECTION_PORT_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FTPSSOURCE_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FTPSSOURCE_KAMELET_USERNAME_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_DIRECTORY_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FTPSSOURCE_KAMELET_DIRECTORY_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FTPSSOURCE_KAMELET_DIRECTORY_NAME_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSIVE_MODE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSIVE_MODE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FTPSSOURCE_KAMELET_PASSIVE_MODE_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_RECURSIVE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_FTPSSOURCE_KAMELET_RECURSIVE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FTPSSOURCE_KAMELET_RECURSIVE_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_IDEMPOTENT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_FTPSSOURCE_KAMELET_IDEMPOTENT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FTPSSOURCE_KAMELET_IDEMPOTENT_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_BINARY_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_FTPSSOURCE_KAMELET_BINARY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FTPSSOURCE_KAMELET_BINARY_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_AUTO_CREATE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_FTPSSOURCE_KAMELET_AUTO_CREATE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FTPSSOURCE_KAMELET_AUTO_CREATE_DOC); conf.define(CAMEL_SOURCE_FTPSSOURCE_KAMELET_DELETE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_FTPSSOURCE_KAMELET_DELETE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FTPSSOURCE_KAMELET_DELETE_DOC); return conf; } }
8,586
0
Create_ds/camel-kafka-connector/connectors/camel-ftps-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-ftps-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/ftpssource/CamelFtpssourceSourceTask.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 org.apache.camel.kafkaconnector.ftpssource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFtpssourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelFtpssourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:ftps-source"; } }
8,587
0
Create_ds/camel-kafka-connector/connectors/camel-minio-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-minio-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/miniosource/CamelMiniosourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.miniosource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMiniosourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_BUCKET_NAME_CONF = "camel.kamelet.minio-source.bucketName"; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_BUCKET_NAME_DOC = "The MinIO Bucket name."; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_BUCKET_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_DELETE_AFTER_READ_CONF = "camel.kamelet.minio-source.deleteAfterRead"; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_DELETE_AFTER_READ_DOC = "Delete objects after consuming them."; public static final Boolean CAMEL_SOURCE_MINIOSOURCE_KAMELET_DELETE_AFTER_READ_DEFAULT = true; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_ACCESS_KEY_CONF = "camel.kamelet.minio-source.accessKey"; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_ACCESS_KEY_DOC = "The access key obtained from MinIO."; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_ACCESS_KEY_DEFAULT = null; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_SECRET_KEY_CONF = "camel.kamelet.minio-source.secretKey"; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_SECRET_KEY_DOC = "The secret key obtained from MinIO."; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_SECRET_KEY_DEFAULT = null; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_ENDPOINT_CONF = "camel.kamelet.minio-source.endpoint"; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_ENDPOINT_DOC = "The MinIO Endpoint. You can specify an URL, domain name, IPv4 address, or IPv6 address. Example: http://localhost:9000"; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_ENDPOINT_DEFAULT = null; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_AUTO_CREATE_BUCKET_CONF = "camel.kamelet.minio-source.autoCreateBucket"; public static final String CAMEL_SOURCE_MINIOSOURCE_KAMELET_AUTO_CREATE_BUCKET_DOC = "Specifies to automatically create the MinIO bucket."; public static final Boolean CAMEL_SOURCE_MINIOSOURCE_KAMELET_AUTO_CREATE_BUCKET_DEFAULT = false; public CamelMiniosourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelMiniosourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_MINIOSOURCE_KAMELET_BUCKET_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MINIOSOURCE_KAMELET_BUCKET_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MINIOSOURCE_KAMELET_BUCKET_NAME_DOC); conf.define(CAMEL_SOURCE_MINIOSOURCE_KAMELET_DELETE_AFTER_READ_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_MINIOSOURCE_KAMELET_DELETE_AFTER_READ_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MINIOSOURCE_KAMELET_DELETE_AFTER_READ_DOC); conf.define(CAMEL_SOURCE_MINIOSOURCE_KAMELET_ACCESS_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_MINIOSOURCE_KAMELET_ACCESS_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MINIOSOURCE_KAMELET_ACCESS_KEY_DOC); conf.define(CAMEL_SOURCE_MINIOSOURCE_KAMELET_SECRET_KEY_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_MINIOSOURCE_KAMELET_SECRET_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MINIOSOURCE_KAMELET_SECRET_KEY_DOC); conf.define(CAMEL_SOURCE_MINIOSOURCE_KAMELET_ENDPOINT_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MINIOSOURCE_KAMELET_ENDPOINT_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MINIOSOURCE_KAMELET_ENDPOINT_DOC); conf.define(CAMEL_SOURCE_MINIOSOURCE_KAMELET_AUTO_CREATE_BUCKET_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_MINIOSOURCE_KAMELET_AUTO_CREATE_BUCKET_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MINIOSOURCE_KAMELET_AUTO_CREATE_BUCKET_DOC); return conf; } }
8,588
0
Create_ds/camel-kafka-connector/connectors/camel-minio-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-minio-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/miniosource/CamelMiniosourceSourceTask.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 org.apache.camel.kafkaconnector.miniosource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMiniosourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelMiniosourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:minio-source"; } }
8,589
0
Create_ds/camel-kafka-connector/connectors/camel-minio-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-minio-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/miniosource/CamelMiniosourceSourceConnector.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 org.apache.camel.kafkaconnector.miniosource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMiniosourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelMiniosourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelMiniosourceSourceTask.class; } }
8,590
0
Create_ds/camel-kafka-connector/connectors/camel-google-functions-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-functions-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlefunctionssink/CamelGooglefunctionssinkSinkConnectorConfig.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 org.apache.camel.kafkaconnector.googlefunctionssink; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglefunctionssinkSinkConnectorConfig extends CamelSinkConnectorConfig { public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_PROJECT_ID_CONF = "camel.kamelet.google-functions-sink.projectId"; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_PROJECT_ID_DOC = "The Google Cloud Functions Project ID."; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_PROJECT_ID_DEFAULT = null; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_REGION_CONF = "camel.kamelet.google-functions-sink.region"; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_REGION_DOC = "The region where Google Cloud Functions has been deployed."; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_REGION_DEFAULT = null; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_FUNCTION_NAME_CONF = "camel.kamelet.google-functions-sink.functionName"; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_FUNCTION_NAME_DOC = "The Function name."; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_FUNCTION_NAME_DEFAULT = null; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_SERVICE_ACCOUNT_KEY_CONF = "camel.kamelet.google-functions-sink.serviceAccountKey"; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_SERVICE_ACCOUNT_KEY_DOC = "The path to the service account key file that provides credentials for the Google Cloud Functions platform. You must encode this value in base64."; public static final String CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT = null; public CamelGooglefunctionssinkSinkConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelGooglefunctionssinkSinkConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSinkConnectorConfig.conf()); conf.define(CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_PROJECT_ID_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_PROJECT_ID_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_PROJECT_ID_DOC); conf.define(CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_REGION_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_REGION_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_REGION_DOC); conf.define(CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_FUNCTION_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_FUNCTION_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_FUNCTION_NAME_DOC); conf.define(CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_SERVICE_ACCOUNT_KEY_CONF, ConfigDef.Type.STRING, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_SERVICE_ACCOUNT_KEY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SINK_GOOGLEFUNCTIONSSINK_KAMELET_SERVICE_ACCOUNT_KEY_DOC); return conf; } }
8,591
0
Create_ds/camel-kafka-connector/connectors/camel-google-functions-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-functions-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlefunctionssink/CamelGooglefunctionssinkSinkConnector.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 org.apache.camel.kafkaconnector.googlefunctionssink; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglefunctionssinkSinkConnector extends CamelSinkConnector { @Override public ConfigDef config() { return CamelGooglefunctionssinkSinkConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelGooglefunctionssinkSinkTask.class; } }
8,592
0
Create_ds/camel-kafka-connector/connectors/camel-google-functions-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-google-functions-sink-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/googlefunctionssink/CamelGooglefunctionssinkSinkTask.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 org.apache.camel.kafkaconnector.googlefunctionssink; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSinkConnectorConfig; import org.apache.camel.kafkaconnector.CamelSinkTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelGooglefunctionssinkSinkTask extends CamelSinkTask { @Override protected CamelSinkConnectorConfig getCamelSinkConnectorConfig( Map<String, String> props) { return new CamelGooglefunctionssinkSinkConnectorConfig(props); } @Override protected String getSinkKamelet() { return "kamelet:google-functions-sink"; } }
8,593
0
Create_ds/camel-kafka-connector/connectors/camel-mariadb-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mariadb-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mariadbsource/CamelMariadbsourceSourceConnector.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 org.apache.camel.kafkaconnector.mariadbsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMariadbsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelMariadbsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelMariadbsourceSourceTask.class; } }
8,594
0
Create_ds/camel-kafka-connector/connectors/camel-mariadb-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mariadb-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mariadbsource/CamelMariadbsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.mariadbsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMariadbsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_NAME_CONF = "camel.kamelet.mariadb-source.serverName"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_NAME_DOC = "The server name for the data source. Example: localhost"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_PORT_CONF = "camel.kamelet.mariadb-source.serverPort"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_PORT_DOC = "The server port for the data source."; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_PORT_DEFAULT = "3306"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_USERNAME_CONF = "camel.kamelet.mariadb-source.username"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_USERNAME_DOC = "The username to access a secured MariaDB Database."; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.mariadb-source.password"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_PASSWORD_DOC = "The password to access a secured MariaDB Database."; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_QUERY_CONF = "camel.kamelet.mariadb-source.query"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_QUERY_DOC = "The query to execute against the MariaDB Database. Example: INSERT INTO accounts (username,city) VALUES (:#username,:#city)"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_QUERY_DEFAULT = null; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DATABASE_NAME_CONF = "camel.kamelet.mariadb-source.databaseName"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DATABASE_NAME_DOC = "The name of the MariaDB Database."; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DATABASE_NAME_DEFAULT = null; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_CONSUMED_QUERY_CONF = "camel.kamelet.mariadb-source.consumedQuery"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_CONSUMED_QUERY_DOC = "A query to run on a tuple consumed. Example: DELETE FROM accounts where user_id = :#user_id"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_CONSUMED_QUERY_DEFAULT = null; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DELAY_CONF = "camel.kamelet.mariadb-source.delay"; public static final String CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DELAY_DOC = "The number of milliseconds before the next poll"; public static final Integer CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DELAY_DEFAULT = 500; public CamelMariadbsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelMariadbsourceSourceConnectorConfig( Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_NAME_DOC); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_PORT_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_PORT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_SERVER_PORT_DOC); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_USERNAME_DOC); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_QUERY_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_QUERY_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_QUERY_DOC); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DATABASE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DATABASE_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DATABASE_NAME_DOC); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_CONSUMED_QUERY_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_CONSUMED_QUERY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_CONSUMED_QUERY_DOC); conf.define(CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DELAY_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DELAY_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_MARIADBSOURCE_KAMELET_DELAY_DOC); return conf; } }
8,595
0
Create_ds/camel-kafka-connector/connectors/camel-mariadb-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-mariadb-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/mariadbsource/CamelMariadbsourceSourceTask.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 org.apache.camel.kafkaconnector.mariadbsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelMariadbsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelMariadbsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:mariadb-source"; } }
8,596
0
Create_ds/camel-kafka-connector/connectors/camel-fhir-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-fhir-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/fhirsource/CamelFhirsourceSourceTask.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 org.apache.camel.kafkaconnector.fhirsource; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.camel.kafkaconnector.CamelSourceTask; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFhirsourceSourceTask extends CamelSourceTask { @Override protected CamelSourceConnectorConfig getCamelSourceConnectorConfig( Map<String, String> props) { return new CamelFhirsourceSourceConnectorConfig(props); } @Override protected String getSourceKamelet() { return "kamelet:fhir-source"; } }
8,597
0
Create_ds/camel-kafka-connector/connectors/camel-fhir-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-fhir-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/fhirsource/CamelFhirsourceSourceConnector.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 org.apache.camel.kafkaconnector.fhirsource; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnector; import org.apache.kafka.common.config.ConfigDef; import org.apache.kafka.connect.connector.Task; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFhirsourceSourceConnector extends CamelSourceConnector { @Override public ConfigDef config() { return CamelFhirsourceSourceConnectorConfig.conf(); } @Override public Class<? extends Task> taskClass() { return CamelFhirsourceSourceTask.class; } }
8,598
0
Create_ds/camel-kafka-connector/connectors/camel-fhir-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector
Create_ds/camel-kafka-connector/connectors/camel-fhir-source-kafka-connector/src/main/java/org/apache/camel/kafkaconnector/fhirsource/CamelFhirsourceSourceConnectorConfig.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 org.apache.camel.kafkaconnector.fhirsource; import java.util.Map; import javax.annotation.Generated; import org.apache.camel.kafkaconnector.CamelSourceConnectorConfig; import org.apache.kafka.common.config.ConfigDef; @Generated("This class has been generated by camel-kafka-connector-generator-maven-plugin, remove this annotation to prevent it from being generated.") public class CamelFhirsourceSourceConnectorConfig extends CamelSourceConnectorConfig { public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_SERVER_URL_CONF = "camel.kamelet.fhir-source.serverUrl"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_SERVER_URL_DOC = "The Fhir server url"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_SERVER_URL_DEFAULT = null; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_URL_CONF = "camel.kamelet.fhir-source.url"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_URL_DOC = "The Fhir resource type url"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_URL_DEFAULT = "/Patient"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_ENCODING_CONF = "camel.kamelet.fhir-source.encoding"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_ENCODING_DOC = "Encoding to use for all request."; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_ENCODING_DEFAULT = "JSON"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_FHIR_VERSION_CONF = "camel.kamelet.fhir-source.fhirVersion"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_FHIR_VERSION_DOC = "The FHIR Version to use."; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_FHIR_VERSION_DEFAULT = "R4"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_USERNAME_CONF = "camel.kamelet.fhir-source.username"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_USERNAME_DOC = "The username to access the Fhir server"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_USERNAME_DEFAULT = null; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.fhir-source.password"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_PASSWORD_DOC = "The password to access the Fhir server"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_PASSWORD_DEFAULT = null; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_PRETTY_PRINT_CONF = "camel.kamelet.fhir-source.prettyPrint"; public static final String CAMEL_SOURCE_FHIRSOURCE_KAMELET_PRETTY_PRINT_DOC = "Define if the Json must be pretty print or not"; public static final Boolean CAMEL_SOURCE_FHIRSOURCE_KAMELET_PRETTY_PRINT_DEFAULT = true; public CamelFhirsourceSourceConnectorConfig( ConfigDef config, Map<String, String> parsedConfig) { super(config, parsedConfig); } public CamelFhirsourceSourceConnectorConfig(Map<String, String> parsedConfig) { this(conf(), parsedConfig); } public static ConfigDef conf() { ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); conf.define(CAMEL_SOURCE_FHIRSOURCE_KAMELET_SERVER_URL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FHIRSOURCE_KAMELET_SERVER_URL_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FHIRSOURCE_KAMELET_SERVER_URL_DOC); conf.define(CAMEL_SOURCE_FHIRSOURCE_KAMELET_URL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FHIRSOURCE_KAMELET_URL_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FHIRSOURCE_KAMELET_URL_DOC); conf.define(CAMEL_SOURCE_FHIRSOURCE_KAMELET_ENCODING_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FHIRSOURCE_KAMELET_ENCODING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FHIRSOURCE_KAMELET_ENCODING_DOC); conf.define(CAMEL_SOURCE_FHIRSOURCE_KAMELET_FHIR_VERSION_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FHIRSOURCE_KAMELET_FHIR_VERSION_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FHIRSOURCE_KAMELET_FHIR_VERSION_DOC); conf.define(CAMEL_SOURCE_FHIRSOURCE_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_FHIRSOURCE_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FHIRSOURCE_KAMELET_USERNAME_DOC); conf.define(CAMEL_SOURCE_FHIRSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_FHIRSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_FHIRSOURCE_KAMELET_PASSWORD_DOC); conf.define(CAMEL_SOURCE_FHIRSOURCE_KAMELET_PRETTY_PRINT_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_FHIRSOURCE_KAMELET_PRETTY_PRINT_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_FHIRSOURCE_KAMELET_PRETTY_PRINT_DOC); return conf; } }
8,599