Package org.glassfish.api.admingui
Interface ConsoleProvider
-
@Contract public interface ConsoleProviderThis interface exists to provide a marker for locating modules which provide GUI features to be displayed in the GlassFish admin console. The
getConfiguration()method should either return (null), or aURLto the console-config.xml file.- Author:
- Ken Paulsen (ken.paulsen@sun.com)
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_CONFIG_FILENAMEThe default location of theconsole-config.xml.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URLgetConfiguration()Returns aURLto theconsole-config.xmlfile, ornull.
-
-
-
Field Detail
-
DEFAULT_CONFIG_FILENAME
static final String DEFAULT_CONFIG_FILENAME
The default location of the
console-config.xml.- See Also:
- Constant Field Values
-
-
Method Detail
-
getConfiguration
URL getConfiguration()
Returns a
URLto theconsole-config.xmlfile, ornull. Ifnullis returned, the default (DEFAULT_CONFIG_FILENAME) will be used.
-
-