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

clime.messadmin.providers.spi.ServerDataProvider 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;


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy