Package org.glassfish.admingui.connector
Class ConsoleConfig
- java.lang.Object
-
- org.glassfish.admingui.connector.ConsoleConfig
-
public class ConsoleConfig extends Object
This class is configured via XML (i.e. a console-config.xml file). This is done via the HK2
ConfigParser.Each module that wishes to provide an integration with the GlassFish admin console should provide a
console-config.xmlfile which provides all theIntegrationPointinformation for the module. Here is an example of what that file might look like:Normally a
console-config.xmlfile should exist at "META-INF/admingui/console-config.xml" inside your module jar file.- Author:
- Ken Paulsen (ken.paulsen@sun.com)
-
-
Constructor Summary
Constructors Constructor Description ConsoleConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()A unique identifier for the ConsoleConfig instance.List<IntegrationPoint>getIntegrationPoints()Accessor for the known Admin ConsoleIntegrationPoints.
-
-
-
Method Detail
-
getIntegrationPoints
public List<IntegrationPoint> getIntegrationPoints()
Accessor for the known Admin Console
IntegrationPoints.
-
getId
public String getId()
A unique identifier for the ConsoleConfig instance.
-
-