source: ether_megapoli/trunk/service/implementation/com/medias/integration/hibernate/Plateforme.java @ 482

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

BO insertion données _ insertion code medias package insertion

  • Property svn:executable set to *
File size: 3.1 KB
Line 
1package integration.hibernate;
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 * Plateforme generated by hbm2java
10 */
11public class Plateforme implements java.io.Serializable {
12
13        /**
14         *
15         */
16        private static final long serialVersionUID = 1L;
17
18        private int plateformeId;
19
20        private Commentaire commentaire;
21
22        private TypePlateforme typePlateforme;
23
24        private String plateformeNom;
25
26        private Set<Bilan> bilans = new HashSet<Bilan>(0);
27
28        private Set<Mesure> mesures = new HashSet<Mesure>(0);
29
30        private Set<Parametre> parametres = new HashSet<Parametre>(0);
31
32        private Set<Capteur> capteurs = new HashSet<Capteur>(0);
33
34        private Set<RequetePlatLoc> requetePlatLocs = new HashSet<RequetePlatLoc>(0);
35
36        private Set<Jeu> jeus = new HashSet<Jeu>(0);
37
38        public Plateforme() {
39        }
40
41        public Plateforme(int plateformeId, TypePlateforme typePlateforme,
42                        String plateformeNom) {
43                this.plateformeId = plateformeId;
44                this.typePlateforme = typePlateforme;
45                this.plateformeNom = plateformeNom;
46        }
47
48        public Plateforme(int plateformeId, Commentaire commentaire,
49                        TypePlateforme typePlateforme, String plateformeNom,
50                        Set<Bilan> bilans, Set<Mesure> mesures, Set<Parametre> parametres,
51                        Set<Capteur> capteurs, Set<RequetePlatLoc> requetePlatLocs,
52                        Set<Jeu> jeus) {
53                this.plateformeId = plateformeId;
54                this.commentaire = commentaire;
55                this.typePlateforme = typePlateforme;
56                this.plateformeNom = plateformeNom;
57                this.bilans = bilans;
58                this.mesures = mesures;
59                this.parametres = parametres;
60                this.capteurs = capteurs;
61                this.requetePlatLocs = requetePlatLocs;
62                this.jeus = jeus;
63        }
64
65        public int getPlateformeId() {
66                return this.plateformeId;
67        }
68
69        public void setPlateformeId(int plateformeId) {
70                this.plateformeId = plateformeId;
71        }
72
73        public Commentaire getCommentaire() {
74                return this.commentaire;
75        }
76
77        public void setCommentaire(Commentaire commentaire) {
78                this.commentaire = commentaire;
79        }
80
81        public TypePlateforme getTypePlateforme() {
82                return this.typePlateforme;
83        }
84
85        public void setTypePlateforme(TypePlateforme typePlateforme) {
86                this.typePlateforme = typePlateforme;
87        }
88
89        public String getPlateformeNom() {
90                return this.plateformeNom;
91        }
92
93        public void setPlateformeNom(String plateformeNom) {
94                this.plateformeNom = plateformeNom;
95        }
96
97        public Set<Bilan> getBilans() {
98                return this.bilans;
99        }
100
101        public void setBilans(Set<Bilan> bilans) {
102                this.bilans = bilans;
103        }
104
105        public Set<Mesure> getMesures() {
106                return this.mesures;
107        }
108
109        public void setMesures(Set<Mesure> mesures) {
110                this.mesures = mesures;
111        }
112
113        public Set<Parametre> getParametres() {
114                return this.parametres;
115        }
116
117        public void setParametres(Set<Parametre> parametres) {
118                this.parametres = parametres;
119        }
120
121        public Set<Capteur> getCapteurs() {
122                return this.capteurs;
123        }
124
125        public void setCapteurs(Set<Capteur> capteurs) {
126                this.capteurs = capteurs;
127        }
128
129        public Set<RequetePlatLoc> getRequetePlatLocs() {
130                return this.requetePlatLocs;
131        }
132
133        public void setRequetePlatLocs(Set<RequetePlatLoc> requetePlatLocs) {
134                this.requetePlatLocs = requetePlatLocs;
135        }
136
137        public Set<Jeu> getJeus() {
138                return this.jeus;
139        }
140
141        public void setJeus(Set<Jeu> jeus) {
142                this.jeus = jeus;
143        }
144
145}
Note: See TracBrowser for help on using the repository browser.