Interface UserResetPasswordAttemptRepository<D>
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<D,
,String> com.broadleafcommerce.common.extension.DomainTypeAware
,org.springframework.data.repository.Repository<D,
String>
- All Known Subinterfaces:
JpaUserResetPasswordAttemptRepository<D>
@NoRepositoryBean
public interface UserResetPasswordAttemptRepository<D>
extends org.springframework.data.repository.CrudRepository<D,String>, com.broadleafcommerce.common.extension.DomainTypeAware
Repository for managing operations related to
UserResetPasswordAttempt
.- Since:
- 2.1.3
- Author:
- Julia Lopez-Pozas (jpozas)
-
Method Summary
Modifier and TypeMethodDescriptionint
countByUsernameAndAuthServerIdAndAttemptTimeAfterAndConsideredTrueAndResultIs
(String username, String authServerId, Instant date, String result) int
countByUsernameAndAuthServerIdAndConsideredTrueAndResultIs
(String username, String authServerId, String result) void
void
deleteResetPasswordAttemptsOlderThan
(Instant age, String authServerId) readByUsernameAndAuthServerIdAndAttemptTimeAfterAndConsideredTrueAndResultIs
(String username, String authServerId, Instant date, String result) int
resetResetPasswordAttempts
(String username, String authServerId) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
Methods inherited from interface com.broadleafcommerce.common.extension.DomainTypeAware
getDomainType
-
Method Details
-
countByUsernameAndAuthServerIdAndAttemptTimeAfterAndConsideredTrueAndResultIs
-
readByUsernameAndAuthServerIdAndAttemptTimeAfterAndConsideredTrueAndResultIs
-
countByUsernameAndAuthServerIdAndConsideredTrueAndResultIs
-
resetResetPasswordAttempts
-
deleteResetPasswordAttemptsOlderThan
-
deleteResetPasswordAttemptsOlderThan
-