public OAuthEntryPointServlet()

in src/main/java/org/apache/sling/auth/oauth_client/impl/OAuthEntryPointServlet.java [65:70]


    public OAuthEntryPointServlet(@Reference(policyOption = GREEDY) List<ClientConnection> connections,
            @Reference OAuthStateManager stateManager) {
        this.connections = connections.stream()
                .collect(Collectors.toMap( ClientConnection::name, Function.identity()));
        this.stateManager = stateManager;
    }