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

gbellato
07.19.2009 ae408b6c09759f61754f3e7b39d5e5d6595c1fc4
opendj-sdk/opends/src/server/org/opends/server/replication/server/ServerHandler.java
@@ -113,7 +113,7 @@
  /**
   * The serverId of the remote server.
   */
  protected short serverId;
  protected int serverId;
  /**
   * The session opened with the remote server.
   */
@@ -251,7 +251,7 @@
      ProtocolSession session,
      int queueSize,
      String replicationServerURL,
      short replicationServerId,
      int replicationServerId,
      ReplicationServer replicationServer,
      int rcvWindowSize)
  {
@@ -686,7 +686,7 @@
   *
   * @return the ID of the server to which this object is linked
   */
  public short getServerId()
  public int getServerId()
  {
    return serverId;
  }
@@ -921,8 +921,8 @@
          // Timeout
          Message message = NOTE_TIMEOUT_WHEN_CROSS_CONNECTION.get(
              getServiceId(),
              Short.toString(serverId),
              Short.toString(replicationServerId));
              Integer.toString(serverId),
              Integer.toString(replicationServerId));
          throw new DirectoryException(ResultCode.OTHER, message);
        }
      }