Package org.apache.sqoop.framework.configuration

Examples of org.apache.sqoop.framework.configuration.ConnectionConfiguration


    validator = new FrameworkValidator();
  }

  @Test
  public void testConnectionValidation() {
    ConnectionConfiguration connectionConfiguration = new ConnectionConfiguration();

    Validation validation = validator.validateConnection(connectionConfiguration);
    assertEquals(Status.FINE, validation.getStatus());
    assertEquals(0, validation.getMessages().size());
  }
View Full Code Here

TOP

Related Classes of org.apache.sqoop.framework.configuration.ConnectionConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.