source: src/main/java/com/example/moviezone/model/Customer.java@ f7b0906

Last change on this file since f7b0906 was 6032d44, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

login method

  • Property mode set to 100644
File size: 991 bytes
Line 
1package com.example.moviezone.model;
2
3import lombok.Getter;
4import lombok.Setter;
5import lombok.ToString;
6import org.hibernate.Hibernate;
7import org.springframework.security.core.GrantedAuthority;
8
9import javax.persistence.Entity;
10import javax.persistence.PrimaryKeyJoinColumn;
11import javax.persistence.Table;
12import java.time.LocalDate;
13import java.util.Collection;
14import java.util.Collections;
15import java.util.Objects;
16@Entity
17@Getter
18@Setter
19@ToString
20@Table(name = "customers")
21@PrimaryKeyJoinColumn(name = "id_customer")
22public class Customer extends User{
23
24
25 Integer points;
26
27 public Customer(String password, String first_name, String last_name, String address, String contact_number, String username) {
28 super(password, first_name, last_name, address, contact_number, username);
29 }
30
31 public Customer() {
32
33 }
34
35 @Override
36 public Collection<? extends GrantedAuthority> getAuthorities() {
37 return Collections.singletonList(Role.ROLE_USER);
38 }
39
40}
Note: See TracBrowser for help on using the repository browser.