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

neil_a_wilson
14.33.2006 abf2b98003c52deb2319cfd64a6e280531e84324
opends/src/server/org/opends/server/api/AccountStatusNotificationHandler.java
@@ -33,6 +33,7 @@
import org.opends.server.core.InitializationException;
import org.opends.server.types.AccountStatusNotification;
import org.opends.server.types.AccountStatusNotificationType;
import org.opends.server.types.DN;
import static org.opends.server.loggers.Debug.*;
@@ -99,6 +100,8 @@
   *
   * @param  notificationType  The type for this account status
   *                           notification.
   * @param  userDN            The DN of the user entry to which this
   *                           notification applies.
   * @param  messageID         The unique ID for this notification.
   * @param  message           The human-readable message for this
   *                           notification.
@@ -106,7 +109,7 @@
  public abstract void
       handleStatusNotification(
            AccountStatusNotificationType notificationType,
            int messageID, String message);
            DN userDN, int messageID, String message);
@@ -124,6 +127,7 @@
                      String.valueOf(notification));
    handleStatusNotification(notification.getNotificationType(),
                             notification.getUserDN(),
                             notification.getMessageID(),
                             notification.getMessage());
  }