This commit is contained in:
crusader 2018-06-05 22:20:39 +09:00
parent 1c06482f54
commit 1240e91b73
3 changed files with 2 additions and 3 deletions

View File

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

View File

@ -3,7 +3,6 @@ package com.loafle.overflow.service.central.notification;
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.member.Member;
import com.loafle.overflow.model.notification.Notification;
import org.springframework.data.domain.Page;

View File

@ -17,5 +17,5 @@ public interface ProbeHostService {
ProbeHost regist(ProbeHost probeHost) throws OverflowException;
@WebappAPI
List<ProbeHost> readAllByDomainID(Long domain) throws OverflowException;
List<ProbeHost> readAllByDomainID(Long domainID) throws OverflowException;
}