
package RendezVous_client;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * <p>Java class for rv complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="rv">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="clients" type="{http://RendezVous/}clients" minOccurs="0"/>
 *         &lt;element name="creneaux" type="{http://RendezVous/}creneaux" minOccurs="0"/>
 *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         &lt;element name="jour" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "rv", propOrder = {
    "clients",
    "creneaux",
    "id",
    "jour"
})
public class Rv {

    protected Clients clients;
    protected Creneaux creneaux;
    protected Long id;
    @XmlSchemaType(name = "dateTime")
    protected XMLGregorianCalendar jour;

    /**
     * Gets the value of the clients property.
     * 
     * @return
     *     possible object is
     *     {@link Clients }
     *     
     */
    public Clients getClients() {
        return clients;
    }

    /**
     * Sets the value of the clients property.
     * 
     * @param value
     *     allowed object is
     *     {@link Clients }
     *     
     */
    public void setClients(Clients value) {
        this.clients = value;
    }

    /**
     * Gets the value of the creneaux property.
     * 
     * @return
     *     possible object is
     *     {@link Creneaux }
     *     
     */
    public Creneaux getCreneaux() {
        return creneaux;
    }

    /**
     * Sets the value of the creneaux property.
     * 
     * @param value
     *     allowed object is
     *     {@link Creneaux }
     *     
     */
    public void setCreneaux(Creneaux value) {
        this.creneaux = value;
    }

    /**
     * Gets the value of the id property.
     * 
     * @return
     *     possible object is
     *     {@link Long }
     *     
     */
    public Long getId() {
        return id;
    }

    /**
     * Sets the value of the id property.
     * 
     * @param value
     *     allowed object is
     *     {@link Long }
     *     
     */
    public void setId(Long value) {
        this.id = value;
    }

    /**
     * Gets the value of the jour property.
     * 
     * @return
     *     possible object is
     *     {@link XMLGregorianCalendar }
     *     
     */
    public XMLGregorianCalendar getJour() {
        return jour;
    }

    /**
     * Sets the value of the jour property.
     * 
     * @param value
     *     allowed object is
     *     {@link XMLGregorianCalendar }
     *     
     */
    public void setJour(XMLGregorianCalendar value) {
        this.jour = value;
    }

}
