probeHostService
This commit is contained in:
parent
c28819be96
commit
31144700b8
|
@ -1,6 +1,9 @@
|
||||||
package com.loafle.overflow.service.central.probe;
|
package com.loafle.overflow.service.central.probe;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import com.loafle.overflow.core.exception.OverflowException;
|
import com.loafle.overflow.core.exception.OverflowException;
|
||||||
|
import com.loafle.overflow.model.domain.Domain;
|
||||||
import com.loafle.overflow.model.probe.Probe;
|
import com.loafle.overflow.model.probe.Probe;
|
||||||
import com.loafle.overflow.model.probe.ProbeHost;
|
import com.loafle.overflow.model.probe.ProbeHost;
|
||||||
|
|
||||||
|
@ -8,8 +11,8 @@ import com.loafle.overflow.model.probe.ProbeHost;
|
||||||
* Created by snoop on 17. 8. 21.
|
* Created by snoop on 17. 8. 21.
|
||||||
*/
|
*/
|
||||||
public interface ProbeHostService {
|
public interface ProbeHostService {
|
||||||
//????
|
ProbeHost read(long id) throws OverflowException;
|
||||||
ProbeHost readByProbe(Probe probe) throws OverflowException;
|
ProbeHost readByProbe(Probe probe) throws OverflowException;
|
||||||
ProbeHost regist(ProbeHost probeHost) throws OverflowException;
|
ProbeHost regist(ProbeHost probeHost) throws OverflowException;
|
||||||
|
List<ProbeHost> readAllByDomain(Domain domain) throws OverflowException;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user