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

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

/**
 * Use this plug-in to display application-specific data.
 * See {@link clime.messadmin.providers.spi.BaseTabularApplicationDataProvider} for displaying tabular data.
 * @author Cédrik LIME
 */
public interface ApplicationDataProvider extends BaseProvider {
	/**
	 * @param context
	 * @return application-specific XHTML data for given Application, or null if it can be determined
	 */
	public String getXHTMLApplicationData(ServletContext context);
	/**
	 * @param context
	 * @return application-specific data title for given Application, or null if it can be determined
	 */
	public String getApplicationDataTitle(ServletContext context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy