
public class POJOModuleContext extends Object implements ModuleContext
| Constructor and Description |
|---|
POJOModuleContext(ModuleActivator ma,
POJOContainer container) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canBeStarted(ModuleContext requester)
Returns true if (1) the associated module has a status equivalent to the
OSGi ACTIVE , (2) it fulfills all prerequisites for being started, and
(3) the given requester is allowed to start it.
|
boolean |
canBeStopped(ModuleContext requester)
Returns true if (1) the associated module would respond to a
stop request (cf. |
boolean |
canBeUninstalled(ModuleContext requester)
Returns true if (1) the associated module is in a state equivalent to the
OSGi Bundle States
INSTALLED or RESOLVED, and
(2) the given requester is allowed to uninstall it. |
Object |
getAttribute(String attrName)
Returns the value associated with a certain attribute that has been set
previously by a component that has access to this module context.
|
File |
getConfigHome()
Get the Configuration Folder for this module.
|
Container |
getContainer()
Returns the
Container object that contains the module associated
with this ModuleContext. |
File |
getDataFolder()
Get the Data folder for this module, the general storage space where data
generated by the module should be stored.
|
String |
getID() |
String |
getManifestEntry(String name)
Get the value of an entry from the manifest of this module.
|
String |
getManifestEntry(String manifest,
String name)
Get the value of an entry from a custom manifest of this module.
|
Object |
getProperty(String name)
Return the current value of an property or properties that is defined in
this container
|
Object |
getProperty(String name,
Object def)
Return the current value of an attribute or properties that is defined in
this container
|
boolean |
isLogDebugEnabled()
Is the logger instance enabled for the DEBUG level?
|
boolean |
isLogErrorEnabled()
Is the logger instance enabled for the ERROR level?
|
boolean |
isLogInfoEnabled()
Is the logger instance enabled for the INFO level?
|
boolean |
isLogTraceEnabled()
Is the logger instance enabled for the TRACE level?
|
boolean |
isLogWarnEnabled()
Is the logger instance enabled for the WARN level?
|
File[] |
listConfigFiles(ModuleContext requester)
Returns the list of all config files associated with this module that
follow the container conventions and have been registered previously, if
the given requester is allowed to access them.
|
void |
logDebug(String tag,
String message,
Throwable t)
Provides a standard way for using container-specific loggers, in this
case for logging debug messages.
|
void |
logError(String tag,
String message,
Throwable t)
Provides a standard way for using container-specific loggers, in this
case for logging error messages.
|
void |
logInfo(String tag,
String message,
Throwable t)
Provides a standard way for using container-specific loggers, in this
case for logging info messages.
|
void |
logTrace(String tag,
String message,
Throwable t)
Provides a standard way for using container-specific loggers, in this
case for logging trace messages.
|
void |
logWarn(String tag,
String message,
Throwable t)
Provides a standard way for using container-specific loggers, in this
case for logging warnings.
|
void |
registerConfigFile(Object[] configFileParams)
Modules can use this method of their context to enrich it with info about
those config files of them that follow the container conventions.
|
void |
setAttribute(String attrName,
Object attrValue)
Concrete containers can use this possibility to enrich the module context
with container-specific additional info that has not been introduced by
this interface.
|
void |
setEnableLog(boolean enablelog) |
boolean |
start(ModuleContext requester)
An authorized requester can use this method to start the current module.
|
boolean |
stop(ModuleContext requester)
An authorized requester can use this method to stop the current module.
|
boolean |
uninstall(ModuleContext requester)
An authorized requester can use this method to uninstall the current
module.
|
public POJOModuleContext(ModuleActivator ma, POJOContainer container)
public boolean canBeStarted(ModuleContext requester)
RESOLVED with regard to
the first two conditions above.canBeStarted in interface ModuleContextpublic boolean canBeStopped(ModuleContext requester)
stop request (cf. the OSGi Bundle State ACTIVE
), and (2) the given requester is allowed to stop it. Otherwise, it
returns false.canBeStopped in interface ModuleContextpublic boolean canBeUninstalled(ModuleContext requester)
INSTALLED or RESOLVED, and
(2) the given requester is allowed to uninstall it. Otherwise, it returns
false.canBeUninstalled in interface ModuleContextpublic Object getAttribute(String attrName)
getAttribute in interface ModuleContextpublic Container getContainer()
Container object that contains the module associated
with this ModuleContext.getContainer in interface ModuleContextpublic String getID()
getID in interface ModuleContextpublic File[] listConfigFiles(ModuleContext requester)
listConfigFiles in interface ModuleContextpublic void logDebug(String tag, String message, Throwable t)
logDebug in interface ModuleContexttag - the log tag, for example the tag of android.util.Logmessage - the log messaget - An optional Throwable object like an exception that
might have caused the log requestpublic void logError(String tag, String message, Throwable t)
logError in interface ModuleContexttag - the log tag, for example the tag of android.util.Logmessage - the log messaget - An optional Throwable object like an exception that
might have caused the log requestpublic void logInfo(String tag, String message, Throwable t)
logInfo in interface ModuleContexttag - the log tag, for example the tag of android.util.Logmessage - the log messaget - An optional Throwable object like an exception that
might have caused the log requestpublic void logWarn(String tag, String message, Throwable t)
logWarn in interface ModuleContexttag - the log tag, for example the tag of android.util.Logmessage - the log messaget - An optional Throwable object like an exception that
might have caused the log requestpublic void logTrace(String tag, String message, Throwable t)
logTrace in interface ModuleContexttag - the log tag, for example the tag of android.util.Logmessage - the log messaget - An optional Throwable object like an exception that
might have caused the log requestpublic boolean isLogErrorEnabled()
isLogErrorEnabled in interface ModuleContextpublic boolean isLogWarnEnabled()
isLogWarnEnabled in interface ModuleContextpublic boolean isLogInfoEnabled()
isLogInfoEnabled in interface ModuleContextpublic boolean isLogDebugEnabled()
isLogDebugEnabled in interface ModuleContextpublic boolean isLogTraceEnabled()
isLogTraceEnabled in interface ModuleContextpublic void registerConfigFile(Object[] configFileParams)
registerConfigFile in interface ModuleContextpublic void setAttribute(String attrName, Object attrValue)
setAttribute in interface ModuleContextpublic boolean start(ModuleContext requester)
ModuleContext.canBeStarted(ModuleContext) returns true AND the
start action does not lead to any unexpected problem, otherwise false.start in interface ModuleContextpublic boolean stop(ModuleContext requester)
ModuleContext.canBeStopped(ModuleContext) returns true AND the
stop action does not lead to any unexpected problem, otherwise false.stop in interface ModuleContextpublic boolean uninstall(ModuleContext requester)
ModuleContext.canBeUninstalled(ModuleContext) returns
true AND the uninstall action does not lead to any unexpected problem,
otherwise false.uninstall in interface ModuleContextpublic Object getProperty(String name)
getProperty in interface ModuleContextname - the name of the property requestednull if no property setpublic Object getProperty(String name, Object def)
getProperty in interface ModuleContextname - the name of the property requesteddef - the default value to return in case that the property is not
setpublic String getManifestEntry(String name)
ModuleContextgetManifestEntry in interface ModuleContextname - the name of the manifest entry.public String getManifestEntry(String manifest, String name)
ModuleContextgetManifestEntry in interface ModuleContextmanifest - identification of the custom manifest.name - the name of the manifest entry.public File getConfigHome()
ModuleContextgetConfigHome in interface ModuleContextFile pointing to the correct configuration folder of
this module, The folder will be created for the module to use
directly.public File getDataFolder()
ModuleContextgetDataFolder in interface ModuleContextpublic void setEnableLog(boolean enablelog)
Copyright © 2018 universAAL Consortium. All rights reserved.