ReportDownloadResponse response =
new ReportDownloader(session).downloadReport(reportDefinition);
CharSource source = new CharSource() {
@Override
public Reader openStream() throws IOException {
return new InputStreamReader(response.getInputStream());
}
};
ImmutableList<String> report = source.readLines();