This commit is contained in:
crusader 2018-06-11 19:43:55 +09:00
parent b7f45f1019
commit 6db328ef6d

View File

@ -9,5 +9,12 @@ import com.loafle.overflow.model.infra.InfraHostPort;
public interface InfraHostPortService { public interface InfraHostPortService {
InfraHostPort regist(InfraHostPort infraHostPort) throws OverflowException; InfraHostPort regist(InfraHostPort infraHostPort) throws OverflowException;
InfraHostPort read(Long id) throws OverflowException; InfraHostPort read(Long id) throws OverflowException;
InfraHostPort readByInfraHostIDAndMetaPortTypeKeyAndPort(Long infraHostID, String metaPortTypeKey, Integer port)
throws OverflowException;
InfraHostPort readByInfraHostInfraZoneIDAndMetaPortTypeKeyAndPort(Long infraHostInfraZoneID, String metaIPTypeKey,
Integer port) throws OverflowException;
} }