Package org.keycloak.connections.mongo.updater

Examples of org.keycloak.connections.mongo.updater.DefaultMongoUpdaterProvider


                        this.db = client.getDB(dbName);

                        String databaseSchema = config.get("databaseSchema");
                        if (databaseSchema != null) {
                            if (databaseSchema.equals("update")) {
                                new DefaultMongoUpdaterProvider().update(db);
                            } else {
                                throw new RuntimeException("Invalid value for databaseSchema: " + databaseSchema);
                            }
                        }
View Full Code Here

TOP

Related Classes of org.keycloak.connections.mongo.updater.DefaultMongoUpdaterProvider

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.