Package io.quarkus.security.jpa
Annotation Interface Password
Indicates that this field or property should be used as a source of password for security. Only
supports the String type.
Defaults to considering the password as hashed with bcrypt in the Modular Crypt Format.
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionClass<? extends PasswordProvider> Sets a custom password provider when the type isPasswordType.CUSTOMSets the password storage type. defaults toPasswordType.MCF.
-
Element Details
-
value
PasswordType valueSets the password storage type. defaults toPasswordType.MCF.- Default:
MCF
-
provider
Class<? extends PasswordProvider> providerSets a custom password provider when the type isPasswordType.CUSTOM- Default:
io.quarkus.security.jpa.PasswordProvider.class
-