/**
  * display ReportRecord entity to stdout.
  *
  * @param reportRecord ReportRecord entity for display.
  */
 private static void displayReportRecord(ReportRecord reportRecord) {
   System.out.println("accountId = " + reportRecord.getAccountId());
   System.out.println("reportId = " + reportRecord.getReportId());
   System.out.println("reportJobId = " + reportRecord.getReportJobId());
   System.out.println("reportName = " + reportRecord.getReportName());
   System.out.println("requestTime = " + reportRecord.getRequestTime());
   System.out.println("status = " + reportRecord.getStatus());
   System.out.println("---------");
 }