Interface ModuleInfo
-
- All Known Implementing Classes:
CockpitModuleInfo,DefaultModuleInfo
public interface ModuleInfoInformation about single module
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetApplicationContextUri()Gets URI to an extension of application context defined by modulejava.lang.StringgetIconUrl()java.lang.StringgetId()java.lang.StringgetLocationUrl()java.util.Collection<java.lang.String>getParentModulesLocationUrls()java.lang.StringgetWidgetsExtension()Gets an extension of application mesh-up defined by the modulejava.lang.StringgetWidgetsPackage()Returns package name with module's contents
-
-
-
Method Detail
-
getWidgetsPackage
java.lang.String getWidgetsPackage()
Returns package name with module's contents- Returns:
- name of module's contents package
-
getId
java.lang.String getId()
- Returns:
- module identity
-
getLocationUrl
java.lang.String getLocationUrl()
- Returns:
- url of module's source
-
getIconUrl
java.lang.String getIconUrl()
- Returns:
- url of module's icon
-
getParentModulesLocationUrls
java.util.Collection<java.lang.String> getParentModulesLocationUrls()
- Returns:
- collection of parent module's urls
-
getWidgetsExtension
java.lang.String getWidgetsExtension()
Gets an extension of application mesh-up defined by the module- Returns:
- application mesh-up extension
-
getApplicationContextUri
java.lang.String getApplicationContextUri()
Gets URI to an extension of application context defined by module- Returns:
- application context extension uri
-
-