Interface SslCommonNamesProvider
-
- All Known Implementing Classes:
RpcAclsCommonNamesProvider
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SslCommonNamesProvider
A provider of the SSL common names that should be accepted bySslAuthorizer
.get()
will be called on every request, so any changes to the names provided will be reflected in real time.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.lang.String>
get()
The SSL common names (does not include 'CN=').
-