This commit is contained in:
insanity 2018-06-10 19:28:41 +09:00
parent 26cd6eb889
commit c95612377e
4 changed files with 6 additions and 4 deletions

View File

@ -10,5 +10,5 @@ import com.loafle.overflow.model.infra.InfraHostIP;
public interface InfraHostIPService {
InfraHostIP regist(InfraHostIP infraHostIP) throws OverflowException;
InfraHostIP read(Long id) throws OverflowException;
InfraHostIP readByInfraOSIDAndPortAndPortType(Long infraOSID, Integer port, String portType) throws OverflowException;
InfraHostIP readByAddressAndMetaIPTypeKey(String address, String ipTypeKey) throws OverflowException;
}

View File

@ -10,5 +10,4 @@ import com.loafle.overflow.model.infra.InfraHostPort;
public interface InfraHostPortService {
InfraHostPort regist(InfraHostPort infraHostPort) throws OverflowException;
InfraHostPort read(Long id) throws OverflowException;
// InfraHostPort readByInfraOSIDAndPortAndPortType(Long infraOSID, Integer port, String portType) throws OverflowException;
}

View File

@ -10,4 +10,8 @@ import com.loafle.overflow.model.infra.InfraHost;
public interface InfraHostService {
InfraHost regist(InfraHost infraHost) throws OverflowException;
InfraHost read(Long id) throws OverflowException;
InfraHost readByProbeIdAndInfraHostIPsAddressAndMetaIPTypeKey(
String probeID,
String address,
String ipTypeKey) throws OverflowException;
}

View File

@ -9,6 +9,5 @@ import com.loafle.overflow.model.infra.InfraService;
public interface InfraServiceService {
InfraService regist(InfraService infraService) throws OverflowException;
InfraService read(Long id) throws OverflowException;
}