Package org.openmuc.framework.webui.spi
Class WebUiPluginService
- java.lang.Object
-
- org.openmuc.framework.webui.spi.WebUiPluginService
-
public abstract class WebUiPluginService extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description WebUiPluginService()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidactivate(org.osgi.service.component.ComponentContext context)abstract java.lang.StringgetAlias()org.osgi.framework.BundlegetContextBundle()abstract java.lang.StringgetName()java.util.Map<java.lang.String,java.lang.String>getResources()add additional resources if needed
-
-
-
Method Detail
-
activate
protected void activate(org.osgi.service.component.ComponentContext context)
-
getContextBundle
public org.osgi.framework.Bundle getContextBundle()
-
getName
public abstract java.lang.String getName()
- Returns:
- Name of WebUI-Plugin, displayed in OpenMUC main menu on top
-
getAlias
public abstract java.lang.String getAlias()
- Returns:
- Alias of the WebUI-Plugin. The Alias is the identifier in the URL.
-
getResources
public java.util.Map<java.lang.String,java.lang.String> getResources()
add additional resources if needed- Returns:
- the resources as a hash table.
-
-