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

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

There is a newer version: 2.45.7
Show newest version
package com.jpattern.gwt.client.session;

/**
 * 
 * @author Francesco Cina'
 *
 * Nov 28, 2011
 */
public interface ISessionObserver {

	/**
	 * Callback action when the session is cleaned
	 */
	void onSessionClean();
	
	/**
	 * Callback action when a new attribute has been added
	 * @param key
	 */
	void onAttributeAdded(String key);
	
	/**
	 * Callback action when an attribute has been removed
	 * @param key
	 */
	void onAttributeRemoved(String key);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy