return theImage;
}
@Override
public String handleAutomatically(EnvironmentInterface theEnvironment) {
HasImageInterface castedEnv = (HasImageInterface) theEnvironment;
BufferedImage theImage = getImageFromURL(castedEnv.getImageURL());
Response theResponse = new Response(theImage);
return theResponse.makeStringResponse();
}