Package org.keycloak.migration.migrators
Class MigrateTo8_0_0
- java.lang.Object
-
- org.keycloak.migration.migrators.MigrateTo8_0_0
-
- All Implemented Interfaces:
Migration
public class MigrateTo8_0_0 extends Object implements Migration
- Author:
- Marek Posolda
-
-
Field Summary
Fields Modifier and Type Field Description static ModelVersion
VERSION
-
Constructor Summary
Constructors Constructor Description MigrateTo8_0_0()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ModelVersion
getVersion()
void
migrate(KeycloakSession session)
void
migrateImport(KeycloakSession session, RealmModel realm, RealmRepresentation rep, boolean skipUserDependent)
Called after full import of representation.static void
migrateOptionalAuthenticationExecution(RealmModel realm, AuthenticationFlowModel parentFlow, AuthenticationExecutionModel optionalExecution, boolean updateOptionalExecution)
protected void
migrateRealmCommon(RealmModel realm)
protected void
migrateRealmMFA(RealmModel realm)
-
-
-
Field Detail
-
VERSION
public static final ModelVersion VERSION
-
-
Method Detail
-
getVersion
public ModelVersion getVersion()
- Specified by:
getVersion
in interfaceMigration
-
migrate
public void migrate(KeycloakSession session)
-
migrateImport
public void migrateImport(KeycloakSession session, RealmModel realm, RealmRepresentation rep, boolean skipUserDependent)
Description copied from interface:Migration
Called after full import of representation. Implementations of this method should try not make assumptions about what was imported from the representations. We have no idea what the user will do to an exported json file.- Specified by:
migrateImport
in interfaceMigration
-
migrateRealmCommon
protected void migrateRealmCommon(RealmModel realm)
-
migrateRealmMFA
protected void migrateRealmMFA(RealmModel realm)
-
migrateOptionalAuthenticationExecution
public static void migrateOptionalAuthenticationExecution(RealmModel realm, AuthenticationFlowModel parentFlow, AuthenticationExecutionModel optionalExecution, boolean updateOptionalExecution)
-
-