/* * 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.flume.conf.sink; /** * Enumeration of built in sink types available in the system. */ public enum SinkType { /** * Place holder for custom sinks not part of this enumeration. */ OTHER(null), /** * Null sink * * @see NullSink */ NULL("org.apache.flume.sink.NullSink"), /** * Logger sink * * @see LoggerSink */ LOGGER("org.apache.flume.sink.LoggerSink"), /** * Rolling file sink * * @see RollingFileSink */ FILE_ROLL("org.apache.flume.sink.RollingFileSink"), /** * HDFS Sink provided by org.apache.flume.sink.hdfs.HDFSEventSink */ HDFS("org.apache.flume.sink.hdfs.HDFSEventSink"), /** * RABBITMQ Sink provided by org.apache.flume.sink.irc.IRCSink */ RABBITMQ("org.apache.flume.sink.rabbitmq.RabbitMQSink"), /** * kafka Sink provided by org.apache.flume.sink.irc.IRCSink */ KAFKA("org.apache.flume.sink.kafka.KafkaSink"), /** * IRC Sink provided by org.apache.flume.sink.irc.IRCSink */ IRC("org.apache.flume.sink.irc.IRCSink"), /** * Avro sink * * @see AvroSink */ AVRO("org.apache.flume.sink.AvroSink"), /** * Thrift sink * * @see ThriftSink */ THRIFT("org.apache.flume.sink.ThriftSink"), /** * ElasticSearch sink * * @see org.apache.flume.sink.elasticsearch.ElasticSearchSink */ ELASTICSEARCH("org.apache.flume.sink.elasticsearch.ElasticSearchSink"), /** * HBase sink * * @see org.apache.flume.sink.hbase.HBaseSink */ HBASE("org.apache.flume.sink.hbase.HBaseSink"), /** * AsyncHBase sink * * @see org.apache.flume.sink.hbase.AsyncHBaseSink */ ASYNCHBASE("org.apache.flume.sink.hbase.AsyncHBaseSink"); private final String sinkClassName; private SinkType(String sinkClassName) { this.sinkClassName = sinkClassName; } public String getSinkClassName() { return sinkClassName; } }