source: ether_megapoli/trunk/service/implementation/com/medias/integration/hibernate/TypeCapteur.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: 1.5 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 * TypeCapteur generated by hbm2java
10 */
11public class TypeCapteur implements java.io.Serializable {
12
13        /**
14         *
15         */
16        private static final long serialVersionUID = 1L;
17
18        private int typeCapteurId;
19
20        private Commentaire commentaire;
21
22        private String typeCapteurNom;
23
24        private Set<Capteur> capteurs = new HashSet<Capteur>(0);
25
26        public TypeCapteur() {
27        }
28
29        public TypeCapteur(int typeCapteurId, String typeCapteurNom) {
30                this.typeCapteurId = typeCapteurId;
31                this.typeCapteurNom = typeCapteurNom;
32        }
33
34        public TypeCapteur(int typeCapteurId, Commentaire commentaire,
35                        String typeCapteurNom, Set<Capteur> capteurs) {
36                this.typeCapteurId = typeCapteurId;
37                this.commentaire = commentaire;
38                this.typeCapteurNom = typeCapteurNom;
39                this.capteurs = capteurs;
40        }
41
42        public int getTypeCapteurId() {
43                return this.typeCapteurId;
44        }
45
46        public void setTypeCapteurId(int typeCapteurId) {
47                this.typeCapteurId = typeCapteurId;
48        }
49
50        public Commentaire getCommentaire() {
51                return this.commentaire;
52        }
53
54        public void setCommentaire(Commentaire commentaire) {
55                this.commentaire = commentaire;
56        }
57
58        public String getTypeCapteurNom() {
59                return this.typeCapteurNom;
60        }
61
62        public void setTypeCapteurNom(String typeCapteurNom) {
63                this.typeCapteurNom = typeCapteurNom;
64        }
65
66        public Set<Capteur> getCapteurs() {
67                return this.capteurs;
68        }
69
70        public void setCapteurs(Set<Capteur> capteurs) {
71                this.capteurs = capteurs;
72        }
73
74}
Note: See TracBrowser for help on using the repository browser.