This commit is contained in:
insanity 2018-06-15 20:44:33 +09:00
parent ad5e6348f2
commit dd628fb7ca
2 changed files with 2 additions and 3 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId>
<packaging>jar</packaging>
<version>1.0.85-SNAPSHOT</version>
<version>1.0.86-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name>
<properties>

View File

@ -2,7 +2,6 @@ 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;
@ -21,5 +20,5 @@ public interface MetaTargetTypeService {
List<MetaTargetType> readAll() throws OverflowException;
@WebappAPI
List<MetaTargetType> readAllByMetaInfraType(MetaInfraType metaInfraType) throws OverflowException;
List<MetaTargetType> readAllByMetaInfraTypeKey(String key) throws OverflowException;
}