* @see se.sics.coffee.CoffeeImage#getConfiguration()
*/
public CoffeeConfiguration getConfiguration() {
if (coffeeConfiguration == null) {
try {
coffeeConfiguration = new CoffeeConfiguration(target + ".properties");
} catch (Exception e) {
// Failed to retrieve coffee configuration
throw new IllegalStateException("no Coffee configuration available for platform " + target);
}
}