Interface KeycloakDataMapper
-
- All Known Implementing Classes:
KeycloakDataMapperImpl
public interface KeycloakDataMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default org.keycloak.representations.idm.ClientRepresentationcreateClientRepresentation(KeycloakClient client)default org.keycloak.representations.idm.ClientScopeRepresentationcreateClientScopeRepresentation(String name)org.keycloak.representations.idm.RealmRepresentationcreateRealmRepresentation(KeycloakRealm source)default org.keycloak.representations.idm.RoleRepresentationcreateRoleRepresentation(String realmRole)default org.keycloak.representations.idm.UserRepresentationcreateUserRepresentation(KeycloakUser user)default KeycloakUsertoKeycloakUser(org.keycloak.representations.idm.UserRepresentation userRepresentation)default org.keycloak.representations.idm.UserRepresentationtoUpdateUserPresentation(org.keycloak.representations.idm.UserRepresentation userRepresentation, KeycloakUser user)
-
-
-
Method Detail
-
toKeycloakUser
default KeycloakUser toKeycloakUser(org.keycloak.representations.idm.UserRepresentation userRepresentation)
-
toUpdateUserPresentation
default org.keycloak.representations.idm.UserRepresentation toUpdateUserPresentation(org.keycloak.representations.idm.UserRepresentation userRepresentation, KeycloakUser user)
-
createRealmRepresentation
org.keycloak.representations.idm.RealmRepresentation createRealmRepresentation(KeycloakRealm source)
-
createRoleRepresentation
default org.keycloak.representations.idm.RoleRepresentation createRoleRepresentation(String realmRole)
-
createClientRepresentation
default org.keycloak.representations.idm.ClientRepresentation createClientRepresentation(KeycloakClient client)
-
createUserRepresentation
default org.keycloak.representations.idm.UserRepresentation createUserRepresentation(KeycloakUser user)
-
createClientScopeRepresentation
default org.keycloak.representations.idm.ClientScopeRepresentation createClientScopeRepresentation(String name)
-
-