From b3889f309a747cc84dae5ad4b89e301cea33501f Mon Sep 17 00:00:00 2001 From: crusader Date: Tue, 12 Jun 2018 21:04:49 +0900 Subject: [PATCH] ing --- .../central/noauthprobe/NoAuthProbeService.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java b/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java index 00823c4..77da543 100644 --- a/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java +++ b/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java @@ -15,13 +15,7 @@ public interface NoAuthProbeService { NoAuthProbe regist(NoAuthProbe noAuthProbe) throws OverflowException; @ProbeAPI - NoAuthProbe readByTempProbeKey(String tempKey) throws OverflowException; - - @ProbeAPI - void onConnect(String tempKey, String connectAddress) throws OverflowException; - - @ProbeAPI - void onDisconnect(String tempKey) throws OverflowException; + NoAuthProbe readByTempProbeKey(String tempProbeKey) throws OverflowException; @WebappAPI List readAllByDomainID(Long id) throws OverflowException; @@ -32,4 +26,10 @@ public interface NoAuthProbeService { @WebappAPI List denyNoauthProbe(Long id) throws OverflowException; + @ProbeAPI + void onConnect(String tempProbeKey, String connectAddress) throws OverflowException; + + @ProbeAPI + void onDisconnect(String tempProbeKey) throws OverflowException; + }