Package org.eclipse.aether.collection
Interface CollectStepData
-
public interface CollectStepData
A trace data object revealing collect step (while executingCollectRequest.- Since:
- 1.8.1
- See Also:
RequestTrace- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContext()Returns the context of collection.DependencygetNode()Returns the current node being collected.java.util.List<DependencyNode>getPath()Returns the path of dependency nodes that led collector to current node returned bygetNode().
-
-
-
Method Detail
-
getContext
java.lang.String getContext()
Returns the context of collection. Nevernull.
-
getPath
java.util.List<DependencyNode> getPath()
Returns the path of dependency nodes that led collector to current node returned bygetNode(). Nevernull.
-
getNode
Dependency getNode()
Returns the current node being collected. Nevernull.
-
-