public interface ModuleContext
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)
Deprecated.
|
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)
Deprecated.
|
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.
|
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.
|
boolean canBeStarted(ModuleContext requester)
RESOLVED
with regard to
the first two conditions above.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.boolean canBeUninstalled(ModuleContext requester)
INSTALLED
or RESOLVED
, and
(2) the given requester is allowed to uninstall it. Otherwise, it returns
false.Object getAttribute(String attrName)
Container getContainer()
Container
object that contains the module associated
with this ModuleContext.String getID()
File[] listConfigFiles(ModuleContext requester)
void logDebug(String tag, String message, Throwable t)
tag
- 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 requestvoid logError(String tag, String message, Throwable t)
tag
- 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 requestvoid logInfo(String tag, String message, Throwable t)
tag
- 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 requestvoid logWarn(String tag, String message, Throwable t)
tag
- 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 requestvoid logTrace(String tag, String message, Throwable t)
tag
- 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 requestboolean isLogErrorEnabled()
boolean isLogWarnEnabled()
boolean isLogInfoEnabled()
boolean isLogDebugEnabled()
boolean isLogTraceEnabled()
void registerConfigFile(Object[] configFileParams)
void setAttribute(String attrName, Object attrValue)
boolean start(ModuleContext requester)
canBeStarted(ModuleContext)
returns true AND the
start action does not lead to any unexpected problem, otherwise false.boolean stop(ModuleContext requester)
canBeStopped(ModuleContext)
returns true AND the
stop action does not lead to any unexpected problem, otherwise false.boolean uninstall(ModuleContext requester)
canBeUninstalled(ModuleContext)
returns
true AND the uninstall action does not lead to any unexpected problem,
otherwise false.Object getProperty(String name)
name
- the name of the property requestednull
if no property setObject getProperty(String name, Object def)
name
- the name of the property requesteddef
- the default value to return in case that the property is not
setString getManifestEntry(String name)
name
- the name of the manifest entry.String getManifestEntry(String manifest, String name)
manifest
- identification of the custom manifest.name
- the name of the manifest entry.File getConfigHome()
File
pointing to the correct configuration folder of
this module, The folder will be created for the module to use
directly.File getDataFolder()
Copyright © 2018 universAAL Consortium. All rights reserved.