source: ether_statistics/domain/interface/com/medias/database/objects/Personne.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 2.9 KB
Line 
1package com.medias.database.objects;
2
3// Generated 5 févr. 2007 11:07:11 by Hibernate Tools 3.2.0.b9
4
5import java.util.HashSet;
6import java.util.Set;
7
8/**
9 * Personne generated by hbm2java
10 */
11public class Personne implements java.io.Serializable {
12
13        /**
14         *
15         */
16        private static final long serialVersionUID = 1L;
17
18        private int personneId;
19
20        private Organisme organisme;
21
22        private Commentaire commentaire;
23
24        private String personneNom;
25
26        private String personnePrenom;
27
28        private String personneMail;
29
30        private Set<Jeu> jeusForContactId = new HashSet<Jeu>(0);
31
32        private Set<Jeu> jeusForPiId = new HashSet<Jeu>(0);
33
34        private Set<Jeu> jeusForIntegrateurId = new HashSet<Jeu>(0);
35
36        public Personne() {
37        }
38
39        public Personne(int personneId, Organisme organisme, String personneMail) {
40                this.personneId = personneId;
41                this.organisme = organisme;
42                this.personneMail = personneMail;
43        }
44
45        public Personne(int personneId, Organisme organisme,
46                        Commentaire commentaire, String personneNom, String personnePrenom,
47                        String personneMail, Set<Jeu> jeusForContactId,
48                        Set<Jeu> jeusForPiId, Set<Jeu> jeusForIntegrateurId) {
49                this.personneId = personneId;
50                this.organisme = organisme;
51                this.commentaire = commentaire;
52                this.personneNom = personneNom;
53                this.personnePrenom = personnePrenom;
54                this.personneMail = personneMail;
55                this.jeusForContactId = jeusForContactId;
56                this.jeusForPiId = jeusForPiId;
57                this.jeusForIntegrateurId = jeusForIntegrateurId;
58        }
59
60        public int getPersonneId() {
61                return this.personneId;
62        }
63
64        public void setPersonneId(int personneId) {
65                this.personneId = personneId;
66        }
67
68        public Organisme getOrganisme() {
69                return this.organisme;
70        }
71
72        public void setOrganisme(Organisme organisme) {
73                this.organisme = organisme;
74        }
75
76        public Commentaire getCommentaire() {
77                return this.commentaire;
78        }
79
80        public void setCommentaire(Commentaire commentaire) {
81                this.commentaire = commentaire;
82        }
83
84        public String getPersonneNom() {
85                return this.personneNom;
86        }
87
88        public void setPersonneNom(String personneNom) {
89                this.personneNom = personneNom;
90        }
91
92        public String getPersonnePrenom() {
93                return this.personnePrenom;
94        }
95
96        public void setPersonnePrenom(String personnePrenom) {
97                this.personnePrenom = personnePrenom;
98        }
99
100        public String getPersonneMail() {
101                return this.personneMail;
102        }
103
104        public void setPersonneMail(String personneMail) {
105                this.personneMail = personneMail;
106        }
107
108        public Set<Jeu> getJeusForContactId() {
109                return this.jeusForContactId;
110        }
111
112        public void setJeusForContactId(Set<Jeu> jeusForContactId) {
113                this.jeusForContactId = jeusForContactId;
114        }
115
116        public Set<Jeu> getJeusForPiId() {
117                return this.jeusForPiId;
118        }
119
120        public void setJeusForPiId(Set<Jeu> jeusForPiId) {
121                this.jeusForPiId = jeusForPiId;
122        }
123
124        public Set<Jeu> getJeusForIntegrateurId() {
125                return this.jeusForIntegrateurId;
126        }
127
128        public void setJeusForIntegrateurId(Set<Jeu> jeusForIntegrateurId) {
129                this.jeusForIntegrateurId = jeusForIntegrateurId;
130        }
131
132}
Note: See TracBrowser for help on using the repository browser.