| | |
| | | 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.*; |
| | | |
| | |
| | | * |
| | | * @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. |
| | |
| | | public abstract void |
| | | handleStatusNotification( |
| | | AccountStatusNotificationType notificationType, |
| | | int messageID, String message); |
| | | DN userDN, int messageID, String message); |
| | | |
| | | |
| | | |
| | |
| | | String.valueOf(notification)); |
| | | |
| | | handleStatusNotification(notification.getNotificationType(), |
| | | notification.getUserDN(), |
| | | notification.getMessageID(), |
| | | notification.getMessage()); |
| | | } |