Interface PublicKeyCredentialUserEntityRepository
- All Known Implementing Classes:
JdbcPublicKeyCredentialUserEntityRepository,MapPublicKeyCredentialUserEntityRepository
public interface PublicKeyCredentialUserEntityRepository
A repository for managing
PublicKeyCredentialUserEntity instances.- Since:
- 6.4
-
Method Summary
Modifier and TypeMethodDescriptionvoidfindByUsername(String username) Finds thePublicKeyCredentialUserEntityby the username.voidsave(PublicKeyCredentialUserEntity userEntity) Saves thePublicKeyCredentialUserEntityto 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 thePublicKeyCredentialUserEntityby the username.- Parameters:
username- the username to lookup thePublicKeyCredentialUserEntity- Returns:
- the
PublicKeyCredentialUserEntityor null if not found.
-
save
Saves thePublicKeyCredentialUserEntityto the associated username.- Parameters:
userEntity- thePublicKeyCredentialUserEntityto associate to the provided username. If null, any existing entry is deleted.
-
delete
-