targetService

This commit is contained in:
insanity 2018-06-21 21:33:55 +09:00
parent ac7324229c
commit 5e9c10a868
2 changed files with 2 additions and 5 deletions

View File

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

View File

@ -14,7 +14,7 @@ public interface TargetService {
Target regist(Target target, Long probeID) throws OverflowException;
@WebappAPI
List<Target> registAll(List<Target> targets, Long probeID) throws OverflowException;
List<Target> registAll(List<Long> infraIDs, Long probeID) throws OverflowException;
@WebappAPI
void remove(Long id, Long probeID) throws OverflowException;
@ -28,9 +28,6 @@ public interface TargetService {
@WebappAPI
List<Target> readAllByProbeID(Long probeID) throws OverflowException;
@WebappAPI
List<Target> readAllTargetByProbeID(Long probeID) throws OverflowException;
Target increaseSensorCount(Long id) throws OverflowException;
Target decreaseSensorCount(Long id) throws OverflowException;