public interface DependencySelector
Note: Implementations must be stateless.
Warning: This hook is called from a hot spot and therefore implementations should pay attention to
performance. Among others, implementations should provide a semantic equals()
method.
Modifier and Type | Method and Description |
---|---|
DependencySelector |
deriveChildSelector(DependencyCollectionContext context)
Derives a dependency selector for the specified collection context.
|
boolean |
selectDependency(Dependency dependency)
Decides whether the specified dependency should be included in the dependency graph.
|
boolean selectDependency(Dependency dependency)
dependency
- The dependency to check, must not be null
.false
if the dependency should be excluded from the children of the current node, true
otherwise.DependencySelector deriveChildSelector(DependencyCollectionContext context)
context
- The dependency collection context, must not be null
.null
if dependencies should be unconditionally
included in the sub graph.Copyright © 2010–2017 The Apache Software Foundation. All rights reserved.