Package io.quarkus.grpc.auth
Interface AuthExceptionHandlerProvider
-
- All Superinterfaces:
javax.enterprise.inject.spi.Prioritized
- All Known Implementing Classes:
DefaultAuthExceptionHandlerProvider
public interface AuthExceptionHandlerProvider extends javax.enterprise.inject.spi.PrioritizedProvider for AuthExceptionHandler. To use a custom AuthExceptionHandler, extendAuthExceptionHandlerand implement anAuthExceptionHandlerProviderwith priority greater than the default one.
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_PRIORITY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <ReqT,RespT>
AuthExceptionHandler<ReqT,RespT>createHandler(io.grpc.ServerCall.Listener<ReqT> listener, io.grpc.ServerCall<ReqT,RespT> serverCall, io.grpc.Metadata metadata)
-
-
-
Field Detail
-
DEFAULT_PRIORITY
static final int DEFAULT_PRIORITY
- See Also:
- Constant Field Values
-
-
Method Detail
-
createHandler
<ReqT,RespT> AuthExceptionHandler<ReqT,RespT> createHandler(io.grpc.ServerCall.Listener<ReqT> listener, io.grpc.ServerCall<ReqT,RespT> serverCall, io.grpc.Metadata metadata)
-
-