This commit is contained in:
crusader 2018-05-24 16:45:14 +09:00
parent fc3560404d
commit 4879a204c6

View File

@ -22,10 +22,10 @@ public interface NoAuthProbeService {
void onDisconnect(String tempKey) throws OverflowException; void onDisconnect(String tempKey) throws OverflowException;
@WebappAPI @WebappAPI
List<NoAuthProbe> readAllByDomain(Domain domain) throws OverflowException; List<NoAuthProbe> readAllByDomain(long id) throws OverflowException;
@WebappAPI @WebappAPI
List<NoAuthProbe> acceptNoAuthProbe(NoAuthProbe noAuthProbe) throws OverflowException; List<NoAuthProbe> acceptNoAuthProbe(long id) throws OverflowException;
@WebappAPI @WebappAPI
List<NoAuthProbe> denyNoauthProbe(NoAuthProbe noAuthProbe) throws OverflowException; List<NoAuthProbe> denyNoauthProbe(long id) throws OverflowException;
} }