ing
This commit is contained in:
parent
481498bd26
commit
5bfd152760
|
@ -16,7 +16,7 @@ public interface MetaSensorDisplayItemService {
|
||||||
MetaSensorDisplayItem regist(MetaSensorDisplayItem item) throws OverflowException;
|
MetaSensorDisplayItem regist(MetaSensorDisplayItem item) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
MetaSensorDisplayItem read(long id) throws OverflowException;
|
MetaSensorDisplayItem read(Long id) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
List<MetaSensorDisplayItem> readAllByCrawler(MetaCrawler crawler) throws OverflowException;
|
List<MetaSensorDisplayItem> readAllByCrawler(MetaCrawler crawler) throws OverflowException;
|
||||||
|
|
|
@ -16,22 +16,22 @@ public interface SensorService {
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Sensor regist(Sensor sensor) throws OverflowException;
|
Sensor regist(Sensor sensor) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Sensor read(String id) throws OverflowException;
|
Sensor read(Long id) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
void remove(String id) throws OverflowException;
|
void remove(Long id) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Sensor start(String id) throws OverflowException;
|
Sensor start(Long id) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Sensor stop(String id) throws OverflowException;
|
Sensor stop(Long id) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Sensor registSensorConfig(Sensor sensor, List<SensorItem> sensorItemList, String etcJson) throws OverflowException;
|
Sensor registSensorConfig(Sensor sensor, List<SensorItem> sensorItemList, String etcJson) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
String generateSensorConfig(Sensor sensor) throws OverflowException;
|
String generateSensorConfig(Sensor sensor) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Page<Sensor> readAllByDomainID(long domainID, PageParams pageParams) throws OverflowException;
|
Page<Sensor> readAllByDomainID(Long domainID, PageParams pageParams) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Page<Sensor> readAllByInfraID(long infraID, PageParams pageParams) throws OverflowException;
|
Page<Sensor> readAllByInfraID(Long infraID, PageParams pageParams) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Page<Sensor> readAllByTargetID(long targetID, PageParams pageParams) throws OverflowException;
|
Page<Sensor> readAllByTargetID(Long targetID, PageParams pageParams) throws OverflowException;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user