Interface ConflictResolverFactory
-
- All Known Implementing Classes:
DefaultConflictResolverFactory
public interface ConflictResolverFactory
A factory that produces conflict resolvers of various types.- Since:
- 3.0
- See Also:
ConflictResolver
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ROLE
The plexus role for this component.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConflictResolver
getConflictResolver(java.lang.String type)
Gets a conflict resolver of the specified type.
-
-
-
Method Detail
-
getConflictResolver
ConflictResolver getConflictResolver(java.lang.String type) throws ConflictResolverNotFoundException
Gets a conflict resolver of the specified type.- Parameters:
type
- the type of conflict resolver to obtain- Returns:
- the conflict resolver
- Throws:
ConflictResolverNotFoundException
- if the specified type was not found
-
-