target remove page

This commit is contained in:
geek 2018-06-28 19:51:19 +09:00
parent 2f50479048
commit 1acd7d83ea
4 changed files with 1 additions and 9 deletions

View File

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

View File

@ -17,6 +17,4 @@ public interface MetaCollectionItemService {
@WebappAPI
MetaCollectionItem readByKey(String key) throws OverflowException;
@WebappAPI
MetaCollectionItem readByID(Integer ID) throws OverflowException;
}

View File

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

View File

@ -14,9 +14,6 @@ public interface MetaDisplayItemService {
@WebappAPI
MetaDisplayItem regist(MetaDisplayItem metaDisplayItem) throws OverflowException;
@WebappAPI
MetaDisplayItem read(Long id) throws OverflowException;
@WebappAPI
List<MetaDisplayItem> readAll() throws OverflowException;
}