This commit is contained in:
insanity 2018-06-08 12:19:34 +09:00
parent 39bc9f08cc
commit ee4fb50580
3 changed files with 9 additions and 2 deletions

View File

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

View File

@ -40,4 +40,8 @@ public interface MemberService {
@WebappAPI
List<Member> readAllByDomainID(final Long domainID) throws OverflowException;
@WebappAPI
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
}

View File

@ -29,6 +29,9 @@ public interface ProbeService {
@ProbeAPI
void onDisconnect(String probeKey) throws OverflowException;
@ProbeAPI
Probe readByProbeKey(String probeKey) throws OverflowException;
Probe increaseTargetCount(Long id) throws OverflowException;
Probe decreaseTargetCount(Long id) throws OverflowException;