Coverage Report - fr.paris.lutece.plugins.address.business.jaxb.wsFicheAdresse.Adresse
 
Classes in this File Line Coverage Branch Coverage Complexity
Adresse
0 %
0/61
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.wsFicheAdresse;
 10  
 
 11  
 import java.math.BigInteger;
 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  
 
 18  
 
 19  
 /**
 20  
  * <p>Java class for anonymous complex type.
 21  
  * 
 22  
  * <p>The following schema fragment specifies the expected content contained within this class.
 23  
  * 
 24  
  * <pre>
 25  
  * &lt;complexType>
 26  
  *   &lt;complexContent>
 27  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 28  
  *       &lt;sequence>
 29  
  *         &lt;element ref="{}identifiant"/>
 30  
  *         &lt;element ref="{}geometry"/>
 31  
  *         &lt;element ref="{}numero"/>
 32  
  *         &lt;element ref="{}suffixe1" minOccurs="0"/>
 33  
  *         &lt;element ref="{}suffixe2" minOccurs="0"/>
 34  
  *         &lt;element ref="{}suffixe3" minOccurs="0"/>
 35  
  *         &lt;element ref="{}natureAffectation" minOccurs="0"/>
 36  
  *         &lt;element ref="{}dateDecisionAffectation" minOccurs="0"/>
 37  
  *         &lt;element ref="{}dateMaj"/>
 38  
  *         &lt;element ref="{}dateCreation"/>
 39  
  *         &lt;element ref="{}majUser"/>
 40  
  *         &lt;element ref="{}etatAdresse"/>
 41  
  *         &lt;element ref="{}typeAdresse"/>
 42  
  *         &lt;element ref="{}statutAdresse"/>
 43  
  *         &lt;element ref="{}idVoie"/>
 44  
  *         &lt;element ref="{}idParcelle"/>
 45  
  *         &lt;element ref="{}commune"/>
 46  
  *         &lt;element ref="{}code_insee"/>
 47  
  *         &lt;element ref="{}geo_x"/>
 48  
  *         &lt;element ref="{}geo_y"/>
 49  
  *       &lt;/sequence>
 50  
  *     &lt;/restriction>
 51  
  *   &lt;/complexContent>
 52  
  * &lt;/complexType>
 53  
  * </pre>
 54  
  * 
 55  
  * 
 56  
  */
 57  
 @XmlAccessorType(XmlAccessType.FIELD)
 58  
 @XmlType(name = "", propOrder = {
 59  
     "identifiant",
 60  
     "geometry",
 61  
     "numero",
 62  
     "suffixe1",
 63  
     "suffixe2",
 64  
     "suffixe3",
 65  
     "natureAffectation",
 66  
     "dateDecisionAffectation",
 67  
     "dateMaj",
 68  
     "dateCreation",
 69  
     "majUser",
 70  
     "etatAdresse",
 71  
     "typeAdresse",
 72  
     "statutAdresse",
 73  
     "idVoie",
 74  
     "idParcelle",
 75  
     "commune",
 76  
     "codeInsee",
 77  
     "geoX",
 78  
     "geoY"
 79  
 })
 80  
 @XmlRootElement(name = "adresse")
 81  0
 public class Adresse {
 82  
 
 83  
     @XmlElement(required = true)
 84  
     protected BigInteger identifiant;
 85  
     @XmlElement(required = true)
 86  
     protected String geometry;
 87  
     @XmlElement(required = true)
 88  
     protected BigInteger numero;
 89  
     protected String suffixe1;
 90  
     protected String suffixe2;
 91  
     protected String suffixe3;
 92  
     protected String natureAffectation;
 93  
     protected String dateDecisionAffectation;
 94  
     @XmlElement(required = true)
 95  
     protected String dateMaj;
 96  
     @XmlElement(required = true)
 97  
     protected String dateCreation;
 98  
     @XmlElement(required = true)
 99  
     protected String majUser;
 100  
     @XmlElement(required = true)
 101  
     protected String etatAdresse;
 102  
     @XmlElement(required = true)
 103  
     protected String typeAdresse;
 104  
     @XmlElement(required = true)
 105  
     protected String statutAdresse;
 106  
     protected short idVoie;
 107  
     protected short idParcelle;
 108  
     @XmlElement(required = true)
 109  
     protected String commune;
 110  
     @XmlElement(name = "code_insee", required = true)
 111  
     protected BigInteger codeInsee;
 112  
     @XmlElement(name = "geo_x")
 113  
     protected float geoX;
 114  
     @XmlElement(name = "geo_y")
 115  
     protected float geoY;
 116  
 
 117  
     /**
 118  
      * Gets the value of the identifiant property.
 119  
      * 
 120  
      * @return
 121  
      *     possible object is
 122  
      *     {@link BigInteger }
 123  
      *     
 124  
      */
 125  
     public BigInteger getIdentifiant() {
 126  0
         return identifiant;
 127  
     }
 128  
 
 129  
     /**
 130  
      * Sets the value of the identifiant property.
 131  
      * 
 132  
      * @param value
 133  
      *     allowed object is
 134  
      *     {@link BigInteger }
 135  
      *     
 136  
      */
 137  
     public void setIdentifiant(BigInteger value) {
 138  0
         this.identifiant = value;
 139  0
     }
 140  
 
 141  
     /**
 142  
      * Gets the value of the geometry property.
 143  
      * 
 144  
      * @return
 145  
      *     possible object is
 146  
      *     {@link String }
 147  
      *     
 148  
      */
 149  
     public String getGeometry() {
 150  0
         return geometry;
 151  
     }
 152  
 
 153  
     /**
 154  
      * Sets the value of the geometry property.
 155  
      * 
 156  
      * @param value
 157  
      *     allowed object is
 158  
      *     {@link String }
 159  
      *     
 160  
      */
 161  
     public void setGeometry(String value) {
 162  0
         this.geometry = value;
 163  0
     }
 164  
 
 165  
     /**
 166  
      * Gets the value of the numero property.
 167  
      * 
 168  
      * @return
 169  
      *     possible object is
 170  
      *     {@link BigInteger }
 171  
      *     
 172  
      */
 173  
     public BigInteger getNumero() {
 174  0
         return numero;
 175  
     }
 176  
 
 177  
     /**
 178  
      * Sets the value of the numero property.
 179  
      * 
 180  
      * @param value
 181  
      *     allowed object is
 182  
      *     {@link BigInteger }
 183  
      *     
 184  
      */
 185  
     public void setNumero(BigInteger value) {
 186  0
         this.numero = value;
 187  0
     }
 188  
 
 189  
     /**
 190  
      * Gets the value of the suffixe1 property.
 191  
      * 
 192  
      * @return
 193  
      *     possible object is
 194  
      *     {@link String }
 195  
      *     
 196  
      */
 197  
     public String getSuffixe1() {
 198  0
         return suffixe1;
 199  
     }
 200  
 
 201  
     /**
 202  
      * Sets the value of the suffixe1 property.
 203  
      * 
 204  
      * @param value
 205  
      *     allowed object is
 206  
      *     {@link String }
 207  
      *     
 208  
      */
 209  
     public void setSuffixe1(String value) {
 210  0
         this.suffixe1 = value;
 211  0
     }
 212  
 
 213  
     /**
 214  
      * Gets the value of the suffixe2 property.
 215  
      * 
 216  
      * @return
 217  
      *     possible object is
 218  
      *     {@link String }
 219  
      *     
 220  
      */
 221  
     public String getSuffixe2() {
 222  0
         return suffixe2;
 223  
     }
 224  
 
 225  
     /**
 226  
      * Sets the value of the suffixe2 property.
 227  
      * 
 228  
      * @param value
 229  
      *     allowed object is
 230  
      *     {@link String }
 231  
      *     
 232  
      */
 233  
     public void setSuffixe2(String value) {
 234  0
         this.suffixe2 = value;
 235  0
     }
 236  
 
 237  
     /**
 238  
      * Gets the value of the suffixe3 property.
 239  
      * 
 240  
      * @return
 241  
      *     possible object is
 242  
      *     {@link String }
 243  
      *     
 244  
      */
 245  
     public String getSuffixe3() {
 246  0
         return suffixe3;
 247  
     }
 248  
 
 249  
     /**
 250  
      * Sets the value of the suffixe3 property.
 251  
      * 
 252  
      * @param value
 253  
      *     allowed object is
 254  
      *     {@link String }
 255  
      *     
 256  
      */
 257  
     public void setSuffixe3(String value) {
 258  0
         this.suffixe3 = value;
 259  0
     }
 260  
 
 261  
     /**
 262  
      * Gets the value of the natureAffectation property.
 263  
      * 
 264  
      * @return
 265  
      *     possible object is
 266  
      *     {@link String }
 267  
      *     
 268  
      */
 269  
     public String getNatureAffectation() {
 270  0
         return natureAffectation;
 271  
     }
 272  
 
 273  
     /**
 274  
      * Sets the value of the natureAffectation property.
 275  
      * 
 276  
      * @param value
 277  
      *     allowed object is
 278  
      *     {@link String }
 279  
      *     
 280  
      */
 281  
     public void setNatureAffectation(String value) {
 282  0
         this.natureAffectation = value;
 283  0
     }
 284  
 
 285  
     /**
 286  
      * Gets the value of the dateDecisionAffectation property.
 287  
      * 
 288  
      * @return
 289  
      *     possible object is
 290  
      *     {@link String }
 291  
      *     
 292  
      */
 293  
     public String getDateDecisionAffectation() {
 294  0
         return dateDecisionAffectation;
 295  
     }
 296  
 
 297  
     /**
 298  
      * Sets the value of the dateDecisionAffectation property.
 299  
      * 
 300  
      * @param value
 301  
      *     allowed object is
 302  
      *     {@link String }
 303  
      *     
 304  
      */
 305  
     public void setDateDecisionAffectation(String value) {
 306  0
         this.dateDecisionAffectation = value;
 307  0
     }
 308  
 
 309  
     /**
 310  
      * Gets the value of the dateMaj property.
 311  
      * 
 312  
      * @return
 313  
      *     possible object is
 314  
      *     {@link String }
 315  
      *     
 316  
      */
 317  
     public String getDateMaj() {
 318  0
         return dateMaj;
 319  
     }
 320  
 
 321  
     /**
 322  
      * Sets the value of the dateMaj property.
 323  
      * 
 324  
      * @param value
 325  
      *     allowed object is
 326  
      *     {@link String }
 327  
      *     
 328  
      */
 329  
     public void setDateMaj(String value) {
 330  0
         this.dateMaj = value;
 331  0
     }
 332  
 
 333  
     /**
 334  
      * Gets the value of the dateCreation property.
 335  
      * 
 336  
      * @return
 337  
      *     possible object is
 338  
      *     {@link String }
 339  
      *     
 340  
      */
 341  
     public String getDateCreation() {
 342  0
         return dateCreation;
 343  
     }
 344  
 
 345  
     /**
 346  
      * Sets the value of the dateCreation property.
 347  
      * 
 348  
      * @param value
 349  
      *     allowed object is
 350  
      *     {@link String }
 351  
      *     
 352  
      */
 353  
     public void setDateCreation(String value) {
 354  0
         this.dateCreation = value;
 355  0
     }
 356  
 
 357  
     /**
 358  
      * Gets the value of the majUser property.
 359  
      * 
 360  
      * @return
 361  
      *     possible object is
 362  
      *     {@link String }
 363  
      *     
 364  
      */
 365  
     public String getMajUser() {
 366  0
         return majUser;
 367  
     }
 368  
 
 369  
     /**
 370  
      * Sets the value of the majUser property.
 371  
      * 
 372  
      * @param value
 373  
      *     allowed object is
 374  
      *     {@link String }
 375  
      *     
 376  
      */
 377  
     public void setMajUser(String value) {
 378  0
         this.majUser = value;
 379  0
     }
 380  
 
 381  
     /**
 382  
      * Gets the value of the etatAdresse property.
 383  
      * 
 384  
      * @return
 385  
      *     possible object is
 386  
      *     {@link String }
 387  
      *     
 388  
      */
 389  
     public String getEtatAdresse() {
 390  0
         return etatAdresse;
 391  
     }
 392  
 
 393  
     /**
 394  
      * Sets the value of the etatAdresse property.
 395  
      * 
 396  
      * @param value
 397  
      *     allowed object is
 398  
      *     {@link String }
 399  
      *     
 400  
      */
 401  
     public void setEtatAdresse(String value) {
 402  0
         this.etatAdresse = value;
 403  0
     }
 404  
 
 405  
     /**
 406  
      * Gets the value of the typeAdresse property.
 407  
      * 
 408  
      * @return
 409  
      *     possible object is
 410  
      *     {@link String }
 411  
      *     
 412  
      */
 413  
     public String getTypeAdresse() {
 414  0
         return typeAdresse;
 415  
     }
 416  
 
 417  
     /**
 418  
      * Sets the value of the typeAdresse property.
 419  
      * 
 420  
      * @param value
 421  
      *     allowed object is
 422  
      *     {@link String }
 423  
      *     
 424  
      */
 425  
     public void setTypeAdresse(String value) {
 426  0
         this.typeAdresse = value;
 427  0
     }
 428  
 
 429  
     /**
 430  
      * Gets the value of the statutAdresse property.
 431  
      * 
 432  
      * @return
 433  
      *     possible object is
 434  
      *     {@link String }
 435  
      *     
 436  
      */
 437  
     public String getStatutAdresse() {
 438  0
         return statutAdresse;
 439  
     }
 440  
 
 441  
     /**
 442  
      * Sets the value of the statutAdresse property.
 443  
      * 
 444  
      * @param value
 445  
      *     allowed object is
 446  
      *     {@link String }
 447  
      *     
 448  
      */
 449  
     public void setStatutAdresse(String value) {
 450  0
         this.statutAdresse = value;
 451  0
     }
 452  
 
 453  
     /**
 454  
      * Gets the value of the idVoie property.
 455  
      * 
 456  
      */
 457  
     public short getIdVoie() {
 458  0
         return idVoie;
 459  
     }
 460  
 
 461  
     /**
 462  
      * Sets the value of the idVoie property.
 463  
      * 
 464  
      */
 465  
     public void setIdVoie(short value) {
 466  0
         this.idVoie = value;
 467  0
     }
 468  
 
 469  
     /**
 470  
      * Gets the value of the idParcelle property.
 471  
      * 
 472  
      */
 473  
     public short getIdParcelle() {
 474  0
         return idParcelle;
 475  
     }
 476  
 
 477  
     /**
 478  
      * Sets the value of the idParcelle property.
 479  
      * 
 480  
      */
 481  
     public void setIdParcelle(short value) {
 482  0
         this.idParcelle = value;
 483  0
     }
 484  
 
 485  
     /**
 486  
      * Gets the value of the commune property.
 487  
      * 
 488  
      * @return
 489  
      *     possible object is
 490  
      *     {@link String }
 491  
      *     
 492  
      */
 493  
     public String getCommune() {
 494  0
         return commune;
 495  
     }
 496  
 
 497  
     /**
 498  
      * Sets the value of the commune property.
 499  
      * 
 500  
      * @param value
 501  
      *     allowed object is
 502  
      *     {@link String }
 503  
      *     
 504  
      */
 505  
     public void setCommune(String value) {
 506  0
         this.commune = value;
 507  0
     }
 508  
 
 509  
     /**
 510  
      * Gets the value of the codeInsee property.
 511  
      * 
 512  
      * @return
 513  
      *     possible object is
 514  
      *     {@link BigInteger }
 515  
      *     
 516  
      */
 517  
     public BigInteger getCodeInsee() {
 518  0
         return codeInsee;
 519  
     }
 520  
 
 521  
     /**
 522  
      * Sets the value of the codeInsee property.
 523  
      * 
 524  
      * @param value
 525  
      *     allowed object is
 526  
      *     {@link BigInteger }
 527  
      *     
 528  
      */
 529  
     public void setCodeInsee(BigInteger value) {
 530  0
         this.codeInsee = value;
 531  0
     }
 532  
 
 533  
     /**
 534  
      * Gets the value of the geoX property.
 535  
      * 
 536  
      */
 537  
     public float getGeoX() {
 538  0
         return geoX;
 539  
     }
 540  
 
 541  
     /**
 542  
      * Sets the value of the geoX property.
 543  
      * 
 544  
      */
 545  
     public void setGeoX(float value) {
 546  0
         this.geoX = value;
 547  0
     }
 548  
 
 549  
     /**
 550  
      * Gets the value of the geoY property.
 551  
      * 
 552  
      */
 553  
     public float getGeoY() {
 554  0
         return geoY;
 555  
     }
 556  
 
 557  
     /**
 558  
      * Sets the value of the geoY property.
 559  
      * 
 560  
      */
 561  
     public void setGeoY(float value) {
 562  0
         this.geoY = value;
 563  0
     }
 564  
 
 565  
 }