Package br.com.objectos.comuns.sql

Examples of br.com.objectos.comuns.sql.JdbcCredentials


    private final String password;

    private final Set<String> catalogs = newHashSet();

    public JdbcModuleBuilder(Provider<JdbcCredentials> credentialsProvider) {
      JdbcCredentials credentials = credentialsProvider.get();

      Preconditions.checkNotNull(credentials);

      this.driverClass = credentials.getDriverClass();
      this.url = credentials.getUrl();
      this.username = credentials.getUser();
      this.password = credentials.getPassword();

    }
View Full Code Here

TOP

Related Classes of br.com.objectos.comuns.sql.JdbcCredentials

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.