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

gbellato
12.23.2006 f0f4caa7b330807252d8a86d8ff499e16f9ddd33
opendj-sdk/opends/src/server/org/opends/server/changelog/ProtocolSession.java
@@ -27,6 +27,8 @@
package org.opends.server.changelog;
import java.io.IOException;
import java.util.zip.DataFormatException;
import org.opends.server.synchronization.SynchronizationMessage;
/**
@@ -75,7 +77,10 @@
   * @throws IOException When error happened durin IO process.
   * @throws ClassNotFoundException When the data received does extend the
   *         SynchronizationMessage class.
   * @throws DataFormatException When the data received is not formatted as a
   *         SynchronizationMessage.
   */
  public abstract SynchronizationMessage receive()
                  throws IOException, ClassNotFoundException;
                  throws IOException, ClassNotFoundException,
                         DataFormatException;
}