All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.payneteasy.superfly.notification.Notifier Maven / Gradle / Ivy

package com.payneteasy.superfly.notification;

import java.util.List;

/**
 * Used to notify subsystems about some events (like 'sessions have been
 * logged out').
 * 
 * @author Roman Puchkovskiy
 */
public interface Notifier {
    /**
     * Notifies subsystems about a logout of some sessions.
     *
     * @param notifications    notifications list
     */
    void notifyAboutLogout(List notifications);

    /**
     * Notifies subsystems that users have changed.
     *
     * @param notifications    notifications list
     */
    void notifyAboutUsersChanged(List notifications);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy