ing
This commit is contained in:
parent
b0734093ce
commit
05c86fe051
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaCryptoTypeService {
|
||||
@WebappAPI
|
||||
MetaCryptoType regist(MetaCryptoType metaCryptoType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaCryptoType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaCryptoType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaEmailTypeService {
|
||||
@WebappAPI
|
||||
MetaEmailType regist(MetaEmailType metaEmailType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaEmailType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaEmailType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,13 +10,15 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaHistoryTypeService {
|
||||
@WebappAPI
|
||||
MetaHistoryType regist(MetaHistoryType metaHistoryType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaHistoryType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaHistoryType> readAll() throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaHistoryType regist(MetaHistoryType metaHistoryType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaHistoryType> registAll(List<MetaHistoryType> metaHistoryTypes) throws OverflowException;
|
||||
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaIPTypeService {
|
||||
@WebappAPI
|
||||
MetaIPType regist(MetaIPType metaIPType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaIPType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaIPType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaInfraTypeService {
|
||||
@WebappAPI
|
||||
MetaInfraType regist(MetaInfraType metaInfraType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaInfraType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaInfraType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,12 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaInputTypeService {
|
||||
@WebappAPI
|
||||
MetaInputType regist(MetaInputType metaInputType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaInputType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaInputType> readAll() throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -10,6 +10,12 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaMemberStatusService {
|
||||
@WebappAPI
|
||||
MetaMemberStatus regist(MetaMemberStatus metaMemberStatus) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaMemberStatus readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaMemberStatus> readAll() throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -10,6 +10,12 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaNoAuthProbeStatusService {
|
||||
@WebappAPI
|
||||
MetaNoAuthProbeStatus regist(MetaNoAuthProbeStatus metaNoAuthProbeStatus) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaNoAuthProbeStatus readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaNoAuthProbeStatus> readAll() throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaPortTypeService {
|
||||
@WebappAPI
|
||||
MetaPortType regist(MetaPortType metaPortType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaPortType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaPortType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,12 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaProbeStatusService {
|
||||
@WebappAPI
|
||||
MetaProbeStatus regist(MetaProbeStatus metaProbeStatus) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaProbeStatus readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaProbeStatus> readAll() throws OverflowException;
|
||||
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaTargetHostTypeService {
|
||||
@WebappAPI
|
||||
MetaTargetHostType regist(MetaTargetHostType metaTargetHostType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaTargetHostType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaTargetHostType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaTargetServiceTypeService {
|
||||
@WebappAPI
|
||||
MetaTargetServiceType regist(MetaTargetServiceType metaTargetServiceType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaTargetServiceType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaTargetServiceType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaTargetStatusService {
|
||||
@WebappAPI
|
||||
MetaTargetStatus regist(MetaTargetStatus metaTargetStatus) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaTargetStatus readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaTargetStatus> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaTargetTypeCategoryService {
|
||||
@WebappAPI
|
||||
MetaTargetTypeCategory regist(MetaTargetTypeCategory metaTargetTypeCategory) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaTargetTypeCategory readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaTargetTypeCategory> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaTargetTypeService {
|
||||
@WebappAPI
|
||||
MetaTargetType regist(MetaTargetType metaTargetType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaTargetType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaTargetType> readAll() throws OverflowException;
|
||||
|
|
|
@ -10,6 +10,11 @@ import java.util.List;
|
|||
* Created by snoop on 17. 7. 27.
|
||||
*/
|
||||
public interface MetaTargetZoneTypeService {
|
||||
@WebappAPI
|
||||
MetaTargetZoneType regist(MetaTargetZoneType metaTargetZoneType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
MetaTargetZoneType readByKey(String key) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaTargetZoneType> readAll() throws OverflowException;
|
||||
|
|
Loading…
Reference in New Issue
Block a user