target remove page
This commit is contained in:
parent
26fa876b27
commit
1e580fe033
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
|||
<groupId>com.loafle.overflow</groupId>
|
||||
<artifactId>commons-java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0.106-SNAPSHOT</version>
|
||||
<version>1.0.107-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -1,4 +1,19 @@
|
|||
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 {
|
||||
|
||||
@WebappAPI
|
||||
List<MetaCollectionItemMapping> readAll() throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaCollectionItemMapping> readAllByMetaDisplayItemMappingID(Long metaDisplayItemMappingID) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaCollectionItemMapping> readAllByMetaCollectionItemID(Long metaCollectionItemID) throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -14,4 +14,9 @@ public interface MetaCollectionItemService {
|
|||
@WebappAPI
|
||||
List<MetaCollectionItem> readAll() throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaCollectionItem readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaCollectionItem readByID(Integer ID) throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
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 {
|
||||
|
||||
@WebappAPI
|
||||
MetaCrawlerContainer regist(MetaCrawlerContainer metaCrawlerContainer) throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ 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;
|
||||
|
||||
|
@ -13,4 +14,13 @@ public interface MetaCrawlerMappingService {
|
|||
|
||||
@WebappAPI
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -4,10 +4,24 @@ import com.loafle.overflow.core.annotation.WebappAPI;
|
|||
import com.loafle.overflow.core.exception.OverflowException;
|
||||
import com.loafle.overflow.model.meta.MetaDisplayItemMapping;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by snoop on 18. 4. 24.
|
||||
*/
|
||||
public interface MetaDisplayItemMappingService {
|
||||
@WebappAPI
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -4,6 +4,8 @@ import com.loafle.overflow.core.annotation.WebappAPI;
|
|||
import com.loafle.overflow.core.exception.OverflowException;
|
||||
import com.loafle.overflow.model.meta.MetaDisplayItem;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by insanity on 17. 9. 20.
|
||||
*/
|
||||
|
@ -14,4 +16,7 @@ public interface MetaDisplayItemService {
|
|||
|
||||
@WebappAPI
|
||||
MetaDisplayItem read(Long id) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaDisplayItem> readAll() throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -11,4 +11,11 @@ public interface MetaItemUnitService {
|
|||
|
||||
@WebappAPI
|
||||
MetaItemUnit regist(MetaItemUnit metaItemUnit) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaItemUnit read(Short ID) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaItemUnit readByKey(String key) throws OverflowException;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user