Package com.ee.tayra.connector

Examples of com.ee.tayra.connector.MongoAuthenticator


  private final MongoClient mongo;

  public MongoConnector(final String name, final int port,
  final String username, final String password) throws UnknownHostException {
    mongo = new MongoClient(name, port);
    new MongoAuthenticator(mongo).authenticate(username, password);
  }
View Full Code Here

TOP

Related Classes of com.ee.tayra.connector.MongoAuthenticator

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.