fixed method

This commit is contained in:
snoop 2017-08-23 11:05:58 +09:00
parent b08e3e3b2a
commit 5eab798ba9

View File

@ -47,6 +47,13 @@ public class InfraService {
return this.infraDAO.findAllByProbeList(probeList);
}
public List<Target> readAllTargetByDomain(Domain domain) {
List<Probe> probeList = this.probeService.readAllByDomain(domain);
return this.infraDAO.findAllTargetByProbeList(probeList);
}
public List<Target> readAllTargetByProbeList(List<Probe> probeList) {
return this.infraDAO.findAllTargetByProbeList(probeList);
// return null;