private ExecutionYear readExecutionYear(String year) {

    final ExecutionYear executionYear;
    if (year == null || year.equals("")) {
      executionYear = ExecutionYear.readCurrentExecutionYear();
    } else {
      executionYear = ExecutionYear.readExecutionYearByName(year);
    }
    return executionYear;
  }