target remove page

This commit is contained in:
geek 2018-06-28 17:09:55 +09:00
parent 26fa876b27
commit 1e580fe033
8 changed files with 63 additions and 1 deletions

View File

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

View File

@ -1,4 +1,19 @@
package com.loafle.overflow.service.central.meta; 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.MetaCollectionItemMapping;
import java.util.List;
public interface MetaCollectionItemMappingService { public interface MetaCollectionItemMappingService {
@WebappAPI
List<MetaCollectionItemMapping> readAll() throws OverflowException;
@WebappAPI
List<MetaCollectionItemMapping> readAllByMetaDisplayItemMappingID(Long metaDisplayItemMappingID) throws OverflowException;
@WebappAPI
List<MetaCollectionItemMapping> readAllByMetaCollectionItemID(Long metaCollectionItemID) throws OverflowException;
} }

View File

@ -14,4 +14,9 @@ public interface MetaCollectionItemService {
@WebappAPI @WebappAPI
List<MetaCollectionItem> readAll() throws OverflowException; List<MetaCollectionItem> readAll() throws OverflowException;
@WebappAPI
MetaCollectionItem readByKey(String key) throws OverflowException;
@WebappAPI
MetaCollectionItem readByID(Integer ID) throws OverflowException;
} }

View File

@ -1,5 +1,11 @@
package com.loafle.overflow.service.central.meta; 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.MetaCrawlerContainer;
public interface MetaCrawlerContainerService { public interface MetaCrawlerContainerService {
@WebappAPI
MetaCrawlerContainer regist(MetaCrawlerContainer metaCrawlerContainer) throws OverflowException;
} }

View File

@ -3,6 +3,7 @@ package com.loafle.overflow.service.central.meta;
import com.loafle.overflow.core.annotation.WebappAPI; import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException; import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.model.meta.MetaCrawlerMapping; import com.loafle.overflow.model.meta.MetaCrawlerMapping;
import com.loafle.overflow.model.meta.MetaTargetType;
import java.util.List; import java.util.List;
@ -13,4 +14,13 @@ public interface MetaCrawlerMappingService {
@WebappAPI @WebappAPI
List<MetaCrawlerMapping> readAll() throws OverflowException; List<MetaCrawlerMapping> readAll() throws OverflowException;
@WebappAPI
List<MetaCrawlerMapping> readAllByMetaTargetTypeID(Integer targetTypeID) throws OverflowException;
@WebappAPI
List<MetaCrawlerMapping> readAllByMetaTargetTypeKey(String targetTypeKey) throws OverflowException;
@WebappAPI
MetaCrawlerMapping regist() throws OverflowException;
} }

View File

@ -4,10 +4,24 @@ import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException; import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.model.meta.MetaDisplayItemMapping; import com.loafle.overflow.model.meta.MetaDisplayItemMapping;
import java.util.List;
/** /**
* Created by snoop on 18. 4. 24. * Created by snoop on 18. 4. 24.
*/ */
public interface MetaDisplayItemMappingService { public interface MetaDisplayItemMappingService {
@WebappAPI @WebappAPI
MetaDisplayItemMapping regist(MetaDisplayItemMapping metaDisplayItemMapping) throws OverflowException; MetaDisplayItemMapping regist(MetaDisplayItemMapping metaDisplayItemMapping) throws OverflowException;
@WebappAPI
List<MetaDisplayItemMapping> readAllByMetaDisplayItemID(Long metaDisplayItemID) throws OverflowException;
@WebappAPI
List<MetaDisplayItemMapping> readAllByMetaCrawlerMappingID(Long metaCrawlerMappingID) throws OverflowException;
@WebappAPI
MetaDisplayItemMapping read(Long ID) throws OverflowException;
@WebappAPI
List<MetaDisplayItemMapping> readAll() throws OverflowException;
} }

View File

@ -4,6 +4,8 @@ import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException; import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.model.meta.MetaDisplayItem; import com.loafle.overflow.model.meta.MetaDisplayItem;
import java.util.List;
/** /**
* Created by insanity on 17. 9. 20. * Created by insanity on 17. 9. 20.
*/ */
@ -14,4 +16,7 @@ public interface MetaDisplayItemService {
@WebappAPI @WebappAPI
MetaDisplayItem read(Long id) throws OverflowException; MetaDisplayItem read(Long id) throws OverflowException;
@WebappAPI
List<MetaDisplayItem> readAll() throws OverflowException;
} }

View File

@ -11,4 +11,11 @@ public interface MetaItemUnitService {
@WebappAPI @WebappAPI
MetaItemUnit regist(MetaItemUnit metaItemUnit) throws OverflowException; MetaItemUnit regist(MetaItemUnit metaItemUnit) throws OverflowException;
@WebappAPI
MetaItemUnit read(Short ID) throws OverflowException;
@WebappAPI
MetaItemUnit readByKey(String key) throws OverflowException;
} }