use of org.apereo.cas.couchdb.gauth.credential.CouchDbGoogleAuthenticatorAccount in project cas by apereo.
the class CouchDbGoogleAuthenticatorTokenCredentialRepository method delete.
@Override
public void delete(final long id) {
val entity = (CouchDbGoogleAuthenticatorAccount) couchDbRepository.findById(id);
couchDbRepository.deleteTokenAccount(entity);
}
Aggregations