Package org.keycloak.connections.jpa

Examples of org.keycloak.connections.jpa.JpaConnectionProvider


    private Set<EventType> includedEvents = new HashSet<EventType>();

    @Override
    public EventStoreProvider create(KeycloakSession session) {
        JpaConnectionProvider connection = session.getProvider(JpaConnectionProvider.class);
        return new JpaEventStoreProvider(connection.getEntityManager(), includedEvents);
    }
View Full Code Here

TOP

Related Classes of org.keycloak.connections.jpa.JpaConnectionProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.