Deprecate method

This commit is contained in:
hongqiaowei
2021-10-13 16:13:19 +08:00
parent 815ad7a32c
commit 458e614f29
2 changed files with 2 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ public abstract class AbstractCustomAuth implements CustomAuth {
/**
* @deprecated
*/
@Deprecated
@Override
public Mono<ApiConfigService.Access> auth(ServerWebExchange exchange, String appId, String ip, String timestamp, String sign, App fizzAppConfig) {
throw Utils.runtimeExceptionWithoutStack("don't implement me!");

View File

@@ -33,5 +33,6 @@ public interface CustomAuth {
*
* @deprecated
*/
@Deprecated
Mono<ApiConfigService.Access> auth(ServerWebExchange exchange, String appId, String ip, String timestamp, String sign, App fizzAppConfig);
}