return theResponse;
}
@Override
public String handleAutomatically(EnvironmentInterface theEnvironment) {
ProvidesEpisodeSummariesInterface castedEnv = (ProvidesEpisodeSummariesInterface) theEnvironment;
String theLogString = castedEnv.getEpisodeSummary(theStartCharacter, theChunkSize);
EpisodeSummaryChunkResponse theResponse = new EpisodeSummaryChunkResponse(theLogString, theChunkSize);
return theResponse.makeStringResponse();
}