target remove page

This commit is contained in:
geek 2018-06-21 19:36:13 +09:00
parent a41d0a2319
commit ac7324229c
2 changed files with 3 additions and 6 deletions

View File

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

View File

@ -4,7 +4,6 @@ import java.util.List;
import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.core.model.PageParams;
import com.loafle.overflow.model.discovery.Host;
import com.loafle.overflow.model.discovery.Service;
import com.loafle.overflow.model.discovery.Zone;
@ -12,8 +11,6 @@ import com.loafle.overflow.model.infra.Infra;
import com.loafle.overflow.model.infra.InfraHost;
import com.loafle.overflow.model.infra.InfraZone;
import org.springframework.data.domain.Page;
/**
* Created by insanity on 17. 6. 28.
*/
@ -38,13 +35,13 @@ public interface InfraService {
Infra read(Long id) throws OverflowException;
@WebappAPI
Page<Infra> readAllByProbeID(Long probeID, PageParams pageParams) throws OverflowException;
List<Infra> readAllByProbeID(Long probeID) throws OverflowException;
@WebappAPI
List<Infra> readAllInfraByProbeID(Long probeID) throws OverflowException;
@WebappAPI
Page<Infra> readAllByDomainID(Long domainID, PageParams pageParams) throws OverflowException;
List<Infra> readAllByDomainID(Long domainID) throws OverflowException;
@WebappAPI
List<Infra> readAllInfraByDomainID(Long domainID) throws OverflowException;