MetaTargetTypeService

This commit is contained in:
insanity
2018-06-15 17:02:22 +09:00
parent 91edf25603
commit c4704d6210
2 changed files with 5 additions and 1 deletions

View File

@@ -2,6 +2,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.MetaInfraType;
import com.loafle.overflow.model.meta.MetaTargetType;
import java.util.List;
@@ -18,4 +19,7 @@ public interface MetaTargetTypeService {
@WebappAPI
List<MetaTargetType> readAll() throws OverflowException;
@WebappAPI
List<MetaTargetType> readAllByMetaInfraType(MetaInfraType metaInfraType) throws OverflowException;
}