Package org.keycloak.exportimport

Examples of org.keycloak.exportimport.UsersExportStrategy


        exportRealmImpl(factory, realmName);
        writeVersion("version.json", Version.SINGLETON);
    }

    protected void exportRealmImpl(KeycloakSessionFactory factory, final String realmName) throws IOException {
        final UsersExportStrategy usersExportStrategy = ExportImportConfig.getUsersExportStrategy();
        final int usersPerFile = ExportImportConfig.getUsersPerFile();
        final UsersHolder usersHolder = new UsersHolder();
        final boolean exportUsersIntoRealmFile = usersExportStrategy == UsersExportStrategy.REALM_FILE;

        KeycloakModelUtils.runJobInTransaction(factory, new ExportImportSessionTask() {
View Full Code Here

TOP

Related Classes of org.keycloak.exportimport.UsersExportStrategy

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.