source: src/main/java/com/example/salonbella/repository/ConfirmationTokenRepository.java@ 4d7e387

Last change on this file since 4d7e387 was 4d7e387, checked in by makyjovanovsky <mjovanovski04@…>, 18 months ago

commit 1

  • Property mode set to 100644
File size: 476 bytes
Line 
1package com.example.salonbella.repository;
2
3import com.example.salonbella.entity.ConfirmationTokenEntity;
4import com.example.salonbella.entity.UserEntity;
5import org.springframework.data.jpa.repository.JpaRepository;
6import org.springframework.stereotype.Repository;
7
8import java.util.Optional;
9
10@Repository
11public interface ConfirmationTokenRepository extends JpaRepository<ConfirmationTokenEntity, Long> {
12 Optional<ConfirmationTokenEntity> findByToken(String token);
13
14}
Note: See TracBrowser for help on using the repository browser.