|
| 1 | +/* |
| 2 | + * Copyright 2020 Google LLC |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package com.example; |
| 18 | + |
| 19 | +import java.util.List; |
| 20 | +import java.util.Map; |
| 21 | +import java.util.UUID; |
| 22 | +import org.springframework.data.annotation.Id; |
| 23 | +import org.springframework.data.domain.Persistable; |
| 24 | +import org.springframework.data.relational.core.mapping.Column; |
| 25 | +import org.springframework.data.relational.core.mapping.Table; |
| 26 | + |
| 27 | +/** Book entity. */ |
| 28 | +@Table |
| 29 | +public class Book implements Persistable { |
| 30 | + |
| 31 | + @Id |
| 32 | + @Column("ID") |
| 33 | + private String id; |
| 34 | + |
| 35 | + @Column("TITLE") |
| 36 | + private String title; |
| 37 | + |
| 38 | + @Column("EXTRADETAILS") |
| 39 | + private Map<String, String> extraDetails; |
| 40 | + |
| 41 | + @Column("REVIEWS") |
| 42 | + private Review review; |
| 43 | + |
| 44 | + @Column("CATEGORIES") |
| 45 | + private List<String> categories; |
| 46 | + |
| 47 | + public Book(String title, Map<String, String> extraDetails, Review review) { |
| 48 | + this.id = UUID.randomUUID().toString(); |
| 49 | + this.title = title; |
| 50 | + this.extraDetails = extraDetails; |
| 51 | + this.review = review; |
| 52 | + } |
| 53 | + |
| 54 | + public String getId() { |
| 55 | + return id; |
| 56 | + } |
| 57 | + |
| 58 | + @Override |
| 59 | + public boolean isNew() { |
| 60 | + return true; |
| 61 | + } |
| 62 | + |
| 63 | + public String getTitle() { |
| 64 | + return this.title; |
| 65 | + } |
| 66 | + |
| 67 | + public Map<String, String> getExtraDetails() { |
| 68 | + return extraDetails; |
| 69 | + } |
| 70 | + |
| 71 | + public Review getReview() { |
| 72 | + return review; |
| 73 | + } |
| 74 | + |
| 75 | + public List<String> getCategories() { |
| 76 | + return categories; |
| 77 | + } |
| 78 | + |
| 79 | + public void setCategories(List<String> categories) { |
| 80 | + this.categories = categories; |
| 81 | + } |
| 82 | + |
| 83 | + @Override |
| 84 | + public String toString() { |
| 85 | + return "Book{" |
| 86 | + + "id='" |
| 87 | + + id |
| 88 | + + '\'' |
| 89 | + + ", title='" |
| 90 | + + title |
| 91 | + + '\'' |
| 92 | + + ", extraDetails=" |
| 93 | + + (extraDetails == null ? "" : extraDetails.toString()) |
| 94 | + + ", categories=" |
| 95 | + + (categories == null ? "" : categories) |
| 96 | + + '}'; |
| 97 | + } |
| 98 | +} |
0 commit comments