Uses of Class
org.jboss.modules.ModuleLoader
-
Packages that use ModuleLoader Package Description __redirected org.jboss.modules The primary JBoss Modules API.org.jboss.modules.log The logging interface for JBoss Modules.org.jboss.modules.security org.jboss.modules.xml -
-
Uses of ModuleLoader in __redirected
Methods in __redirected with parameters of type ModuleLoader Modifier and Type Method Description static void
__JAXPRedirected. changeAll(ModuleIdentifier id, ModuleLoader loader)
Change all provided factories to the ones contained in the specified module using the standard META-INF/services lookup pattern.static void
__DatatypeFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__DocumentBuilderFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__SAXParserFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__SchemaFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__TransformerFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__XMLEventFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__XMLInputFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__XMLOutputFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__XMLReaderFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
static void
__XPathFactory. changeDefaultFactory(ModuleIdentifier id, ModuleLoader loader)
-
Uses of ModuleLoader in org.jboss.modules
Subclasses of ModuleLoader in org.jboss.modules Modifier and Type Class Description class
ClassifyingModuleLoader
A module loader which selects a delegate module loader based upon the prefix of the module name.class
LocalModuleLoader
A local filesystem-backed module loader.Methods in org.jboss.modules that return ModuleLoader Modifier and Type Method Description static ModuleLoader
ModuleLoader. forClass(Class<?> clazz)
Get the module loader for a class.static ModuleLoader
ModuleLoader. forClassLoader(ClassLoader classLoader)
Get the module loader for a class loader.static ModuleLoader
Module. getBootModuleLoader()
Gets the boot module loader.static ModuleLoader
Module. getCallerModuleLoader()
Gets the current module loader.static ModuleLoader
Module. getContextModuleLoader()
Get the current thread's context module loader.ModuleLoader
Module. getModuleLoader()
Get the module loader which created this module.ModuleLoader
ModuleDependencySpec. getModuleLoader()
Get the module loader of this dependency, ornull
if the defined module's loader is to be used.Methods in org.jboss.modules with parameters of type ModuleLoader Modifier and Type Method Description static DependencySpec
DependencySpec. createModuleDependencySpec(PathFilter importFilter, PathFilter exportFilter, PathFilter resourceImportFilter, PathFilter resourceExportFilter, ClassFilter classImportFilter, ClassFilter classExportFilter, ModuleLoader moduleLoader, ModuleIdentifier identifier, boolean optional)
Create a dependency on the given module.static DependencySpec
DependencySpec. createModuleDependencySpec(PathFilter importFilter, PathFilter exportFilter, ModuleLoader moduleLoader, ModuleIdentifier identifier, boolean optional)
Create a dependency on the given module.static DependencySpec
DependencySpec. createModuleDependencySpec(PathFilter exportFilter, ModuleLoader moduleLoader, ModuleIdentifier identifier, boolean optional)
Create a dependency on the given module.static DependencySpec
DependencySpec. createModuleDependencySpec(ModuleLoader moduleLoader, ModuleIdentifier identifier, boolean export)
Create a dependency on the given module.static DependencySpec
DependencySpec. createModuleDependencySpec(ModuleLoader moduleLoader, ModuleIdentifier identifier, boolean export, boolean optional)
Create a dependency on the given module.ModuleSpec
JarModuleFinder. findModule(ModuleIdentifier identifier, ModuleLoader delegateLoader)
ModuleSpec
LocalModuleFinder. findModule(ModuleIdentifier identifier, ModuleLoader delegateLoader)
ModuleSpec
ModuleFinder. findModule(ModuleIdentifier identifier, ModuleLoader delegateLoader)
Find a module specification for the given identifier.static ModuleSpec
LocalModuleFinder. parseModuleXmlFile(ModuleIdentifier identifier, ModuleLoader delegateLoader, File... roots)
Parse amodule.xml
file and return the corresponding module specification.protected static Module
ModuleLoader. preloadModule(ModuleIdentifier identifier, ModuleLoader moduleLoader)
Utility method to delegate to another module loader, accessible from subclasses.Method parameters in org.jboss.modules with type arguments of type ModuleLoader Modifier and Type Method Description void
ClassifyingModuleLoader. setDelegates(Map<String,ModuleLoader> delegates)
Change the delegates map.Constructors in org.jboss.modules with parameters of type ModuleLoader Constructor Description ClassifyingModuleLoader(String name, Map<String,ModuleLoader> delegates, ModuleLoader defaultLoader)
Construct a new instance.Constructor parameters in org.jboss.modules with type arguments of type ModuleLoader Constructor Description ClassifyingModuleLoader(String name, Map<String,ModuleLoader> delegates, ModuleLoader defaultLoader)
Construct a new instance. -
Uses of ModuleLoader in org.jboss.modules.log
Methods in org.jboss.modules.log with parameters of type ModuleLoader Modifier and Type Method Description void
JDKModuleLogger. moduleDefined(ModuleIdentifier identifier, ModuleLoader moduleLoader)
void
ModuleLogger. moduleDefined(ModuleIdentifier identifier, ModuleLoader moduleLoader)
void
NoopModuleLogger. moduleDefined(ModuleIdentifier identifier, ModuleLoader moduleLoader)
void
StreamModuleLogger. moduleDefined(ModuleIdentifier identifier, ModuleLoader moduleLoader)
-
Uses of ModuleLoader in org.jboss.modules.security
Constructors in org.jboss.modules.security with parameters of type ModuleLoader Constructor Description ModularPermissionFactory(ModuleLoader moduleLoader, ModuleIdentifier moduleIdentifier, String className, String targetName, String permissionActions)
Construct a new instance. -
Uses of ModuleLoader in org.jboss.modules.xml
Methods in org.jboss.modules.xml with parameters of type ModuleLoader Modifier and Type Method Description static ModuleSpec
ModuleXmlParser. parseModuleXml(ModuleLoader moduleLoader, ModuleIdentifier moduleIdentifier, File root, File moduleInfoFile)
Parse amodule.xml
file.static ModuleSpec
ModuleXmlParser. parseModuleXml(ModuleXmlParser.ResourceRootFactory factory, String rootPath, InputStream source, String moduleInfoFile, ModuleLoader moduleLoader, ModuleIdentifier moduleIdentifier)
Parse amodule.xml
file.static ModuleSpec
ModuleXmlParser. parseModuleXml(ModuleXmlParser.ResourceRootFactory factory, MavenResolver mavenResolver, String rootPath, InputStream source, String moduleInfoFile, ModuleLoader moduleLoader, ModuleIdentifier moduleIdentifier)
Parse amodule.xml
file.
-