// if we get here, this is a valid installation for this
// creationProto/execHost pair
NameValuePair[] nameValuePairList =
executionEnv.getNameValuePair();
for (int l = 0; l < nameValuePairList.length; l++) {
NameValuePair nameValuePair = nameValuePairList[l];
String nameOfVariable = nameValuePair.getName();
String value = nameValuePair.getValue();
componentEnv.putString(nameOfVariable, value);
}
// found an installation, break here
found = true;