Uses of Class
org.jboss.as.server.deployment.module.ModuleDependency
Packages that use ModuleDependency
Package
Description
The JBossAS domain deployment subsystem classes.
-
Uses of ModuleDependency in org.jboss.as.server.deployment
Fields in org.jboss.as.server.deployment with type parameters of type ModuleDependencyModifier and TypeFieldDescriptionstatic final AttachmentKey<AttachmentList<ModuleDependency>>Attachments.MANIFEST_DEPENDENCIES -
Uses of ModuleDependency in org.jboss.as.server.deployment.module
Methods in org.jboss.as.server.deployment.module that return ModuleDependencyModifier and TypeMethodDescriptionModuleDependency.Builder.build()Build aModuleDependencyusing this builder's settings.Methods in org.jboss.as.server.deployment.module that return types with arguments of type ModuleDependencyModifier and TypeMethodDescriptionModuleSpecification.getAllDependencies()ModuleSpecification.getLocalDependenciesSet()Local dependencies are dependencies on other parts of the deployment, such as a class-path entryModuleSpecification.getSystemDependenciesSet()System dependencies are dependencies that are added automatically by the container.ModuleSpecification.getUserDependenciesSet()User dependencies are dependencies that the user has specifically added, either via jboss-deployment-structure.xml or via the manifest.Methods in org.jboss.as.server.deployment.module with parameters of type ModuleDependencyModifier and TypeMethodDescriptionvoidModuleSpecification.addLocalDependency(ModuleDependency dependency) voidModuleSpecification.addSystemDependency(ModuleDependency dependency) voidModuleSpecification.addUserDependency(ModuleDependency dependency) Method parameters in org.jboss.as.server.deployment.module with type arguments of type ModuleDependencyModifier and TypeMethodDescriptionvoidModuleSpecification.addLocalDependencies(Collection<ModuleDependency> dependencies) voidModuleSpecification.addSystemDependencies(Collection<ModuleDependency> dependencies) voidModuleSpecification.addUserDependencies(Collection<ModuleDependency> dependencies) static voidModuleAliasChecker.checkModuleAliasesForDependencies(List<ModuleDependency> dependencies, ModuleAliasChecker.MessageContext context, String deploymentName) Check whether the identifier passed as an argument represents an Alias and if so, log a warning describing that the alias can be replaced with its target module.voidModuleSpecification.removeUserDependencies(Predicate<ModuleDependency> predicate) Remove user dependencies that match the predicate. -
Uses of ModuleDependency in org.jboss.as.server.moduleservice
Methods in org.jboss.as.server.moduleservice that return types with arguments of type ModuleDependencyModifier and TypeMethodDescriptionModuleDefinition.getDependencies()ModuleLoadService.getLocalDependencies()ModuleLoadService.getSystemDependencies()ModuleLoadService.getUserDependencies()Method parameters in org.jboss.as.server.moduleservice with type arguments of type ModuleDependencyModifier and TypeMethodDescriptionstatic org.jboss.msc.service.ServiceNameModuleLoadService.install(org.jboss.msc.service.ServiceTarget target, String identifier, Collection<ModuleDependency> systemDependencies, Collection<ModuleDependency> localDependencies, Collection<ModuleDependency> userDependencies) Installs a ModuleLoadService that will load the module with the given identifier and its dependencies.Constructor parameters in org.jboss.as.server.moduleservice with type arguments of type ModuleDependencyModifierConstructorDescriptionModuleDefinition(String moduleIdentifier, Set<ModuleDependency> dependencies, org.jboss.modules.ModuleSpec moduleSpec) ModuleDefinition(org.jboss.modules.ModuleIdentifier moduleIdentifier, Set<ModuleDependency> dependencies, org.jboss.modules.ModuleSpec moduleSpec) Deprecated, for removal: This API element is subject to removal in a future version.
ModuleDefinition(String, Set, ModuleSpec)