infraservice methods

This commit is contained in:
insanity
2018-06-12 16:52:35 +09:00
parent a4e4425740
commit 805ce3195a
2 changed files with 7 additions and 1 deletions

View File

@@ -40,9 +40,15 @@ public interface InfraService {
@WebappAPI
Page<Infra> readAllByProbeID(Long probeID, PageParams pageParams) throws OverflowException;
@WebappAPI
List<Infra> readAllInfraByProbeID(Long probeID) throws OverflowException;
@WebappAPI
Page<Infra> readAllByDomainID(Long domainID, PageParams pageParams) throws OverflowException;
@WebappAPI
List<Infra> readAllInfraByDomainID(Long domainID) throws OverflowException;
@WebappAPI
List<InfraZone> readAllInfraZoneByProbeDomainID(Long probeDomainID) throws OverflowException;
}