Skip to content

Instantly share code, notes, and snippets.

@monodot
Created October 30, 2020 09:00
Show Gist options
  • Save monodot/631582f183b1f165521683bb9ad8ac99 to your computer and use it in GitHub Desktop.
Save monodot/631582f183b1f165521683bb9ad8ac99 to your computer and use it in GitHub Desktop.
GetAllBooksResponse.java
package com.cleverbuilder.bookservice;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element ref="{http://www.cleverbuilder.com/BookService/}Book" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"book"
})
@XmlRootElement(name = "GetAllBooksResponse")
public class GetAllBooksResponse {
@XmlElement(name = "Book")
protected List<Book> book;
/**
* Gets the value of the book property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the book property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getBook().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Book }
*
*
*/
public List<Book> getBook() {
if (book == null) {
book = new ArrayList<Book>();
}
return this.book;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment