mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

gbellato
07.19.2009 ae408b6c09759f61754f3e7b39d5e5d6595c1fc4
opendj-sdk/opends/src/server/org/opends/server/replication/server/ReplicationDB.java
@@ -57,7 +57,7 @@
  private Database db = null;
  private ReplicationDbEnv dbenv = null;
  private ReplicationServer replicationServer;
  private Short serverId;
  private int serverId;
  private String baseDn;
  // The maximum number of retries in case of DatabaseDeadlock Exception.
@@ -76,7 +76,7 @@
   * @param dbenv The Db environment to use to create the db.
   * @throws DatabaseException If a database problem happened.
   */
  public ReplicationDB(Short serverId, String baseDn,
  public ReplicationDB(int serverId, String baseDn,
                     ReplicationServer replicationServer,
                     ReplicationDbEnv dbenv)
                     throws DatabaseException
@@ -379,7 +379,7 @@
  @Override
  public String toString()
  {
    return serverId.toString() + baseDn.toString();
    return serverId + baseDn.toString();
  }
  /**