// get mapped output features
OutputType[] outputTypes = outputBean.getOutputArray();
for (int i = 0; i < outputTypes.length; i++) {
// parse output feature featurePath
List<String> featurePath = parseFeaturePath(outputTypes[i].getFeaturePath());
Output output = ConfigFactory.newOutput(featurePath, outputTypes[i].getOutputAttribute(),
outputTypes[i].getShortDescription(), outputTypes[i].getLongDescription());
// add output feature to the typeMap
typeMap.addOutput(output);
}
}