Package org.eclipse.aether.collection
Interface DependencyCollectionContext
- All Known Implementing Classes:
DefaultDependencyCollectionContext
public interface DependencyCollectionContext
A context used during dependency collection to update the dependency manager, selector and traverser.
- See Also:
- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
-
Method Summary
Modifier and TypeMethodDescriptionGets the artifact whose children are to be processed next during dependency collection.Gets the dependency whose children are to be processed next during dependency collection.Gets the dependency management information that was contributed by the artifact descriptor of the current dependency.Gets the repository system session during which the dependency collection happens.
-
Method Details
-
getSession
Gets the repository system session during which the dependency collection happens.- Returns:
- The repository system session, never
null
.
-
getArtifact
Gets the artifact whose children are to be processed next during dependency collection. For all nodes but the root, this is simply shorthand forgetDependency().getArtifact()
. In case of the root node however,getDependency()
might benull
while the node still has an artifact which serves as its label and is not to be resolved.- Returns:
- The artifact whose children are going to be processed or
null
in case of the root node without dependency and label.
-
getDependency
Gets the dependency whose children are to be processed next during dependency collection.- Returns:
- The dependency whose children are going to be processed or
null
in case of the root node without dependency.
-
getManagedDependencies
Gets the dependency management information that was contributed by the artifact descriptor of the current dependency.- Returns:
- The dependency management information, never
null
.
-