/** * @author Hyacinthe MENIET * Created on 26 août 07 */ package net.dotmyself.restclient.flickrphotos; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "photos" }) @XmlRootElement(name = "rsp") public class Rsp { @XmlElement protected Photos photos; @XmlAttribute protected String stat; /** * Gets the value of the photos property. * * @return * possible object is * {@link Photos } * */ public Photos getPhotos() { return photos; } /** * Sets the value of the photos property. * * @param value * allowed object is * {@link Photos } * */ public void setPhotos(Photos value) { this.photos = value; } /** * Gets the value of the stat property. * * @return * possible object is * {@link String } * */ public String getStat() { return stat; } /** * Sets the value of the stat property. * * @param value * allowed object is * {@link String } * */ public void setStat(String value) { this.stat = value; } }