diff --git a/pom.xml b/pom.xml index 206b1e0..5269c4e 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ com.loafle.overflow commons-java jar - 1.0.92-SNAPSHOT + 1.0.93-SNAPSHOT com.loafle.overflow.commons-java diff --git a/src/main/java/com/loafle/overflow/service/central/target/TargetService.java b/src/main/java/com/loafle/overflow/service/central/target/TargetService.java index a0d8763..c26ea0e 100644 --- a/src/main/java/com/loafle/overflow/service/central/target/TargetService.java +++ b/src/main/java/com/loafle/overflow/service/central/target/TargetService.java @@ -14,7 +14,7 @@ public interface TargetService { Target regist(Target target, Long probeID) throws OverflowException; @WebappAPI - List registAll(List targets, Long probeID) throws OverflowException; + List registAll(List infraIDs, Long probeID) throws OverflowException; @WebappAPI void remove(Long id, Long probeID) throws OverflowException; @@ -28,9 +28,6 @@ public interface TargetService { @WebappAPI List readAllByProbeID(Long probeID) throws OverflowException; - @WebappAPI - List readAllTargetByProbeID(Long probeID) throws OverflowException; - Target increaseSensorCount(Long id) throws OverflowException; Target decreaseSensorCount(Long id) throws OverflowException;