Skip to content

Commit

Permalink
authz: Add missing ExperimentalApi annotation
Browse files Browse the repository at this point in the history
It was missed in b43ddc2
  • Loading branch information
ejona86 authored Apr 20, 2023
1 parent c35870b commit 8054b20
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import static com.google.common.base.Preconditions.checkNotNull;
import static java.nio.charset.StandardCharsets.UTF_8;

import io.grpc.ExperimentalApi;
import io.grpc.Metadata;
import io.grpc.ServerCall;
import io.grpc.ServerCallHandler;
Expand All @@ -38,6 +39,7 @@
* The class will get <a href="https://github.com/grpc/proposal/blob/master/A43-grpc-authorization-api.md#user-facing-authorization-policy">
* gRPC Authorization policy</a> from a JSON file during initialization.
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/9746")
public final class FileWatcherAuthorizationServerInterceptor implements ServerInterceptor {
private static final Logger logger =
Logger.getLogger(FileWatcherAuthorizationServerInterceptor.class.getName());
Expand Down

0 comments on commit 8054b20

Please sign in to comment.