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

clime.messadmin.providers.spi.SessionDataProvider Maven / Gradle / Ivy

Go to download

Notification system and Session administration for J2EE Web Applications

There is a newer version: 4.1.1
Show newest version
/**
 * 
 */
package clime.messadmin.providers.spi;

import javax.servlet.http.HttpSession;

/**
 * Use this plug-in to display session-specific data.
 * See {@link clime.messadmin.providers.spi.BaseTabularSessionDataProvider} for displaying tabular data.
 * @author Cédrik LIME
 */
public interface SessionDataProvider extends BaseProvider {
	/**
	 * @param session
	 * @return application-specific XHTML data for given HttpSession, or null if it can be determined
	 */
	public String getXHTMLSessionData(HttpSession session);
	/**
	 * @param session
	 * @return application-specific data title for given HttpSession, or null if it can be determined
	 */
	public String getSessionDataTitle(HttpSession session);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy