Bumped to work with jdk11

This commit is contained in:
Marcin Grzejszczak
2018-10-05 18:27:18 +02:00
parent 2e23d6f26e
commit 107ed195f1
76 changed files with 728 additions and 1024 deletions

View File

@@ -18,16 +18,23 @@ package com.example;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonCreator;
@SuppressWarnings("serial")
public class BookDeleted implements Serializable {
public final String bookName;
public String bookName;
@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
public BookDeleted(String bookName) {
this.bookName = bookName;
}
public BookDeleted() {
}
public String getBookName() {
return this.bookName;
}
void setBookName(String bookName) {
this.bookName = bookName;
}
}