test
This commit is contained in:
parent
26cd6eb889
commit
c95612377e
|
@ -10,5 +10,5 @@ import com.loafle.overflow.model.infra.InfraHostIP;
|
||||||
public interface InfraHostIPService {
|
public interface InfraHostIPService {
|
||||||
InfraHostIP regist(InfraHostIP infraHostIP) throws OverflowException;
|
InfraHostIP regist(InfraHostIP infraHostIP) throws OverflowException;
|
||||||
InfraHostIP read(Long id) 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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,5 +10,4 @@ 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 readByInfraOSIDAndPortAndPortType(Long infraOSID, Integer port, String portType) throws OverflowException;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,4 +10,8 @@ import com.loafle.overflow.model.infra.InfraHost;
|
||||||
public interface InfraHostService {
|
public interface InfraHostService {
|
||||||
InfraHost regist(InfraHost infraHost) throws OverflowException;
|
InfraHost regist(InfraHost infraHost) throws OverflowException;
|
||||||
InfraHost read(Long id) throws OverflowException;
|
InfraHost read(Long id) throws OverflowException;
|
||||||
|
InfraHost readByProbeIdAndInfraHostIPsAddressAndMetaIPTypeKey(
|
||||||
|
String probeID,
|
||||||
|
String address,
|
||||||
|
String ipTypeKey) throws OverflowException;
|
||||||
}
|
}
|
|
@ -9,6 +9,5 @@ import com.loafle.overflow.model.infra.InfraService;
|
||||||
public interface InfraServiceService {
|
public interface InfraServiceService {
|
||||||
|
|
||||||
InfraService regist(InfraService infraService) throws OverflowException;
|
InfraService regist(InfraService infraService) throws OverflowException;
|
||||||
|
|
||||||
InfraService read(Long id) throws OverflowException;
|
InfraService read(Long id) throws OverflowException;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user