sensor.modify

This commit is contained in:
insanity 2018-07-02 17:12:28 +09:00
parent 626c40ffaa
commit b8b689ea9d
2 changed files with 5 additions and 2 deletions

View File

@ -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.116-SNAPSHOT</version> <version>1.0.117-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -16,7 +16,10 @@ public interface SensorService {
Sensor regist(Sensor sensor, List<MetaDisplayItemMapping> metaDisplayItemMappings) throws OverflowException; Sensor regist(Sensor sensor, List<MetaDisplayItemMapping> metaDisplayItemMappings) throws OverflowException;
@WebappAPI @WebappAPI
Sensor modify(Long sensorID, List<MetaDisplayItemMapping> metaDisplayItemMappings) throws OverflowException; Sensor modify(Sensor sensor) throws OverflowException;
@WebappAPI
Sensor modifyItems(Long sensorID, List<MetaDisplayItemMapping> metaDisplayItemMappings) throws OverflowException;
@WebappAPI @WebappAPI
Sensor read(Long id) throws OverflowException; Sensor read(Long id) throws OverflowException;