Java tutorial
/* * Copyright (C) 2016 Stratio (http://stratio.com) * * 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. */ import org.apache.commons.collections.ListUtils; import org.apache.sqoop.common.Direction; import org.apache.sqoop.connector.ftp.FtpLoader; import org.apache.sqoop.connector.ftp.FtpToDestroyer; import org.apache.sqoop.connector.ftp.FtpToInitializer; import org.apache.sqoop.connector.jdbc.GenericJdbcConnectorConstants; import org.apache.sqoop.connector.spi.ConnectorConfigurableUpgrader; import org.apache.sqoop.connector.spi.SqoopConnector; import org.apache.sqoop.job.etl.From; import org.apache.sqoop.job.etl.To; import java.util.Arrays; import java.util.List; import java.util.Locale; import java.util.ResourceBundle; /** * A connector that does not do anything */ public class TestConnector extends SqoopConnector { private static final To TO = new To(TestToInitializer.class, TestLoader.class, TestToDestroyer.class); @Override public String getVersion() { return "1.0"; } @Override public ResourceBundle getBundle(Locale locale) { return ResourceBundle.getBundle(GenericJdbcConnectorConstants.RESOURCE_BUNDLE_NAME, locale); } @Override public Class getLinkConfigurationClass() { return TestLinkConfiguration.class; } @Override public Class getJobConfigurationClass(Direction direction) { switch (direction) { case TO: return TestToJobConfiguration.class; default: return null; } } @Override public From getFrom() { return null; } @Override public To getTo() { return TO; } @Override public ConnectorConfigurableUpgrader getConfigurableUpgrader(String oldConnectorVersion) { return null; } @Override public List<Direction> getSupportedDirections() { return Arrays.asList(Direction.TO); } }