| /* |
| * 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.guavaeventbus; |
| |
| 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 CamelGuavaeventbusSourceConnectorConfig |
| extends |
| CamelSourceConnectorConfig { |
| |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_PATH_EVENT_BUS_REF_CONF = "camel.source.path.eventBusRef"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_PATH_EVENT_BUS_REF_DOC = "To lookup the Guava EventBus from the registry with the given name"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_PATH_EVENT_BUS_REF_DEFAULT = null; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EVENT_CLASS_CONF = "camel.source.endpoint.eventClass"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EVENT_CLASS_DOC = "If used on the consumer side of the route, will filter events received from the EventBus to the instances of the class and superclasses of eventClass. Null value of this option is equal to setting it to the java.lang.Object i.e. the consumer will capture all messages incoming to the event bus. This option cannot be used together with listenerInterface option."; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EVENT_CLASS_DEFAULT = null; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_LISTENER_INTERFACE_CONF = "camel.source.endpoint.listenerInterface"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_LISTENER_INTERFACE_DOC = "The interface with method(s) marked with the Subscribe annotation. Dynamic proxy will be created over the interface so it could be registered as the EventBus listener. Particularly useful when creating multi-event listeners and for handling DeadEvent properly. This option cannot be used together with eventClass option."; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_LISTENER_INTERFACE_DEFAULT = null; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BRIDGE_ERROR_HANDLER_CONF = "camel.source.endpoint.bridgeErrorHandler"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BRIDGE_ERROR_HANDLER_DOC = "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored."; |
| public static final Boolean CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BRIDGE_ERROR_HANDLER_DEFAULT = false; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCEPTION_HANDLER_CONF = "camel.source.endpoint.exceptionHandler"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCEPTION_HANDLER_DOC = "To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored."; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCEPTION_HANDLER_DEFAULT = null; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCHANGE_PATTERN_CONF = "camel.source.endpoint.exchangePattern"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCHANGE_PATTERN_DOC = "Sets the exchange pattern when the consumer creates an exchange. One of: [InOnly] [InOut] [InOptionalOut]"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCHANGE_PATTERN_DEFAULT = null; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BASIC_PROPERTY_BINDING_CONF = "camel.source.endpoint.basicPropertyBinding"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BASIC_PROPERTY_BINDING_DOC = "Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities"; |
| public static final Boolean CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BASIC_PROPERTY_BINDING_DEFAULT = false; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_SYNCHRONOUS_CONF = "camel.source.endpoint.synchronous"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_SYNCHRONOUS_DOC = "Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported)."; |
| public static final Boolean CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_SYNCHRONOUS_DEFAULT = false; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_EVENT_BUS_CONF = "camel.component.guava-eventbus.eventBus"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_EVENT_BUS_DOC = "To use the given Guava EventBus instance"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_EVENT_BUS_DEFAULT = null; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_LISTENER_INTERFACE_CONF = "camel.component.guava-eventbus.listenerInterface"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_LISTENER_INTERFACE_DOC = "The interface with method(s) marked with the Subscribe annotation. Dynamic proxy will be created over the interface so it could be registered as the EventBus listener. Particularly useful when creating multi-event listeners and for handling DeadEvent properly. This option cannot be used together with eventClass option."; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_LISTENER_INTERFACE_DEFAULT = null; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BRIDGE_ERROR_HANDLER_CONF = "camel.component.guava-eventbus.bridgeErrorHandler"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BRIDGE_ERROR_HANDLER_DOC = "Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored."; |
| public static final Boolean CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BRIDGE_ERROR_HANDLER_DEFAULT = false; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BASIC_PROPERTY_BINDING_CONF = "camel.component.guava-eventbus.basicPropertyBinding"; |
| public static final String CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BASIC_PROPERTY_BINDING_DOC = "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities"; |
| public static final Boolean CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT = false; |
| |
| public CamelGuavaeventbusSourceConnectorConfig( |
| ConfigDef config, |
| Map<String, String> parsedConfig) { |
| super(config, parsedConfig); |
| } |
| |
| public CamelGuavaeventbusSourceConnectorConfig( |
| Map<String, String> parsedConfig) { |
| this(conf(), parsedConfig); |
| } |
| |
| public static ConfigDef conf(Map<String, String> parsedConfig) { |
| ConfigDef conf = new ConfigDef(CamelSourceConnectorConfig.conf()); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_PATH_EVENT_BUS_REF_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GUAVAEVENTBUS_PATH_EVENT_BUS_REF_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_PATH_EVENT_BUS_REF_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EVENT_CLASS_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EVENT_CLASS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EVENT_CLASS_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_LISTENER_INTERFACE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_LISTENER_INTERFACE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_LISTENER_INTERFACE_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BRIDGE_ERROR_HANDLER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BRIDGE_ERROR_HANDLER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BRIDGE_ERROR_HANDLER_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCEPTION_HANDLER_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCEPTION_HANDLER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCEPTION_HANDLER_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCHANGE_PATTERN_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCHANGE_PATTERN_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_EXCHANGE_PATTERN_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_BASIC_PROPERTY_BINDING_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_SYNCHRONOUS_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_SYNCHRONOUS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_ENDPOINT_SYNCHRONOUS_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_EVENT_BUS_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_EVENT_BUS_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_EVENT_BUS_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_LISTENER_INTERFACE_CONF, ConfigDef.Type.STRING, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_LISTENER_INTERFACE_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_LISTENER_INTERFACE_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BRIDGE_ERROR_HANDLER_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BRIDGE_ERROR_HANDLER_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BRIDGE_ERROR_HANDLER_DOC); |
| conf.define(CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BASIC_PROPERTY_BINDING_CONF, ConfigDef.Type.BOOLEAN, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BASIC_PROPERTY_BINDING_DEFAULT, ConfigDef.Importance.MEDIUM, CAMEL_SOURCE_GUAVAEVENTBUS_COMPONENT_BASIC_PROPERTY_BINDING_DOC); |
| return conf; |
| } |
| } |