blob: 0cd3f406835a26529135c08afdd8afb85294354d [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.httpsecuredsource;
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 CamelHttpsecuredsourceSourceConnectorConfig
extends
CamelSourceConnectorConfig {
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_PERIOD_CONF = "camel.kamelet.http-secured-source.period";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_PERIOD_DOC = "The interval between fetches in milliseconds";
public static final Integer CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_PERIOD_DEFAULT = 10000;
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_CONTENT_TYPE_CONF = "camel.kamelet.http-secured-source.contentType";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_CONTENT_TYPE_DOC = "The content type accepted for the resource";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_CONTENT_TYPE_DEFAULT = "application/json";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_URL_CONF = "camel.kamelet.http-secured-source.url";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_URL_DOC = "The URL to fetch for data Example: https://gist.githubusercontent.com/nicolaferraro/e3c72ace3c751f9f88273896611ce5fe/raw/3b6f54060bacb56b6719b7386a4645cb59ad6cc1/quote.json";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_URL_DEFAULT = null;
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_METHOD_CONF = "camel.kamelet.http-secured-source.authMethod";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_METHOD_DOC = "Authentication methods allowed to use as a comma separated list of values Basic, Digest or NTLM.";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_METHOD_DEFAULT = "Basic";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTHENTICATION_PREEMPTIVE_CONF = "camel.kamelet.http-secured-source.authenticationPreemptive";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTHENTICATION_PREEMPTIVE_DOC = "If this option is true, camel-http sends preemptive basic authentication to the server.";
public static final Boolean CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTHENTICATION_PREEMPTIVE_DEFAULT = false;
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_USERNAME_CONF = "camel.kamelet.http-secured-source.authUsername";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_USERNAME_DOC = "Authentication username";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_USERNAME_DEFAULT = null;
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_PASSWORD_CONF = "camel.kamelet.http-secured-source.authPassword";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_PASSWORD_DOC = "Authentication password";
public static final String CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_PASSWORD_DEFAULT = null;
public CamelHttpsecuredsourceSourceConnectorConfig(
ConfigDef config,
Map<String, String> parsedConfig) {
super(config, parsedConfig);
}
public CamelHttpsecuredsourceSourceConnectorConfig(
Map<String, String> parsedConfig) {
this(conf(), parsedConfig);
}
public static ConfigDef conf() {
ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf());
conf.define(CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_PERIOD_CONF, ConfigDef.Type.INT, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_PERIOD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_PERIOD_DOC);
conf.define(CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_CONTENT_TYPE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_CONTENT_TYPE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_CONTENT_TYPE_DOC);
conf.define(CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_URL_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_URL_DEFAULT, ConfigDef.Importance.HIGH, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_URL_DOC);
conf.define(CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_METHOD_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_METHOD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_METHOD_DOC);
conf.define(CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTHENTICATION_PREEMPTIVE_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTHENTICATION_PREEMPTIVE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTHENTICATION_PREEMPTIVE_DOC);
conf.define(CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_USERNAME_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_USERNAME_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_USERNAME_DOC);
conf.define(CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_PASSWORD_CONF, ConfigDef.Type.PASSWORD, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_PASSWORD_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_HTTPSECUREDSOURCE_KAMELET_AUTH_PASSWORD_DOC);
return conf;
}
}