@SuppressWarnings("unchecked") public ReportSeedVoCollection getReportSeeds(ReportVo reportVo) { DomainFactory factory = getDomainFactory(); ReportBo rep = (ReportBo)factory.getDomainObject(ReportBo.class, reportVo.getID_ReportBo()); if (rep != null) { Set seeds = rep.getSeeds(); return ReportSeedVoAssembler.createReportSeedVoCollectionFromReportSeedBo(seeds); } return null; }
public ReportSeedVoCollection getReportSeeds(ReportVo reportVo) { FormReports formReportsImpl = (FormReports)getDomainImpl(FormReportsImpl.class); return formReportsImpl.getReportSeeds(reportVo); }