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

com.jpattern.gwt.client.session.ISecurityContextObserver Maven / Gradle / Ivy

package com.jpattern.gwt.client.session;

/**
 * 
 * @author cinafr
 *
 */
public interface ISecurityContextObserver {

	/**
	 * Callback action when a new IUserData is put in the SecurityContext 
	 * @param userData the user that performed the login
	 */
	void onUserLogin(IUserData userData);
	
	/**
	 * Callback action on user logout
	 * @param userData the user that performed the logout
	 */
	void onUserLogout(IUserData userData);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy