This commit is contained in:
crusader 2018-06-10 21:14:42 +09:00
parent 1e9653e5ed
commit 3e37a6bbf3
14 changed files with 196 additions and 12 deletions

View File

@ -7,7 +7,7 @@ import java.util.Date;
@Table(name = "META_EMAIL_TYPE", schema = "public")
public class MetaEmailType {
private Integer id;
private Short id;
private String name;
private String key;
private Date createDate;
@ -15,16 +15,16 @@ public class MetaEmailType {
public MetaEmailType() {
}
public MetaEmailType(Integer id) {
public MetaEmailType(Short id) {
this.id = id;
}
@Id
public Integer getId() {
public Short getId() {
return id;
}
public void setId(Integer id) {
public void setId(Short id) {
this.id = id;
}

View File

@ -0,0 +1,16 @@
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 java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaCrawlerMappingService {
@WebappAPI
List<MetaCrawlerMapping> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaCryptoType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaCryptoTypeService {
@WebappAPI
List<MetaCryptoType> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaEmailType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaEmailTypeService {
@WebappAPI
List<MetaEmailType> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaIPType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaIPTypeService {
@WebappAPI
List<MetaIPType> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaPortType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaPortTypeService {
@WebappAPI
List<MetaPortType> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaTargetHostType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaTargetHostTypeService {
@WebappAPI
List<MetaTargetHostType> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaTargetServiceType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaTargetServiceTypeService {
@WebappAPI
List<MetaTargetServiceType> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaTargetStatus;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaTargetStatusService {
@WebappAPI
List<MetaTargetStatus> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaTargetTypeCategoryMapping;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaTargetTypeCategoryMappingService {
@WebappAPI
List<MetaTargetTypeCategoryMapping> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaTargetTypeCategory;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaTargetTypeCategoryService {
@WebappAPI
List<MetaTargetTypeCategory> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaTargetType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaTargetTypeService {
@WebappAPI
List<MetaTargetType> readAll() throws OverflowException;
}

View File

@ -0,0 +1,16 @@
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.MetaTargetZoneType;
import java.util.List;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaTargetZoneTypeService {
@WebappAPI
List<MetaTargetZoneType> readAll() throws OverflowException;
}

View File

@ -1,8 +0,0 @@
package com.loafle.overflow.service.central.meta;
/**
* Created by snoop on 17. 7. 27.
*/
public interface MetaVendorCrawlerSensorItemService {
}