Package org.eclipse.aether.resolution
Class DependencyRequest
java.lang.Object
org.eclipse.aether.resolution.DependencyRequest
A request to resolve transitive dependencies. This request can either be supplied with a 
CollectRequest to
 calculate the transitive dependencies or with an already resolved dependency graph.- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreates an uninitialized request.DependencyRequest(CollectRequest request, DependencyFilter filter) Creates a request for the specified collect request and with the given resolution filter.DependencyRequest(DependencyNode node, DependencyFilter filter) Creates a request for the specified dependency graph and with the given resolution filter.
- 
Method SummaryModifier and TypeMethodDescriptionGets the collect request used to calculate the dependency graph whose artifacts should be resolved.Gets the resolution filter used to select which artifacts of the dependency graph should be resolved.getRoot()Gets the root node of the dependency graph whose artifacts should be resolved.getTrace()Gets the trace information that describes the higher level request/operation in which this request is issued.setCollectRequest(CollectRequest collectRequest) Sets the collect request used to calculate the dependency graph whose artifacts should be resolved.setFilter(DependencyFilter filter) Sets the resolution filter used to select which artifacts of the dependency graph should be resolved.setRoot(DependencyNode root) Sets the root node of the dependency graph whose artifacts should be resolved.setTrace(RequestTrace trace) Sets the trace information that describes the higher level request/operation in which this request is issued.toString()
- 
Constructor Details- 
DependencyRequestpublic DependencyRequest()Creates an uninitialized request. Note that eithersetRoot(DependencyNode)orsetCollectRequest(CollectRequest)must eventually be called to create a valid request.
- 
DependencyRequestCreates a request for the specified dependency graph and with the given resolution filter.- Parameters:
- node- The root node of the dependency graph whose artifacts should be resolved, may be- null.
- filter- The resolution filter to use, may be- null.
 
- 
DependencyRequestCreates a request for the specified collect request and with the given resolution filter.- Parameters:
- request- The collect request used to calculate the dependency graph whose artifacts should be resolved, may be- null.
- filter- The resolution filter to use, may be- null.
 
 
- 
- 
Method Details- 
getRootGets the root node of the dependency graph whose artifacts should be resolved.- Returns:
- The root node of the dependency graph or nullif none.
 
- 
setRootSets the root node of the dependency graph whose artifacts should be resolved. When this request is processed, the nodes of the given dependency graph will be updated to refer to the resolved artifacts. Eventually, eithersetRoot(DependencyNode)orsetCollectRequest(CollectRequest)must be called to create a valid request.- Parameters:
- root- The root node of the dependency graph, may be- null.
- Returns:
- This request for chaining, never null.
 
- 
getCollectRequestGets the collect request used to calculate the dependency graph whose artifacts should be resolved.- Returns:
- The collect request or nullif none.
 
- 
setCollectRequestSets the collect request used to calculate the dependency graph whose artifacts should be resolved. Eventually, eithersetRoot(DependencyNode)orsetCollectRequest(CollectRequest)must be called to create a valid request. If this request is supplied with a dependency node viasetRoot(DependencyNode), the collect request is ignored.- Parameters:
- collectRequest- The collect request, may be- null.
- Returns:
- This request for chaining, never null.
 
- 
getFilterGets the resolution filter used to select which artifacts of the dependency graph should be resolved.- Returns:
- The resolution filter or nullto resolve all artifacts of the dependency graph.
 
- 
setFilterSets the resolution filter used to select which artifacts of the dependency graph should be resolved. For example, use this filter to restrict resolution to dependencies of a certain scope.- Parameters:
- filter- The resolution filter, may be- nullto resolve all artifacts of the dependency graph.
- Returns:
- This request for chaining, never null.
 
- 
getTraceGets the trace information that describes the higher level request/operation in which this request is issued.- Returns:
- The trace information about the higher level operation or nullif none.
 
- 
setTraceSets the trace information that describes the higher level request/operation in which this request is issued.- Parameters:
- trace- The trace information about the higher level operation, may be- null.
- Returns:
- This request for chaining, never null.
 
- 
toString
 
-