Class SimpleOptionalitySelector
java.lang.Object
org.eclipse.aether.util.graph.transformer.ConflictResolver.OptionalitySelector
org.eclipse.aether.util.graph.transformer.SimpleOptionalitySelector
An optionality selector for use with 
ConflictResolver. In general, this selector only marks a dependency as
 optional if all its occurrences are optional. If however a direct dependency is involved, its optional flag is
 selected.- 
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of this optionality selector. - 
Method Summary
Modifier and TypeMethodDescriptionvoidDetermines the effective optional flag of the dependency given byConflictResolver.ConflictContext.getWinner().Methods inherited from class org.eclipse.aether.util.graph.transformer.ConflictResolver.OptionalitySelector
getInstance 
- 
Constructor Details
- 
SimpleOptionalitySelector
public SimpleOptionalitySelector()Creates a new instance of this optionality selector. 
 - 
 - 
Method Details
- 
selectOptionality
Description copied from class:ConflictResolver.OptionalitySelectorDetermines the effective optional flag of the dependency given byConflictResolver.ConflictContext.getWinner(). Implementations will usually iterateConflictResolver.ConflictContext.getItems(), inspectConflictResolver.ConflictItem.getOptionalities()and eventually callConflictResolver.ConflictContext.setOptional(Boolean)to deliver the effective optional flag.- Specified by:
 selectOptionalityin classConflictResolver.OptionalitySelector- Parameters:
 context- the conflict context, must not benull- Throws:
 RepositoryException- if the optionality selection failed
 
 -