public void applyConfiguration( Map<String, String> issueTypes )
throws MojoExecutionException
{
for ( Map.Entry<String, String> me : issueTypes.entrySet() )
{
IssueType type = IssueType.lookupByKey( me.getValue() );
if ( type == null )
{
throw new MojoExecutionException( "Invalid issue action " + me.getValue() );
}
String imsTypes = me.getKey();