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

Last change on this file since 8a18cf5 was 1b0bd1e, checked in by milamihajlovska <mila.mihajlovska01@…>, 21 months ago

update configure

  • Property mode set to 100644
File size: 1.3 KB
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 points=0;
30 }
31
32 public Customer() {
33
34 }
35
36 @Override
37 public boolean equals(Object o) {
38 if (this == o) return true;
39 if (o == null || getClass() != o.getClass()) return false;
40 Customer customer = (Customer) o;
41 return id_user!=null && Objects.equals(id_user,customer.id_user);
42 }
43
44 @Override
45 public int hashCode() {
46 return Objects.hash();
47 }
48
49 @Override
50 public Collection<? extends GrantedAuthority> getAuthorities() {
51 return Collections.singletonList(Role.ROLE_USER);
52 }
53
54}
Note: See TracBrowser for help on using the repository browser.