use of org.keycloak.connections.jpa.updater.liquibase.conn.CustomChangeLogHistoryService in project keycloak by keycloak.
the class LiquibaseJpaUpdaterProvider method resetLiquibaseServices.
private void resetLiquibaseServices(Liquibase liquibase) {
Method resetServices = Reflections.findDeclaredMethod(Liquibase.class, "resetServices");
Reflections.invokeMethod(true, resetServices, liquibase);
ChangeLogHistoryServiceFactory.getInstance().register(new CustomChangeLogHistoryService());
}
use of org.keycloak.connections.jpa.updater.liquibase.conn.CustomChangeLogHistoryService in project keycloak by keycloak.
the class QuarkusJpaUpdaterProvider method resetLiquibaseServices.
private void resetLiquibaseServices(Liquibase liquibase) {
Method resetServices = Reflections.findDeclaredMethod(Liquibase.class, "resetServices");
Reflections.invokeMethod(true, resetServices, liquibase);
ChangeLogHistoryServiceFactory.getInstance().register(new CustomChangeLogHistoryService());
}
Aggregations