in src/main/java/org/apache/archiva/redback/components/springutils/ComponentContainer.java [137:145]
public <T> boolean hasComponent( Class<T> clazz, String hint )
{
Map<String, T> beansOfType = buildMapWithRole( clazz );
if ( beansOfType == null || beansOfType.isEmpty() )
{
return false;
}
return beansOfType.containsKey( hint );
}