public class JUnitModuleContext extends Object implements ModuleContext
Modifier and Type | Class and Description |
---|---|
static class |
JUnitModuleContext.LogLevel |
Constructor and Description |
---|
JUnitModuleContext() |
JUnitModuleContext(ModuleActivator ma)
Deprecated.
|
JUnitModuleContext(ModuleActivator ma,
String classname) |
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. |
void |
disableLog() |
void |
enableLog() |
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 |
setLogLevel(JUnitModuleContext.LogLevel level) |
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 JUnitModuleContext(ModuleActivator ma, String classname)
public JUnitModuleContext(ModuleActivator ma)
public JUnitModuleContext()
public void disableLog()
public void enableLog()
public void setLogLevel(JUnitModuleContext.LogLevel level)
public boolean canBeStarted(ModuleContext requester)
RESOLVED
with regard to
the first two conditions above.canBeStarted
in interface ModuleContext
public 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 ModuleContext
public boolean canBeUninstalled(ModuleContext requester)
INSTALLED
or RESOLVED
, and
(2) the given requester is allowed to uninstall it. Otherwise, it returns
false.canBeUninstalled
in interface ModuleContext
public Object getAttribute(String attrName)
getAttribute
in interface ModuleContext
public Container getContainer()
Container
object that contains the module associated
with this ModuleContext.getContainer
in interface ModuleContext
public String getID()
getID
in interface ModuleContext
public File[] listConfigFiles(ModuleContext requester)
listConfigFiles
in interface ModuleContext
public void logDebug(String tag, String message, Throwable t)
logDebug
in interface ModuleContext
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 requestpublic void logError(String tag, String message, Throwable t)
logError
in interface ModuleContext
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 requestpublic void logInfo(String tag, String message, Throwable t)
logInfo
in interface ModuleContext
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 requestpublic void logWarn(String tag, String message, Throwable t)
logWarn
in interface ModuleContext
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 requestpublic void logTrace(String tag, String message, Throwable t)
logTrace
in interface ModuleContext
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 requestpublic boolean isLogErrorEnabled()
isLogErrorEnabled
in interface ModuleContext
public boolean isLogWarnEnabled()
isLogWarnEnabled
in interface ModuleContext
public boolean isLogInfoEnabled()
isLogInfoEnabled
in interface ModuleContext
public boolean isLogDebugEnabled()
isLogDebugEnabled
in interface ModuleContext
public boolean isLogTraceEnabled()
isLogTraceEnabled
in interface ModuleContext
public void registerConfigFile(Object[] configFileParams)
registerConfigFile
in interface ModuleContext
public void setAttribute(String attrName, Object attrValue)
setAttribute
in interface ModuleContext
public 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 ModuleContext
public 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 ModuleContext
public 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 ModuleContext
public Object getProperty(String name)
getProperty
in interface ModuleContext
name
- the name of the property requestednull
if no property setpublic Object getProperty(String name, Object def)
getProperty
in interface ModuleContext
name
- the name of the property requesteddef
- the default value to return in case that the property is not
setpublic String getManifestEntry(String name)
ModuleContext
getManifestEntry
in interface ModuleContext
name
- the name of the manifest entry.public String getManifestEntry(String manifest, String name)
ModuleContext
getManifestEntry
in interface ModuleContext
manifest
- identification of the custom manifest.name
- the name of the manifest entry.public File getConfigHome()
ModuleContext
getConfigHome
in interface ModuleContext
File
pointing to the correct configuration folder of
this module, The folder will be created for the module to use
directly.public File getDataFolder()
ModuleContext
getDataFolder
in interface ModuleContext
Copyright © 2018 universAAL Consortium. All rights reserved.