Coverage Report - fr.paris.lutece.plugins.address.business.jaxb.Cartereponse
 
Classes in this File Line Coverage Branch Coverage Complexity
Cartereponse
0 %
0/13
N/A
1
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
 3  
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 4  
 // Any modifications to this file will be lost upon recompilation of the source schema. 
 5  
 // Generated on: 2018.04.30 at 04:24:22 PM CEST 
 6  
 //
 7  
 
 8  
 
 9  
 package fr.paris.lutece.plugins.address.business.jaxb;
 10  
 
 11  
 import java.util.Calendar;
 12  
 import javax.xml.bind.annotation.XmlAccessType;
 13  
 import javax.xml.bind.annotation.XmlAccessorType;
 14  
 import javax.xml.bind.annotation.XmlElement;
 15  
 import javax.xml.bind.annotation.XmlRootElement;
 16  
 import javax.xml.bind.annotation.XmlType;
 17  
 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
 18  
 
 19  
 
 20  
 /**
 21  
  * <p>Java class for anonymous complex type.
 22  
  * 
 23  
  * <p>The following schema fragment specifies the expected content contained within this class.
 24  
  * 
 25  
  * <pre>
 26  
  * &lt;complexType>
 27  
  *   &lt;complexContent>
 28  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 29  
  *       &lt;sequence>
 30  
  *         &lt;element name="numero" type="{}numero"/>
 31  
  *         &lt;element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 32  
  *         &lt;element name="famille1" type="{}famille"/>
 33  
  *         &lt;element name="famille2" type="{}famille" minOccurs="0"/>
 34  
  *       &lt;/sequence>
 35  
  *     &lt;/restriction>
 36  
  *   &lt;/complexContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "", propOrder = {
 44  
     "numero",
 45  
     "date",
 46  
     "famille1",
 47  
     "famille2"
 48  
 })
 49  
 @XmlRootElement(name = "cartereponse")
 50  0
 public class Cartereponse {
 51  
 
 52  
     @XmlElement(required = true)
 53  
     protected String numero;
 54  
     @XmlElement(required = true, type = String.class)
 55  
     @XmlJavaTypeAdapter(Adapter1 .class)
 56  
     protected Calendar date;
 57  
     @XmlElement(required = true)
 58  
     protected Famille famille1;
 59  
     protected Famille famille2;
 60  
 
 61  
     /**
 62  
      * Gets the value of the numero property.
 63  
      * 
 64  
      * @return
 65  
      *     possible object is
 66  
      *     {@link String }
 67  
      *     
 68  
      */
 69  
     public String getNumero() {
 70  0
         return numero;
 71  
     }
 72  
 
 73  
     /**
 74  
      * Sets the value of the numero property.
 75  
      * 
 76  
      * @param value
 77  
      *     allowed object is
 78  
      *     {@link String }
 79  
      *     
 80  
      */
 81  
     public void setNumero(String value) {
 82  0
         this.numero = value;
 83  0
     }
 84  
 
 85  
     /**
 86  
      * Gets the value of the date property.
 87  
      * 
 88  
      * @return
 89  
      *     possible object is
 90  
      *     {@link String }
 91  
      *     
 92  
      */
 93  
     public Calendar getDate() {
 94  0
         return date;
 95  
     }
 96  
 
 97  
     /**
 98  
      * Sets the value of the date property.
 99  
      * 
 100  
      * @param value
 101  
      *     allowed object is
 102  
      *     {@link String }
 103  
      *     
 104  
      */
 105  
     public void setDate(Calendar value) {
 106  0
         this.date = value;
 107  0
     }
 108  
 
 109  
     /**
 110  
      * Gets the value of the famille1 property.
 111  
      * 
 112  
      * @return
 113  
      *     possible object is
 114  
      *     {@link Famille }
 115  
      *     
 116  
      */
 117  
     public Famille getFamille1() {
 118  0
         return famille1;
 119  
     }
 120  
 
 121  
     /**
 122  
      * Sets the value of the famille1 property.
 123  
      * 
 124  
      * @param value
 125  
      *     allowed object is
 126  
      *     {@link Famille }
 127  
      *     
 128  
      */
 129  
     public void setFamille1(Famille value) {
 130  0
         this.famille1 = value;
 131  0
     }
 132  
 
 133  
     /**
 134  
      * Gets the value of the famille2 property.
 135  
      * 
 136  
      * @return
 137  
      *     possible object is
 138  
      *     {@link Famille }
 139  
      *     
 140  
      */
 141  
     public Famille getFamille2() {
 142  0
         return famille2;
 143  
     }
 144  
 
 145  
     /**
 146  
      * Sets the value of the famille2 property.
 147  
      * 
 148  
      * @param value
 149  
      *     allowed object is
 150  
      *     {@link Famille }
 151  
      *     
 152  
      */
 153  
     public void setFamille2(Famille value) {
 154  0
         this.famille2 = value;
 155  0
     }
 156  
 
 157  
 }