Package org.keycloak.storage
Interface ExportImportManager
- 
- All Known Implementing Classes:
- LegacyExportImportManager,- MapExportImportManager
 
 public interface ExportImportManagerManage importing and updating of realms for the legacy store.- Author:
- Alexander Schwartz
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description UserModelcreateUser(RealmModel realm, UserRepresentation userRep)voidexportRealm(RealmModel realm, ExportOptions options, ExportAdapter callback)RealmModelimportRealm(InputStream requestBody)voidimportRealm(RealmRepresentation rep, RealmModel newRealm, boolean skipUserDependent)PartialImportResultspartialImportRealm(RealmModel realm, InputStream requestBody)voidupdateRealm(RealmRepresentation rep, RealmModel realm)
 
- 
- 
- 
Method Detail- 
importRealmvoid importRealm(RealmRepresentation rep, RealmModel newRealm, boolean skipUserDependent) 
 - 
partialImportRealmPartialImportResults partialImportRealm(RealmModel realm, InputStream requestBody) 
 - 
updateRealmvoid updateRealm(RealmRepresentation rep, RealmModel realm) 
 - 
createUserUserModel createUser(RealmModel realm, UserRepresentation userRep) 
 - 
exportRealmvoid exportRealm(RealmModel realm, ExportOptions options, ExportAdapter callback) 
 - 
importRealmRealmModel importRealm(InputStream requestBody) 
 
- 
 
-