public void initialize()
throws InitializationException
{
this.typesValues = new HashMap<String, ExecutorConfigurator>();
this.typesValues.put( InstallationService.ANT_TYPE,
new ExecutorConfigurator( "ant", "bin", "ANT_HOME", "-version" ) );
this.typesValues.put( InstallationService.ENVVAR_TYPE, null );
this.typesValues.put( InstallationService.JDK_TYPE,
new ExecutorConfigurator( "java", "bin", "JAVA_HOME", "-version" ) );
this.typesValues.put( InstallationService.MAVEN1_TYPE,
new ExecutorConfigurator( "maven", "bin", "MAVEN_HOME", "-v" ) );
this.typesValues.put( InstallationService.MAVEN2_TYPE,
new ExecutorConfigurator( "mvn", "bin", "M2_HOME", "-v" ) );
}