77787980818283848586
@Path("/test/person") public static class PersonResource { @GET public Person getPerson() throws IOException { Person p = new Person(); p.setName("My Name"); p.setDesc("My desc"); return p; }
9596979899100101102103104