diff --git a/pom.xml b/pom.xml index 0818ae5..a2b67d6 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ com.loafle.overflow commons-java jar - 1.0.109-SNAPSHOT + 1.0.110-SNAPSHOT com.loafle.overflow.commons-java diff --git a/src/main/java/com/loafle/overflow/service/central/meta/MetaCollectionItemService.java b/src/main/java/com/loafle/overflow/service/central/meta/MetaCollectionItemService.java index 5fa5bd9..b280e42 100644 --- a/src/main/java/com/loafle/overflow/service/central/meta/MetaCollectionItemService.java +++ b/src/main/java/com/loafle/overflow/service/central/meta/MetaCollectionItemService.java @@ -17,6 +17,4 @@ public interface MetaCollectionItemService { @WebappAPI MetaCollectionItem readByKey(String key) throws OverflowException; - @WebappAPI - MetaCollectionItem readByID(Integer ID) throws OverflowException; } diff --git a/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemMappingService.java b/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemMappingService.java index 33b5462..55ca454 100644 --- a/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemMappingService.java +++ b/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemMappingService.java @@ -19,9 +19,6 @@ public interface MetaDisplayItemMappingService { @WebappAPI List readAllByMetaCrawlerMappingID(Long metaCrawlerMappingID) throws OverflowException; - @WebappAPI - MetaDisplayItemMapping read(Long id) throws OverflowException; - @WebappAPI List readAll() throws OverflowException; } diff --git a/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemService.java b/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemService.java index 83176b8..4b0ed3c 100644 --- a/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemService.java +++ b/src/main/java/com/loafle/overflow/service/central/meta/MetaDisplayItemService.java @@ -14,9 +14,6 @@ public interface MetaDisplayItemService { @WebappAPI MetaDisplayItem regist(MetaDisplayItem metaDisplayItem) throws OverflowException; - @WebappAPI - MetaDisplayItem read(Long id) throws OverflowException; - @WebappAPI List readAll() throws OverflowException; }