package org.jboss.resteasy.test.providers.jettison.resource; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "book") public class Book { private String author; private String isbn; private String title; public Book() { } public Book(String author, String isbn, String title) { this.author = author; this.isbn = isbn; this.title = title; } @XmlElement public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } @XmlElement public String getIsbn() { return isbn; } public void setIsbn(String isbn) { this.isbn = isbn; } @XmlAttribute public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }