Error
When i build this data object model below in Java programming i ran into a bunch of errors! what's wrong? You can try this code on the sololearn integreted code editor and see what the hell occurs The Code public class Book { // FIELDS public String id; public String name; public String author_id; public class Author { // FIELDS public String id; public String name; public String birthDay; // RESOLVERS public static String getAuthorId(){ return id; } public static String getName(){ return name; } public static String birthDay(){ return birthDay; } } // RESOLVERS public static String getBookId(){ return id; } public static String getBookName(){ return book; } public static String getAuthor(){ Author a = new Author(); } }