From 316bb20ee35061fa2ee9154afaf4a06409630e75 Mon Sep 17 00:00:00 2001 From: "Pedro H. P Alba" Date: Tue, 13 Feb 2018 17:39:09 -0200 Subject: [PATCH] Fix markdown typo Fixes a misspelled markup carachter --- server_development/topics/user-storage/simple-example.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server_development/topics/user-storage/simple-example.adoc b/server_development/topics/user-storage/simple-example.adoc index 7efe07001b..9a7cd3328b 100644 --- a/server_development/topics/user-storage/simple-example.adoc +++ b/server_development/topics/user-storage/simple-example.adoc @@ -88,7 +88,7 @@ The `createAdapter()` method uses the helper class `org.keycloak.storage.adapter Every get method of `AbstractUserAdapter` either returns null or empty collections. However, methods that return role and group mappings will return the default roles and groups configured for the realm for every user. Every set method of `AbstractUserAdapter` will throw a `org.keycloak.storage.ReadOnlyException`. So if you attempt to modify the user in the admininstration console, you will get an error. -The `getUserById()` method parses the `id` parameter using the `org.keycloak.storage.StorageId' helper class. The `StorageId.getExternalId()` method is invoked to obtain the username embeded in the `id` parameter. The method then delegates to `getUserByUsername()`. +The `getUserById()` method parses the `id` parameter using the `org.keycloak.storage.StorageId` helper class. The `StorageId.getExternalId()` method is invoked to obtain the username embeded in the `id` parameter. The method then delegates to `getUserByUsername()`. Emails are not stored, so the `getUserByEmail()` method returns null.