This commit is contained in:
crusader 2018-06-10 21:39:58 +09:00
parent b0734093ce
commit 05c86fe051
16 changed files with 84 additions and 3 deletions

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaCryptoTypeService { public interface MetaCryptoTypeService {
@WebappAPI
MetaCryptoType regist(MetaCryptoType metaCryptoType) throws OverflowException;
@WebappAPI
MetaCryptoType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaCryptoType> readAll() throws OverflowException; List<MetaCryptoType> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaEmailTypeService { public interface MetaEmailTypeService {
@WebappAPI
MetaEmailType regist(MetaEmailType metaEmailType) throws OverflowException;
@WebappAPI
MetaEmailType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaEmailType> readAll() throws OverflowException; List<MetaEmailType> readAll() throws OverflowException;

View File

@ -10,13 +10,15 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaHistoryTypeService { public interface MetaHistoryTypeService {
@WebappAPI
MetaHistoryType regist(MetaHistoryType metaHistoryType) throws OverflowException;
@WebappAPI
MetaHistoryType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaHistoryType> readAll() throws OverflowException; List<MetaHistoryType> readAll() throws OverflowException;
@WebappAPI
MetaHistoryType regist(MetaHistoryType metaHistoryType) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaHistoryType> registAll(List<MetaHistoryType> metaHistoryTypes) throws OverflowException; List<MetaHistoryType> registAll(List<MetaHistoryType> metaHistoryTypes) throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaIPTypeService { public interface MetaIPTypeService {
@WebappAPI
MetaIPType regist(MetaIPType metaIPType) throws OverflowException;
@WebappAPI
MetaIPType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaIPType> readAll() throws OverflowException; List<MetaIPType> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaInfraTypeService { public interface MetaInfraTypeService {
@WebappAPI
MetaInfraType regist(MetaInfraType metaInfraType) throws OverflowException;
@WebappAPI
MetaInfraType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaInfraType> readAll() throws OverflowException; List<MetaInfraType> readAll() throws OverflowException;

View File

@ -10,6 +10,12 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaInputTypeService { public interface MetaInputTypeService {
@WebappAPI
MetaInputType regist(MetaInputType metaInputType) throws OverflowException;
@WebappAPI
MetaInputType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaInputType> readAll() throws OverflowException; List<MetaInputType> readAll() throws OverflowException;
} }

View File

@ -10,6 +10,12 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaMemberStatusService { public interface MetaMemberStatusService {
@WebappAPI
MetaMemberStatus regist(MetaMemberStatus metaMemberStatus) throws OverflowException;
@WebappAPI
MetaMemberStatus readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaMemberStatus> readAll() throws OverflowException; List<MetaMemberStatus> readAll() throws OverflowException;
} }

View File

@ -10,6 +10,12 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaNoAuthProbeStatusService { public interface MetaNoAuthProbeStatusService {
@WebappAPI
MetaNoAuthProbeStatus regist(MetaNoAuthProbeStatus metaNoAuthProbeStatus) throws OverflowException;
@WebappAPI
MetaNoAuthProbeStatus readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaNoAuthProbeStatus> readAll() throws OverflowException; List<MetaNoAuthProbeStatus> readAll() throws OverflowException;
} }

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaPortTypeService { public interface MetaPortTypeService {
@WebappAPI
MetaPortType regist(MetaPortType metaPortType) throws OverflowException;
@WebappAPI
MetaPortType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaPortType> readAll() throws OverflowException; List<MetaPortType> readAll() throws OverflowException;

View File

@ -10,6 +10,12 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaProbeStatusService { public interface MetaProbeStatusService {
@WebappAPI
MetaProbeStatus regist(MetaProbeStatus metaProbeStatus) throws OverflowException;
@WebappAPI
MetaProbeStatus readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaProbeStatus> readAll() throws OverflowException; List<MetaProbeStatus> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaTargetHostTypeService { public interface MetaTargetHostTypeService {
@WebappAPI
MetaTargetHostType regist(MetaTargetHostType metaTargetHostType) throws OverflowException;
@WebappAPI
MetaTargetHostType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaTargetHostType> readAll() throws OverflowException; List<MetaTargetHostType> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaTargetServiceTypeService { public interface MetaTargetServiceTypeService {
@WebappAPI
MetaTargetServiceType regist(MetaTargetServiceType metaTargetServiceType) throws OverflowException;
@WebappAPI
MetaTargetServiceType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaTargetServiceType> readAll() throws OverflowException; List<MetaTargetServiceType> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaTargetStatusService { public interface MetaTargetStatusService {
@WebappAPI
MetaTargetStatus regist(MetaTargetStatus metaTargetStatus) throws OverflowException;
@WebappAPI
MetaTargetStatus readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaTargetStatus> readAll() throws OverflowException; List<MetaTargetStatus> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaTargetTypeCategoryService { public interface MetaTargetTypeCategoryService {
@WebappAPI
MetaTargetTypeCategory regist(MetaTargetTypeCategory metaTargetTypeCategory) throws OverflowException;
@WebappAPI
MetaTargetTypeCategory readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaTargetTypeCategory> readAll() throws OverflowException; List<MetaTargetTypeCategory> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaTargetTypeService { public interface MetaTargetTypeService {
@WebappAPI
MetaTargetType regist(MetaTargetType metaTargetType) throws OverflowException;
@WebappAPI
MetaTargetType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaTargetType> readAll() throws OverflowException; List<MetaTargetType> readAll() throws OverflowException;

View File

@ -10,6 +10,11 @@ import java.util.List;
* Created by snoop on 17. 7. 27. * Created by snoop on 17. 7. 27.
*/ */
public interface MetaTargetZoneTypeService { public interface MetaTargetZoneTypeService {
@WebappAPI
MetaTargetZoneType regist(MetaTargetZoneType metaTargetZoneType) throws OverflowException;
@WebappAPI
MetaTargetZoneType readByKey(String key) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaTargetZoneType> readAll() throws OverflowException; List<MetaTargetZoneType> readAll() throws OverflowException;