package server.mcsv1002.response; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for Owner complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Owner"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="givenName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="share" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="size" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="since" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Owner", propOrder = { "lastName", "firstName", "givenName", "type", "share", "size", "since" }) public class Owner { @XmlElement(required = true) protected String lastName; @XmlElement(required = true) protected String firstName; protected String givenName; protected String type; @XmlElement(required = true) protected String share; protected String size; @XmlElement(required = true) protected XMLGregorianCalendar since; /** * Gets the value of the lastName property. * * @return * possible object is * {@link String } * */ public String getLastName() { return lastName; } /** * Sets the value of the lastName property. * * @param value * allowed object is * {@link String } * */ public void setLastName(String value) { this.lastName = value; } /** * Gets the value of the firstName property. * * @return * possible object is * {@link String } * */ public String getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value * allowed object is * {@link String } * */ public void setFirstName(String value) { this.firstName = value; } /** * Gets the value of the givenName property. * * @return * possible object is * {@link String } * */ public String getGivenName() { return givenName; } /** * Sets the value of the givenName property. * * @param value * allowed object is * {@link String } * */ public void setGivenName(String value) { this.givenName = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the share property. * * @return * possible object is * {@link String } * */ public String getShare() { return share; } /** * Sets the value of the share property. * * @param value * allowed object is * {@link String } * */ public void setShare(String value) { this.share = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link String } * */ public String getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link String } * */ public void setSize(String value) { this.size = value; } /** * Gets the value of the since property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSince() { return since; } /** * Sets the value of the since property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSince(XMLGregorianCalendar value) { this.since = value; } }