1 | package com.example.moviezone.model;
|
---|
2 |
|
---|
3 | import lombok.Getter;
|
---|
4 | import lombok.Setter;
|
---|
5 | import lombok.ToString;
|
---|
6 | import org.hibernate.Hibernate;
|
---|
7 | import org.springframework.security.core.GrantedAuthority;
|
---|
8 |
|
---|
9 | import javax.persistence.Entity;
|
---|
10 | import javax.persistence.PrimaryKeyJoinColumn;
|
---|
11 | import javax.persistence.Table;
|
---|
12 | import java.time.LocalDate;
|
---|
13 | import java.util.Collection;
|
---|
14 | import java.util.Collections;
|
---|
15 | import java.util.Objects;
|
---|
16 | @Entity
|
---|
17 | @Getter
|
---|
18 | @Setter
|
---|
19 | @ToString
|
---|
20 | @Table(name = "customers")
|
---|
21 | @PrimaryKeyJoinColumn(name = "id_customer")
|
---|
22 | public 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 boolean equals(Object o) {
|
---|
37 | if (this == o) return true;
|
---|
38 | if (o == null || getClass() != o.getClass()) return false;
|
---|
39 | Customer customer = (Customer) o;
|
---|
40 | return id_user!=null && Objects.equals(id_user,customer.id_user);
|
---|
41 | }
|
---|
42 |
|
---|
43 | @Override
|
---|
44 | public int hashCode() {
|
---|
45 | return Objects.hash();
|
---|
46 | }
|
---|
47 |
|
---|
48 | @Override
|
---|
49 | public Collection<? extends GrantedAuthority> getAuthorities() {
|
---|
50 | return Collections.singletonList(Role.ROLE_USER);
|
---|
51 | }
|
---|
52 |
|
---|
53 | }
|
---|