source: src/main/java/mk/ukim/finki/eglas/services/VoteIdentificationCodeService.java@ ac151d1

main
Last change on this file since ac151d1 was ac151d1, checked in by David <darsov2@…>, 11 days ago

initial

  • Property mode set to 100644
File size: 387 bytes
Line 
1package mk.ukim.finki.eglas.services;
2
3import mk.ukim.finki.eglas.model.VoteIdentificationCode;
4
5import java.time.LocalDateTime;
6import java.util.UUID;
7
8public interface VoteIdentificationCodeService {
9 public void generateCodes(int n, LocalDateTime validUntil);
10 public VoteIdentificationCode findRandomIdentificationCode();
11 public VoteIdentificationCode findById(UUID id);
12}
Note: See TracBrowser for help on using the repository browser.