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

@@ -16,7 +16,10 @@ public interface SensorService {
Sensor regist(Sensor sensor, List<MetaDisplayItemMapping> metaDisplayItemMappings) throws OverflowException;
@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
Sensor read(Long id) throws OverflowException;