source: src/main/java/com/tourMate/dao/TokenDao.java@ 07f4e8b

Last change on this file since 07f4e8b was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

images upload/download impl, other fixes

  • Property mode set to 100644
File size: 362 bytes
Line 
1package com.tourMate.dao;
2
3import com.tourMate.entities.Token;
4import jakarta.transaction.Transactional;
5
6import java.time.LocalDateTime;
7import java.util.Date;
8
9public interface TokenDao {
10 public void saveToken(Token token);
11 public Token getToken(String token);
12 @Transactional
13 public void setConfirmedAt(String token, LocalDateTime dateTime);
14}
Note: See TracBrowser for help on using the repository browser.