Calendar c = Calendar.getInstance();
long timeTo = c.getTimeInMillis();
c.add(Calendar.DAY_OF_WEEK, -_days);
long timeFrom = c.getTimeInMillis();
StopProblemReportQueryBean query = new StopProblemReportQueryBean();
query.setAgencyId(_agencyId);
query.setTimeFrom(timeFrom);
query.setTimeTo(timeTo);
if (_status != null)
query.setStatus(EProblemReportStatus.valueOf(_status));
ListBean<StopProblemReportBean> result = _transitDataService.getStopProblemReports(query);
List<StopProblemReportBean> reports = result.getList();
_feed = new SyndFeedImpl();