| 1 | package edu.ucsb.cs156.happiercows.entities; | |
| 2 | ||
| 3 | import com.fasterxml.jackson.annotation.JsonIgnore; | |
| 4 | import lombok.*; | |
| 5 | ||
| 6 | import javax.persistence.*; | |
| 7 | import java.time.Instant; | |
| 8 | import java.util.List; | |
| 9 | ||
| 10 | @Data | |
| 11 | @AllArgsConstructor | |
| 12 | @NoArgsConstructor(access = AccessLevel.PROTECTED) | |
| 13 | @Builder | |
| 14 | @Entity(name = "users") | |
| 15 | public class User { | |
| 16 |     @Id | |
| 17 |     @GeneratedValue(strategy = GenerationType.IDENTITY) | |
| 18 |     private long id; | |
| 19 |     private String email; | |
| 20 |     private String googleSub; | |
| 21 |     private String pictureUrl; | |
| 22 |     private String fullName; | |
| 23 |     private String givenName; | |
| 24 |     private String familyName; | |
| 25 |     private boolean emailVerified; | |
| 26 |     private String locale; | |
| 27 |     private String hostedDomain; | |
| 28 |     private boolean admin; | |
| 29 | ||
| 30 |   @Builder.Default | |
| 31 |   private Instant lastOnline = Instant.now(); | |
| 32 | ||
| 33 |   @ManyToMany(fetch = FetchType.EAGER, cascade = {CascadeType.PERSIST,CascadeType.REMOVE}) | |
| 34 |   @JoinTable(name = "user_commons",  | |
| 35 |     joinColumns = @JoinColumn(name = "user_id", referencedColumnName = "id"),  | |
| 36 |     inverseJoinColumns = @JoinColumn(name = "commons_id", referencedColumnName = "id")) | |
| 37 |     private List<Commons> commons; | |
| 38 | ||
| 39 |     @OneToMany(mappedBy = "user", cascade = CascadeType.REMOVE) | |
| 40 |     @JsonIgnore | |
| 41 |     private List<UserCommons> joinedCommons; | |
| 42 | ||
| 43 | ||
| 44 |     @Override | |
| 45 |     public String toString() { | |
| 46 | 
1
1. toString : replaced return value with "" for edu/ucsb/cs156/happiercows/entities/User::toString → KILLED | 
        return String.format("User: id=%d email=%s", id, email); | 
| 47 |     } | |
| 48 | } | |
Mutations | ||
| 46 | 
 
 1.1  |