View Javadoc
1   /*
2    * Copyright (c) 2002-2017, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.elasticdata.modules.dansmarue.business;
35  
36  import fr.paris.lutece.plugins.elasticdata.business.AbstractDataObject;
37  
38  /**
39   * SignalementDataObject
40   */
41  public class SignalementDataObject extends AbstractDataObject
42  {
43  
44      // Variables declarations
45      private long   _nIdSignalement;
46      private String _strNumero;
47      private String _strPrecisionTerrain;
48      private String _strPriorite;
49      private String _strTypeSignalement;
50      private String _strAlias;
51      private String _strAliasMobile;
52      private String _strDirection;
53      private String _strQuartier;
54      private String _strAdresse;
55      private Double _nCoordX;
56      private Double _nCoordY;
57      private String _strArrondissement;
58      private String _strSecteur;
59      private String _strDateCeration;
60      private String _strHeureCeration;
61      private String _strEtat;
62      private String _strMailUsager;
63      private String _strCommentaireUsager;
64      private int    _nNbPhotos;
65      private String _strRaisonRejet;
66      private int    _nNbSuivis;
67      private int    _nNbFelicitations;
68      private String _strDateCloture;
69      private int    _nIsPhotoServiceFait;
70      private String _strMailDestinataireCourriel;
71      private String _strCourrielExpediteur;
72      private String _strDateEnvoiCourriel;
73      private int    _nIdMailServiceFait;
74      private String _strExecuteurServiceFait;
75      private String _strDateDerniereAction;
76      private String _strDatePrevuTraitement;
77      private String _strCommentaireAgentTerrain;
78      private String _strExecuteurRejet;
79      private String _strExecuteurMiseEnSurvreillance;
80      private int    _nNbRequalifications;
81      private String _strHeureServiceFait;
82      private String _strExecuteurPremiereRequalification;
83      private String _strExecuteurSecondeRequalification;
84      private int    _nPremierIdTypeSignalement;
85      private String _strPremiereDirection;
86  
87      // DMR-1994 5 colonnes vides pour l'implémentation dans Digdash
88      private String _strColonneVide1 = "";
89      private String _strColonneVide2 = "";
90      private String _strColonneVide3 = "";
91      private String _strColonneVide4 = "";
92      private String _strColonneVide5 = "";
93  
94      // BDAT-338 : ajout des dates création, cloture, dernière action, date prévu traitement, date envoi courriel, service fait comme timestamp JJ/MM/AAAA ; HH:MM:SS
95      private String _strTsDateCreation;
96      private String _strTsDateCloture;
97      private String _strTsDateDerniereAction;
98      private String _strTsDatePrevuTraitement;
99      private String _strTsDateEnvoiCourriel;
100     private String _strTsDateServiceFaitDatePassage;
101 
102     /**
103      *
104      * @return _nIdSignalement
105      */
106     public long getIdSignalement( )
107     {
108         return _nIdSignalement;
109     }
110 
111     /**
112      *
113      * @return _strNumero
114      */
115     public String getNumero( )
116     {
117         return _strNumero;
118     }
119 
120     /**
121      *
122      * @return _strPrecisionTerrain
123      */
124     public String getPrecisionTerrain( )
125     {
126         return _strPrecisionTerrain;
127     }
128 
129     /**
130      *
131      * @return _strPriorite
132      */
133     public String getPriorite( )
134     {
135         return _strPriorite;
136     }
137 
138     /**
139      *
140      * @return _strTypeSignalement
141      */
142     public String getTypeSignalement( )
143     {
144         return _strTypeSignalement;
145     }
146 
147     /**
148      *
149      * @return _strAlias
150      */
151     public String getAlias( )
152     {
153         return _strAlias;
154     }
155 
156     /**
157      *
158      * @return _strDirection
159      */
160     public String getDirection( )
161     {
162         return _strDirection;
163     }
164 
165     /**
166      *
167      * @return _strQuartier
168      */
169     public String getQuartier( )
170     {
171         return _strQuartier;
172     }
173 
174     /**
175      *
176      * @return _strAdresse
177      */
178     public String getAdresse( )
179     {
180         return _strAdresse;
181     }
182 
183     /**
184      *
185      * @return _nCoordX
186      */
187     public Double getCoordX( )
188     {
189         return _nCoordX;
190     }
191 
192     /**
193      *
194      * @return _nCoordY
195      */
196     public Double getCoordY( )
197     {
198         return _nCoordY;
199     }
200 
201     /**
202      *
203      * @return _strArrondissement
204      */
205     public String getArrondissement( )
206     {
207         return _strArrondissement;
208     }
209 
210     /**
211      *
212      * @return _strSecteur
213      */
214     public String getSecteur( )
215     {
216         return _strSecteur;
217     }
218 
219     /**
220      *
221      * @return _strDateCeration
222      */
223     public String getDateCeration( )
224     {
225         return _strDateCeration;
226     }
227 
228     /**
229      *
230      * @return _strHeureCeration
231      */
232     public String getHeureCeration( )
233     {
234         return _strHeureCeration;
235     }
236 
237     /**
238      *
239      * @return _strEtat
240      */
241     public String getEtat( )
242     {
243         return _strEtat;
244     }
245 
246     /**
247      *
248      * @return _strMailUsager
249      */
250     public String getMailUsager( )
251     {
252         return _strMailUsager;
253     }
254 
255     /**
256      *
257      * @return _strCommentaireUsager
258      */
259     public String getCommentaireUsager( )
260     {
261         return _strCommentaireUsager;
262     }
263 
264     /**
265      *
266      * @return _nNbPhotos
267      */
268     public int getNbPhotos( )
269     {
270         return _nNbPhotos;
271     }
272 
273     /**
274      *
275      * @return _strRaisonRejet
276      */
277     public String getRaisonRejet( )
278     {
279         return _strRaisonRejet;
280     }
281 
282     /**
283      *
284      * @return _nNbSuivis
285      */
286     public int getNbSuivis( )
287     {
288         return _nNbSuivis;
289     }
290 
291     /**
292      *
293      * @return _nNbFelicitations
294      */
295     public int getNbFelicitations( )
296     {
297         return _nNbFelicitations;
298     }
299 
300     /**
301      *
302      * @return _strDateCloture
303      */
304     public String getDateCloture( )
305     {
306         return _strDateCloture;
307     }
308 
309     /**
310      *
311      * @return _nIsPhotoServiceFait
312      */
313     public int getIsPhotoServiceFait( )
314     {
315 
316         return _nIsPhotoServiceFait;
317     }
318 
319     /**
320      *
321      * @return _strMailDestinataireCourriel
322      */
323     public String getMailDestinataireCourriel( )
324     {
325         return _strMailDestinataireCourriel;
326     }
327 
328     /**
329      *
330      * @return _strCourrielExpediteur
331      */
332     public String getCourrielExpediteur( )
333     {
334         return _strCourrielExpediteur;
335     }
336 
337     /**
338      *
339      * @return _strDateEnvoiCourriel
340      */
341     public String getDateEnvoiCourriel( )
342     {
343         return _strDateEnvoiCourriel;
344     }
345 
346     /**
347      *
348      * @return _nIdMailServiceFait
349      */
350     public int getIdMailServiceFait( )
351     {
352         return _nIdMailServiceFait;
353     }
354 
355     /**
356      *
357      * @return _strExecuteurServiceFait
358      */
359     public String getExecuteurServiceFait( )
360     {
361         return _strExecuteurServiceFait;
362     }
363 
364     /**
365      *
366      * @return _strDateDerniereAction
367      */
368     public String getDateDerniereAction( )
369     {
370         return _strDateDerniereAction;
371     }
372 
373     /**
374      *
375      * @return _strDatePrevuTraitement
376      */
377     public String getDatePrevuTraitement( )
378     {
379         return _strDatePrevuTraitement;
380     }
381 
382     /**
383      *
384      * @return _strCommentaireAgentTerrain
385      */
386     public String getCommentaireAgentTerrain( )
387     {
388         return _strCommentaireAgentTerrain;
389     }
390 
391     /**
392      *
393      * @return _strExecuteurRejet
394      */
395     public String getExecuteurRejet( )
396     {
397         return _strExecuteurRejet;
398     }
399 
400     /**
401      *
402      * @return _strExecuteurMiseEnSurvreillance
403      */
404     public String getExecuteurMiseEnSurvreillance( )
405     {
406         return _strExecuteurMiseEnSurvreillance;
407     }
408 
409     /**
410      *
411      * @return _nNbRequalifications
412      */
413     public int getNbRequalifications( )
414     {
415         return _nNbRequalifications;
416     }
417 
418     /**
419      *
420      * @param idSignalement
421      */
422     public void setIdSignalement( long idSignalement )
423     {
424         _nIdSignalement = idSignalement;
425     }
426 
427     /**
428      *
429      * @param numero
430      */
431     public void setNumero( String numero )
432     {
433         _strNumero = numero;
434     }
435 
436     /**
437      *
438      * @param precisionTerrain
439      */
440     public void setPrecisionTerrain( String precisionTerrain )
441     {
442         _strPrecisionTerrain = precisionTerrain;
443     }
444 
445     /**
446      *
447      * @param priorite
448      */
449     public void setPriorite( String priorite )
450     {
451         _strPriorite = priorite;
452     }
453 
454     /**
455      *
456      * @param typeSignalement
457      */
458     public void setTypeSignalement( String typeSignalement )
459     {
460         _strTypeSignalement = typeSignalement;
461     }
462 
463     /**
464      *
465      * @param alias
466      */
467     public void setAlias( String alias )
468     {
469         _strAlias = alias;
470     }
471 
472     /**
473      *
474      * @param direction
475      */
476     public void setDirection( String direction )
477     {
478         _strDirection = direction;
479     }
480 
481     /**
482      *
483      * @param quartier
484      */
485     public void setQuartier( String quartier )
486     {
487         _strQuartier = quartier;
488     }
489 
490     /**
491      *
492      * @param adresse
493      */
494     public void setAdresse( String adresse )
495     {
496         _strAdresse = adresse;
497     }
498 
499     /**
500      *
501      * @param coordX
502      */
503     public void setCoordX( Double coordX )
504     {
505         _nCoordX = coordX;
506     }
507 
508     /**
509      *
510      * @param coordY
511      */
512     public void setCoordY( Double coordY )
513     {
514         _nCoordY = coordY;
515     }
516 
517     /**
518      *
519      * @param arrondissement
520      */
521     public void setArrondissement( String arrondissement )
522     {
523         _strArrondissement = arrondissement;
524     }
525 
526     /**
527      *
528      * @param secteur
529      */
530     public void setSecteur( String secteur )
531     {
532         _strSecteur = secteur;
533     }
534 
535     /**
536      *
537      * @param dateCeration
538      */
539     public void setDateCeration( String dateCeration )
540     {
541         _strDateCeration = dateCeration;
542     }
543 
544     /**
545      *
546      * @param heureCeration
547      */
548     public void setHeureCeration( String heureCeration )
549     {
550         _strHeureCeration = heureCeration;
551     }
552 
553     /**
554      *
555      * @param etat
556      */
557     public void setEtat( String etat )
558     {
559         _strEtat = etat;
560     }
561 
562     /**
563      *
564      * @param mailUsager
565      */
566     public void setMailUsager( String mailUsager )
567     {
568         _strMailUsager = mailUsager;
569     }
570 
571     /**
572      *
573      * @param commentaireUsager
574      */
575     public void setCommentaireUsager( String commentaireUsager )
576     {
577         _strCommentaireUsager = commentaireUsager;
578     }
579 
580     /**
581      *
582      * @param nbPhotos
583      */
584     public void setNbPhotos( int nbPhotos )
585     {
586         _nNbPhotos = nbPhotos;
587     }
588 
589     /**
590      *
591      * @param raisonRejet
592      */
593     public void setRaisonRejet( String raisonRejet )
594     {
595         _strRaisonRejet = raisonRejet;
596     }
597 
598     /**
599      *
600      * @param nbSuivis
601      */
602     public void setNbSuivis( int nbSuivis )
603     {
604         _nNbSuivis = nbSuivis;
605     }
606 
607     /**
608      *
609      * @param nbFelicitations
610      */
611     public void setNbFelicitations( int nbFelicitations )
612     {
613         _nNbFelicitations = nbFelicitations;
614     }
615 
616     /**
617      *
618      * @param dateCloture
619      */
620     public void setDateCloture( String dateCloture )
621     {
622         _strDateCloture = dateCloture;
623     }
624 
625     /**
626      *
627      * @param isPhotoServiceFait
628      */
629     public void setIsPhotoServiceFait( int isPhotoServiceFait )
630     {
631         _nIsPhotoServiceFait = isPhotoServiceFait;
632     }
633 
634     /**
635      *
636      * @param mailDestinataireCourriel
637      */
638     public void setMailDestinataireCourriel( String mailDestinataireCourriel )
639     {
640         _strMailDestinataireCourriel = mailDestinataireCourriel;
641     }
642 
643     /**
644      *
645      * @param courrielExpediteur
646      */
647     public void setCourrielExpediteur( String courrielExpediteur )
648     {
649         _strCourrielExpediteur = courrielExpediteur;
650     }
651 
652     /**
653      *
654      * @param dateEnvoiCourriel
655      */
656     public void setDateEnvoiCourriel( String dateEnvoiCourriel )
657     {
658         _strDateEnvoiCourriel = dateEnvoiCourriel;
659     }
660 
661     /**
662      *
663      * @param idMailServiceFait
664      */
665     public void setIdMailServiceFait( int idMailServiceFait )
666     {
667         _nIdMailServiceFait = idMailServiceFait;
668     }
669 
670     /**
671      *
672      * @param executeurServiceFait
673      */
674     public void setExecuteurServiceFait( String executeurServiceFait )
675     {
676         _strExecuteurServiceFait = executeurServiceFait;
677     }
678 
679     /**
680      *
681      * @param dateDerniereAction
682      */
683     public void setDateDerniereAction( String dateDerniereAction )
684     {
685         _strDateDerniereAction = dateDerniereAction;
686     }
687 
688     /**
689      *
690      * @param datePrevuTraitement
691      */
692     public void setDatePrevuTraitement( String datePrevuTraitement )
693     {
694         _strDatePrevuTraitement = datePrevuTraitement;
695     }
696 
697     /**
698      *
699      * @param commentaireAgentTerrain
700      */
701     public void setCommentaireAgentTerrain( String commentaireAgentTerrain )
702     {
703         _strCommentaireAgentTerrain = commentaireAgentTerrain;
704     }
705 
706     /**
707      *
708      * @param executeurRejet
709      */
710     public void setExecuteurRejet( String executeurRejet )
711     {
712         _strExecuteurRejet = executeurRejet;
713     }
714 
715     /**
716      *
717      * @param executeurMiseEnSurvreillance
718      */
719     public void setExecuteurMiseEnSurvreillance( String executeurMiseEnSurvreillance )
720     {
721         _strExecuteurMiseEnSurvreillance = executeurMiseEnSurvreillance;
722     }
723 
724     /**
725      *
726      * @return _strAliasMobile
727      */
728     public String getAliasMobile( )
729     {
730         return _strAliasMobile;
731     }
732 
733     /**
734      *
735      * @param aliasMobile
736      */
737     public void setAliasMobile( String aliasMobile )
738     {
739         _strAliasMobile = aliasMobile;
740     }
741 
742     /**
743      *
744      * @param nbRequalifications
745      */
746     public void setNbRequalifications( int nbRequalifications )
747     {
748         _nNbRequalifications = nbRequalifications;
749     }
750 
751     public String getColonneVide1( )
752     {
753         return _strColonneVide1;
754     }
755 
756     public String getColonneVide2( )
757     {
758         return _strColonneVide2;
759     }
760 
761     public String getColonneVide3( )
762     {
763         return _strColonneVide3;
764     }
765 
766     public String getColonneVide4( )
767     {
768         return _strColonneVide4;
769     }
770 
771     public String getColonneVide5( )
772     {
773         return _strColonneVide5;
774     }
775 
776     public void setColonneVide1( String colonneVide1 )
777     {
778         _strColonneVide1 = colonneVide1;
779     }
780 
781     public void setColonneVide2( String colonneVide2 )
782     {
783         _strColonneVide2 = colonneVide2;
784     }
785 
786     public void setColonneVide3( String colonneVide3 )
787     {
788         _strColonneVide3 = colonneVide3;
789     }
790 
791     public void setColonneVide4( String colonneVide4 )
792     {
793         _strColonneVide4 = colonneVide4;
794     }
795 
796     public void setColonneVide5( String colonneVide5 )
797     {
798         _strColonneVide5 = colonneVide5;
799     }
800 
801     public String getHeureServiceFait( )
802     {
803         return _strHeureServiceFait;
804     }
805 
806     public void setHeureServiceFait( String heureServiceFait )
807     {
808         _strHeureServiceFait = heureServiceFait;
809     }
810 
811     public String getExecuteurPremiereRequalification( )
812     {
813         return _strExecuteurPremiereRequalification;
814     }
815 
816     public String getExecuteurSecondeRequalification( )
817     {
818         return _strExecuteurSecondeRequalification;
819     }
820 
821     public int getPremierIdTypeSignalement( )
822     {
823         return _nPremierIdTypeSignalement;
824     }
825 
826     public String getPremiereDirection( )
827     {
828         return _strPremiereDirection;
829     }
830 
831     public void setExecuteurPremiereRequalification( String executeurPremiereRequalification )
832     {
833         _strExecuteurPremiereRequalification = executeurPremiereRequalification;
834     }
835 
836     public void setExecuteurSecondeRequalification( String executeurSecondeRequalification )
837     {
838         _strExecuteurSecondeRequalification = executeurSecondeRequalification;
839     }
840 
841     public void setPremierIdTypeSignalement( int premierIdTypeSignalement )
842     {
843         _nPremierIdTypeSignalement = premierIdTypeSignalement;
844     }
845 
846     public void setPremiereDirection( String premiereDirection )
847     {
848         _strPremiereDirection = premiereDirection;
849     }
850 
851 
852     public void setTsDateCreation(String tsDateCreation) {
853         this._strTsDateCreation = tsDateCreation;
854     }
855 
856     public void setTsDateCloture(String tsDateCloture) {
857         this._strTsDateCloture = tsDateCloture;
858     }
859 
860     public void setTsDateDerniereAction(String tsDateDerniereAction) {
861         this._strTsDateDerniereAction = tsDateDerniereAction;
862     }
863 
864     public void setTsDatePrevuTraitement(String tsDatePrevuTraitement) {
865         this._strTsDatePrevuTraitement = tsDatePrevuTraitement;
866     }
867 
868     public void setTsDateEnvoiCourriel(String tsDateEnvoiCourriel) {
869         this._strTsDateEnvoiCourriel = tsDateEnvoiCourriel;
870     }
871 
872     public void setTsDateServiceFaitDatePassage(String tsDateServiceFaitDatePassage) {
873         this._strTsDateServiceFaitDatePassage = tsDateServiceFaitDatePassage;
874     }
875 
876     public String getTsDateCreation() {
877         return this._strTsDateCreation ;
878     }
879 
880     public String getTsDateCloture() {
881         return this._strTsDateCloture ;
882     }
883 
884     public String getTsDateDerniereAction() {
885         return this._strTsDateDerniereAction;
886     }
887 
888     public String getTsDatePrevuTraitement() {
889         return this._strTsDatePrevuTraitement;
890     }
891 
892     public String getTsDateEnvoiCourriel() {
893         return this._strTsDateEnvoiCourriel;
894     }
895 
896     public String getTsDateServiceFaitDatePassage() {
897         return this._strTsDateServiceFaitDatePassage ;
898     }
899 }