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>
|
||||
<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>
|
||||
|
|
|
@ -40,4 +40,8 @@ public interface MemberService {
|
|||
|
||||
@WebappAPI
|
||||
List<Member> readAllByDomainID(final Long domainID) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
||||
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ public interface ProbeService {
|
|||
@WebappAPI
|
||||
Probe read(Long id) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
@WebappAPI
|
||||
Probe modify(Probe probe) throws OverflowException;
|
||||
|
||||
@ProbeAPI
|
||||
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user