From 4879a204c65981f61fc9aa100ca6073d741f2125 Mon Sep 17 00:00:00 2001 From: crusader Date: Thu, 24 May 2018 16:45:14 +0900 Subject: [PATCH] ing --- .../service/central/noauthprobe/NoAuthProbeService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 49bc545..f929943 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 @@ -22,10 +22,10 @@ public interface NoAuthProbeService { void onDisconnect(String tempKey) throws OverflowException; @WebappAPI - List readAllByDomain(Domain domain) throws OverflowException; + List readAllByDomain(long id) throws OverflowException; @WebappAPI - List acceptNoAuthProbe(NoAuthProbe noAuthProbe) throws OverflowException; + List acceptNoAuthProbe(long id) throws OverflowException; @WebappAPI - List denyNoauthProbe(NoAuthProbe noAuthProbe) throws OverflowException; + List denyNoauthProbe(long id) throws OverflowException; }