fixed method
This commit is contained in:
parent
b08e3e3b2a
commit
5eab798ba9
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user