Skip to content

Commit

Permalink
linked user entity section where io.quarkus.elytron.security.common.B…
Browse files Browse the repository at this point in the history
…cryptUtil; is used demonstrating the password mapper process

Call an anchored ID from a different file
  • Loading branch information
jcarranzan committed Dec 15, 2023
1 parent e1c4c96 commit 73c6bbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public class UserResource {
}
----
====

[[define-the-user-entity]]
=== Define the user entity

* You can now describe how you want security information to be stored in the model by adding annotations to the `user` entity, as outlined in the following code snippet:

Check warning on line 234 in docs/src/main/asciidoc/security-getting-started-tutorial.adoc

View workflow job for this annotation

GitHub Actions / Linting with Vale

[vale] reported by reviewdog 🐶 [Quarkus.TermsSuggestions] Depending on the context, consider using 'because' or 'while' rather than 'as'. Raw Output: {"message": "[Quarkus.TermsSuggestions] Depending on the context, consider using 'because' or 'while' rather than 'as'.", "location": {"path": "docs/src/main/asciidoc/security-getting-started-tutorial.adoc", "range": {"start": {"line": 234, "column": 128}}}, "severity": "INFO"}
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/security-jdbc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ INSERT INTO test_user (id, username, password, role) VALUES (2, 'user','user', '
[NOTE]
====
It is probably useless, but we kindly remind you that you must not store clear-text passwords in production environment ;-).
The `elytron-security-jdbc` offers a built-in bcrypt password mapper.
The `elytron-security-jdbc` offers a built-in bcrypt password mapper. You can see the section `Define the user entity` for more details at xref:security-getting-started-tutorial.adoc#define-the-user-entity.
====

We can now configure the Elytron JDBC Realm.
Expand Down

0 comments on commit 73c6bbb

Please sign in to comment.