blob: 94d94bae11a419b60c0e451db3a6c42daf2a490b [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.infinispansource;
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 CamelInfinispansourceSourceConnectorConfig
extends
CamelSourceConnectorConfig {
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_CACHE_NAME_CONF = "camel.kamelet.infinispan-source.cacheName";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_CACHE_NAME_DOC = "The name of the Infinispan cache to use";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_CACHE_NAME_DEFAULT = null;
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_HOSTS_CONF = "camel.kamelet.infinispan-source.hosts";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_HOSTS_DOC = "Specifies the host of the cache on Infinispan instance";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_HOSTS_DEFAULT = null;
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURE_CONF = "camel.kamelet.infinispan-source.secure";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURE_DOC = "If the Infinispan instance is secured or not";
public static final Boolean CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURE_DEFAULT = true;
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_USERNAME_CONF = "camel.kamelet.infinispan-source.username";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_USERNAME_DOC = "Username to connect to Infinispan.";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_USERNAME_DEFAULT = null;
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_PASSWORD_CONF = "camel.kamelet.infinispan-source.password";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_PASSWORD_DOC = "Password to connect to Infinispan.";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_PASSWORD_DEFAULT = null;
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SASL_MECHANISM_CONF = "camel.kamelet.infinispan-source.saslMechanism";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SASL_MECHANISM_DOC = "The SASL Mechanism to use";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SASL_MECHANISM_DEFAULT = "DIGEST-MD5";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_REALM_CONF = "camel.kamelet.infinispan-source.securityRealm";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_REALM_DOC = "Define the security realm to access the infinispan instance";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_REALM_DEFAULT = "default";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_SERVER_NAME_CONF = "camel.kamelet.infinispan-source.securityServerName";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_SERVER_NAME_DOC = "Define the security server name to access the infinispan instance";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_SERVER_NAME_DEFAULT = "infinispan";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_EVENT_TYPES_CONF = "camel.kamelet.infinispan-source.eventTypes";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_EVENT_TYPES_DOC = "Specifies the set of event types to register by the consumer. Multiple event can be separated by comma without spaces. Example: CLIENT_CACHE_ENTRY_CREATED,CLIENT_CACHE_ENTRY_MODIFIED";
public static final String CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_EVENT_TYPES_DEFAULT = "CLIENT_CACHE_ENTRY_CREATED,CLIENT_CACHE_ENTRY_MODIFIED,CLIENT_CACHE_ENTRY_REMOVED,CLIENT_CACHE_ENTRY_EXPIRED,CLIENT_CACHE_FAILOVER";
public CamelInfinispansourceSourceConnectorConfig(
ConfigDef config,
Map<String, String> parsedConfig) {
super(config, parsedConfig);
}
public CamelInfinispansourceSourceConnectorConfig(
Map<String, String> parsedConfig) {
this(conf(), parsedConfig);
}
public static ConfigDef conf() {
ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf());
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_CACHE_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_CACHE_NAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_CACHE_NAME_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_HOSTS_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_HOSTS_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_HOSTS_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURE_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_USERNAME_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_USERNAME_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_PASSWORD_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_PASSWORD_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SASL_MECHANISM_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SASL_MECHANISM_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SASL_MECHANISM_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_REALM_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_REALM_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_REALM_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_SERVER_NAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_SERVER_NAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_SECURITY_SERVER_NAME_DOC);
conf.define(CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_EVENT_TYPES_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_EVENT_TYPES_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_INFINISPANSOURCE_KAMELET_EVENT_TYPES_DOC);
return conf;
}
}