some minor stuffs

This commit is contained in:
insanity 2018-06-28 17:41:39 +09:00
parent c46cd41c3f
commit 2f50479048
4 changed files with 9 additions and 4 deletions

View File

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

View File

@ -3,7 +3,6 @@ package com.loafle.overflow.service.central.meta;
import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.model.meta.MetaCrawlerMapping;
import com.loafle.overflow.model.meta.MetaTargetType;
import java.util.List;

View File

@ -20,8 +20,8 @@ public interface MetaDisplayItemMappingService {
List<MetaDisplayItemMapping> readAllByMetaCrawlerMappingID(Long metaCrawlerMappingID) throws OverflowException;
@WebappAPI
MetaDisplayItemMapping read(Long ID) throws OverflowException;
MetaDisplayItemMapping read(Long id) throws OverflowException;
@WebappAPI
List<MetaDisplayItemMapping> readAll() throws OverflowException;
}

View File

@ -14,4 +14,10 @@ public interface MetaSensorStatusService {
@WebappAPI
List<MetaSensorStatus> readAll() throws OverflowException;
@WebappAPI
MetaSensorStatus regist(MetaSensorStatus metaSensorStatus) throws OverflowException;
@WebappAPI
MetaSensorStatus readByKey(String key) throws OverflowException;
}