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

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.65-SNAPSHOT</version> <version>1.0.66-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

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