probeservice

This commit is contained in:
insanity 2018-05-02 12:40:09 +09:00
parent 96b7a30f26
commit ea7d650ac7

View File

@ -21,9 +21,12 @@ public interface ProbeService {
List<Probe> readAllByDomain(Domain domain) throws OverflowException; List<Probe> readAllByDomain(Domain domain) throws OverflowException;
@WebappAPI @WebappAPI
Probe read(long id) throws OverflowException; Probe read(long id) throws OverflowException;
@WebappAPI
Probe modifyDisplayName(long probeId, String displayName) throws OverflowException;
@ProbeAPI //? @ProbeAPI //?
Probe readByProbeKey(String probeKey) throws OverflowException; Probe readByProbeKey(String probeKey) throws OverflowException;
@ProbeAPI //? @ProbeAPI //?
Probe modify(Probe probe) throws OverflowException; Probe modify(Probe probe) throws OverflowException;
} }