test
This commit is contained in:
parent
39bc9f08cc
commit
ee4fb50580
2
pom.xml
2
pom.xml
|
@ -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.17-SNAPSHOT</version>
|
<version>1.0.18-SNAPSHOT</version>
|
||||||
<name>com.loafle.overflow.commons-java</name>
|
<name>com.loafle.overflow.commons-java</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -40,4 +40,8 @@ public interface MemberService {
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
List<Member> readAllByDomainID(final Long domainID) throws OverflowException;
|
List<Member> readAllByDomainID(final Long domainID) throws OverflowException;
|
||||||
|
|
||||||
|
@WebappAPI
|
||||||
|
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ public interface ProbeService {
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Probe read(Long id) throws OverflowException;
|
Probe read(Long id) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Probe modify(Probe probe) throws OverflowException;
|
Probe modify(Probe probe) throws OverflowException;
|
||||||
|
|
||||||
@ProbeAPI
|
@ProbeAPI
|
||||||
|
@ -29,6 +29,9 @@ public interface ProbeService {
|
||||||
@ProbeAPI
|
@ProbeAPI
|
||||||
void onDisconnect(String probeKey) throws OverflowException;
|
void onDisconnect(String probeKey) throws OverflowException;
|
||||||
|
|
||||||
|
@ProbeAPI
|
||||||
|
Probe readByProbeKey(String probeKey) throws OverflowException;
|
||||||
|
|
||||||
Probe increaseTargetCount(Long id) throws OverflowException;
|
Probe increaseTargetCount(Long id) throws OverflowException;
|
||||||
|
|
||||||
Probe decreaseTargetCount(Long id) throws OverflowException;
|
Probe decreaseTargetCount(Long id) throws OverflowException;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user