CompositeAuthenticator constructor

CompositeAuthenticator(
  1. List<Authenticator> delegates
)

Creates a composite over delegates (tried in order).

Implementation

CompositeAuthenticator(List<Authenticator> delegates)
  : _delegates = List.of(delegates);