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

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.52-SNAPSHOT</version> <version>1.0.53-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

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