Interface ConflictResolverFactory
-
- All Known Implementing Classes:
DefaultConflictResolverFactory
public interface ConflictResolverFactoryA factory that produces conflict resolvers of various types.- Since:
- 3.0
- Author:
- Mark Hobson
- See Also:
ConflictResolver
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringROLEThe plexus role for this component.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConflictResolvergetConflictResolver(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
-
-