blob: f471084b040b787b8e3e2939d20e452e6a49d284 [file] [log] [blame]
/*
* 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.mongodb.source;
import org.apache.camel.kafkaconnector.common.SourceConnectorPropertyFactory;
final class CamelMongoDBPropertyFactory extends SourceConnectorPropertyFactory<CamelMongoDBPropertyFactory> {
private CamelMongoDBPropertyFactory() {
}
public CamelMongoDBPropertyFactory withPassword(String password) {
return setProperty("camel.kamelet.mongodb-source.password", password);
}
public CamelMongoDBPropertyFactory withUsername(String username) {
return setProperty("camel.kamelet.mongodb-source.username", username);
}
public CamelMongoDBPropertyFactory withHosts(String hosts) {
return setProperty("camel.kamelet.mongodb-source.hosts", hosts);
}
public CamelMongoDBPropertyFactory withDatabase(String database) {
return setProperty("camel.kamelet.mongodb-source.database", database);
}
public CamelMongoDBPropertyFactory withCollection(String collection) {
return setProperty("camel.kamelet.mongodb-source.collection", collection);
}
public CamelMongoDBPropertyFactory withSslValidationEnabled(String sslValidationEnabled) {
return setProperty("camel.kamelet.mongodb-source.sslValidationEnabled", sslValidationEnabled);
}
public CamelMongoDBPropertyFactory withSsl(String ssl) {
return setProperty("camel.kamelet.mongodb-source.ssl", ssl);
}
public static CamelMongoDBPropertyFactory basic() {
return new CamelMongoDBPropertyFactory()
.withName("CamelMongoDBSourceConnector")
.withTasksMax(1)
.withConnectorClass("org.apache.camel.kafkaconnector.mongodbsource.CamelMongodbsourceSourceConnector")
.withKeyConverterClass("org.apache.kafka.connect.storage.StringConverter")
.withValueConverterClass("org.apache.kafka.connect.storage.StringConverter")
.withSsl("false")
.setProperty("camel.component.kamelet.location", "kamelets");
}
}