01: /**
02: *
03: */package clime.messadmin.providers.spi;
04:
05: /**
06: * Use this plug-in to display server-specific data.
07: * See {@link clime.messadmin.providers.spi.BaseTabularServerDataProvider} for displaying tabular data.
08: * @author Cédrik LIME
09: */
10: public interface ServerDataProvider extends BaseProvider {
11: /**
12: * @return server-specific XHTML data, or null if it can be determined
13: */
14: public String getXHTMLServerData();
15:
16: /**
17: * @return server-specific data title for given HttpSession, or null if it can be determined
18: */
19: public String getServerDataTitle();
20: }
|