io.macronova.kafka.connect.jms.JmsSourceConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kafka-connect-jms Show documentation
Show all versions of kafka-connect-jms Show documentation
Sink and source JMS connector for Kafka Connect.
The newest version!
/*
* Copyright 2018 Macronova.
*
* Licensed 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 io.macronova.kafka.connect.jms;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.macronova.kafka.connect.jms.util.Version;
import org.apache.kafka.common.config.ConfigDef;
import org.apache.kafka.common.config.ConfigException;
import org.apache.kafka.connect.connector.Task;
import org.apache.kafka.connect.errors.ConnectException;
import io.macronova.kafka.connect.jms.source.JmsSourceConnectorConfig;
import io.macronova.kafka.connect.jms.source.JmsSourceTask;
import org.apache.kafka.connect.source.SourceConnector;
/**
* JMS source connector.
*/
public class JmsSourceConnector extends SourceConnector {
private static final Logger log = LoggerFactory.getLogger( JmsSourceConnector.class );
private Map configProperties = null;
private JmsSourceConnectorConfig config = null;
@Override
public String version() {
return Version.getVersion();
}
@Override
public void start(Map properties) {
log.info( "Starting JMS source connector version " + version() + "." );
try {
configProperties = properties;
config = new JmsSourceConnectorConfig( configProperties );
}
catch (ConfigException e) {
throw new ConnectException(
"Failed to start JMS source connector due to configuration error: " + e.getMessage() + ".", e
);
}
}
@Override
public Class extends Task> taskClass() {
return JmsSourceTask.class;
}
@Override
public List