Uses of Class
org.keycloak.exportimport.Strategy
-
Packages that use Strategy Package Description org.keycloak.exportimport org.keycloak.exportimport.dir org.keycloak.exportimport.singlefile org.keycloak.exportimport.util -
-
Uses of Strategy in org.keycloak.exportimport
Fields in org.keycloak.exportimport declared as Strategy Modifier and Type Field Description static Strategy
ExportImportConfig. DEFAULT_STRATEGY
Methods in org.keycloak.exportimport that return Strategy Modifier and Type Method Description static Strategy
ExportImportConfig. getStrategy()
static Strategy
Strategy. valueOf(String name)
Returns the enum constant of this type with the specified name.static Strategy[]
Strategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.keycloak.exportimport with parameters of type Strategy Modifier and Type Method Description void
ImportProvider. importModel(KeycloakSessionFactory factory, Strategy strategy)
void
ImportProvider. importRealm(KeycloakSessionFactory factory, String realmName, Strategy strategy)
void
ExportImportManager. runImportAtStartup(String dir, Strategy strategy)
-
Uses of Strategy in org.keycloak.exportimport.dir
Methods in org.keycloak.exportimport.dir with parameters of type Strategy Modifier and Type Method Description void
DirImportProvider. importModel(KeycloakSessionFactory factory, Strategy strategy)
void
DirImportProvider. importRealm(KeycloakSessionFactory factory, String realmName, Strategy strategy)
-
Uses of Strategy in org.keycloak.exportimport.singlefile
Methods in org.keycloak.exportimport.singlefile with parameters of type Strategy Modifier and Type Method Description void
SingleFileImportProvider. importModel(KeycloakSessionFactory factory, Strategy strategy)
void
SingleFileImportProvider. importRealm(KeycloakSessionFactory factory, String realmName, Strategy strategy)
-
Uses of Strategy in org.keycloak.exportimport.util
Methods in org.keycloak.exportimport.util with parameters of type Strategy Modifier and Type Method Description static void
ImportUtils. importFromStream(KeycloakSession session, com.fasterxml.jackson.databind.ObjectMapper mapper, InputStream is, Strategy strategy)
Fully import realm (or more realms from particular stream)static boolean
ImportUtils. importRealm(KeycloakSession session, RealmRepresentation rep, Strategy strategy, boolean skipUserDependent)
Fully import realm from representation, save it to model and return model of newly created realmstatic void
ImportUtils. importRealms(KeycloakSession session, Collection<RealmRepresentation> realms, Strategy strategy)
-