br.com.utfpr.porta.repositorio.TokenResetSenhas Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tcc-porta-servico Show documentation
Show all versions of tcc-porta-servico Show documentation
Projeto serviço que realiza acesso ao banco de dados para o projeto API e web
The newest version!
package br.com.utfpr.porta.repositorio;
import java.util.Optional;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import br.com.utfpr.porta.modelo.TokenResetSenha;
import br.com.utfpr.porta.modelo.TokenResetSenhaId;
import br.com.utfpr.porta.repositorio.helper.token_reset_senhas.TokenResetSenhasQueries;
@Repository
public interface TokenResetSenhas extends JpaRepository, TokenResetSenhasQueries {
public Optional findByToken(String token);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy