org.apache.ivy.plugins.conflict
Interface ConflictManager
- All Known Implementing Classes:
- AbstractConflictManager, FixedConflictManager, LatestConflictManager, NoConflictManager, RegexpConflictManager, StrictConflictManager
public interface ConflictManager
Method Summary |
java.lang.String |
getName()
|
java.util.Collection |
resolveConflicts(IvyNode parent,
java.util.Collection conflicts)
Resolves the eventual conflicts found in the given collection of IvyNode. |
resolveConflicts
java.util.Collection resolveConflicts(IvyNode parent,
java.util.Collection conflicts)
- Resolves the eventual conflicts found in the given collection of IvyNode.
This method return a Collection of IvyNode which have not been evicted.
The given conflicts Collection contains at least one IvyNode.
This method can be called with IvyNodes which are not yet loaded.
If this conflict manager is not able to resolve conflicts with the current
data found in the IvyNodes and need them to be fully loaded, it will
return null to indicate that no conflict resolution has been done.
- Parameters:
parent
- the ivy node parent for which the conflict is to be resolvedconflicts
- the collection of IvyNode to check for conflicts
- Returns:
- a Collection of IvyNode which have not been evicted, or null if
conflict management resolution is not possible yet
getName
java.lang.String getName()