Examples of openDatabaseByReplicaID()


Examples of org.openntf.domino.DbDirectory.openDatabaseByReplicaID()

  public Database getDatabase(final long dbid, final String server, final Session session) {
    Database result = dbMap_.get(dbid);
    if (result == null) {
      String replid = getReplidFromLong(dbid);
      DbDirectory dir = session.getDbDirectory(server);
      result = dir.openDatabaseByReplicaID(replid);
      dbMap_.put(dbid, result);
    }
    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.