Interface PublicKeyCredentialUserEntityRepository
- All Known Implementing Classes:
MapPublicKeyCredentialUserEntityRepository
public interface PublicKeyCredentialUserEntityRepository
A repository for managing
PublicKeyCredentialUserEntity
instances.- Since:
- 6.4
-
Method Summary
Modifier and TypeMethodDescriptionvoid
findByUsername
(String username) Finds thePublicKeyCredentialUserEntity
by the username.void
save
(PublicKeyCredentialUserEntity userEntity) Saves thePublicKeyCredentialUserEntity
to the associated username.
-
Method Details
-
findById
- Parameters:
id
- the id to lookup the username by- Returns:
- the username or null if not found.
-
findByUsername
Finds thePublicKeyCredentialUserEntity
by the username.- Parameters:
username
- the username to lookup thePublicKeyCredentialUserEntity
- Returns:
- the
PublicKeyCredentialUserEntity
or null if not found.
-
save
Saves thePublicKeyCredentialUserEntity
to the associated username.- Parameters:
userEntity
- thePublicKeyCredentialUserEntity
to associate to the provided username. If null, any existing entry is deleted.
-
delete
-