noauth fix

This commit is contained in:
insanity
2018-06-14 19:29:38 +09:00
parent f7c1f2ef92
commit 75e3fc8cbd
2 changed files with 3 additions and 3 deletions

View File

@@ -24,10 +24,10 @@ public interface NoAuthProbeService {
List<NoAuthProbe> readAllByDomainID(Long domainID) throws OverflowException;
@WebappAPI
List<NoAuthProbe> acceptNoAuthProbe(Long id, String zoneCIDR) throws OverflowException;
NoAuthProbe acceptNoAuthProbe(Long id, String zoneCIDR) throws OverflowException;
@WebappAPI
List<NoAuthProbe> denyNoauthProbe(Long id) throws OverflowException;
NoAuthProbe denyNoauthProbe(Long id) throws OverflowException;
@ProbeAPI
void onConnect(String tempProbeKey, String connectAddress) throws OverflowException;