public interface ExternalModule
A module is considered external when it resides outside ot the default "modules" directory from which JBoss Modules looks to find modules.
Adding an external module consists of creating a ModuleIdentifier and ExternalModuleSpecService
that manages the life cycle of the module specification that defines the module.
To be created it is necessary to specify a path to its location. That path could be a jar file or a directory, in which case the directory
will be scanned searching for jar files in it.
| Modifier and Type | Field and Description |
|---|---|
static String |
EXTERNAL_MODULE_PREFIX
Prefix name used for the new installed module identifier.
|
| Modifier and Type | Method and Description |
|---|---|
org.jboss.modules.ModuleIdentifier |
addExternalModule(String path,
org.jboss.msc.service.ServiceRegistry serviceRegistry,
org.jboss.msc.service.ServiceTarget serviceTarget)
Prepares and install a new
ModuleIdentifier and ExternalModuleSpecService to manage this module. |
org.jboss.modules.ModuleIdentifier |
addExternalModule(String moduleName,
String path,
org.jboss.msc.service.ServiceRegistry serviceRegistry,
org.jboss.msc.service.ServiceTarget serviceTarget)
Prepares and install a new
ModuleIdentifier and ExternalModuleSpecService to manage this module. |
boolean |
isValidFile(String path)
Checks if the path argument refers to a file and the file is valid to be used as a class-path entry.
|
static final String EXTERNAL_MODULE_PREFIX
org.jboss.modules.ModuleIdentifier addExternalModule(String moduleName, String path, org.jboss.msc.service.ServiceRegistry serviceRegistry, org.jboss.msc.service.ServiceTarget serviceTarget)
ModuleIdentifier and ExternalModuleSpecService to manage this module.
This method prevents the creation of duplicate external module spec services for the given module name looking at the
service registry, so it can be called multiple times for the same module name.moduleName - The module name to add.path - An absolute path pointing out to a directory or jar file that will be used as source for the resources backed
by the given module name we want to install. Cannot be nullserviceRegistry - The MSC service registry which will be used to find if there is already an ExternalModuleSpecService
created for the given module name. Cannot be null.serviceTarget - The ServiceTarget to use to install the service. Cannot be null.ModuleIdentifier created for the given module name.org.jboss.modules.ModuleIdentifier addExternalModule(String path, org.jboss.msc.service.ServiceRegistry serviceRegistry, org.jboss.msc.service.ServiceTarget serviceTarget)
ModuleIdentifier and ExternalModuleSpecService to manage this module.
This method does not use a specific module name, instead the module name is derived from the given path. This method prevents the creation of duplicate external module spec services for the given path looking at the service registry, so it can be called multiple times using the same path.
path - An absolute path pointing out to a directory or jar file that will be used as source for the resources backed by
the given module name we want to install. Cannot be nullserviceRegistry - The MSC service registry which will be used to find if there is already an ExternalModuleSpecService
created for the given path. Cannot be null.serviceTarget - The ServiceTarget to use to install the service. Cannot be null.ModuleIdentifier created for the given path.boolean isValidFile(String path)
path - value to test.true if and only if the path refers to a file and the file is considered valid as a class-path entry,
otherwise returns false.Copyright © 2019 JBoss by Red Hat. All rights reserved.