144145146147148149150
} @GET @Path("chapter") public Chapter getChapter() { return new Chapter(1); }
151152153154155156157
@GET @Path("chapter2") @ElementClass(response = Chapter.class) public Response getChapter2() { return Response.ok().entity(new Chapter(1)).build(); }
130131132133134135136
137138139140141142143
133134135136137138139
140141142143144145146
111112113114115116117
118119120121122123124
121122123124125126127
128129130131132133134