source: ether_megapoli/trunk/service/implementation/com/medias/integration/hibernate/Fabriquant.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.2 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 * Fabriquant generated by hbm2java
10 */
11public class Fabriquant implements java.io.Serializable {
12
13        /**
14         *
15         */
16        private static final long serialVersionUID = 1L;
17
18        private int fabriquantId;
19
20        private String fabriquantNom;
21
22        private Set<Capteur> capteurs = new HashSet<Capteur>(0);
23
24        public Fabriquant() {
25        }
26
27        public Fabriquant(int fabriquantId, String fabriquantNom) {
28                this.fabriquantId = fabriquantId;
29                this.fabriquantNom = fabriquantNom;
30        }
31
32        public Fabriquant(int fabriquantId, String fabriquantNom,
33                        Set<Capteur> capteurs) {
34                this.fabriquantId = fabriquantId;
35                this.fabriquantNom = fabriquantNom;
36                this.capteurs = capteurs;
37        }
38
39        public int getFabriquantId() {
40                return this.fabriquantId;
41        }
42
43        public void setFabriquantId(int fabriquantId) {
44                this.fabriquantId = fabriquantId;
45        }
46
47        public String getFabriquantNom() {
48                return this.fabriquantNom;
49        }
50
51        public void setFabriquantNom(String fabriquantNom) {
52                this.fabriquantNom = fabriquantNom;
53        }
54
55        public Set<Capteur> getCapteurs() {
56                return this.capteurs;
57        }
58
59        public void setCapteurs(Set<Capteur> capteurs) {
60                this.capteurs = capteurs;
61        }
62
63}
Note: See TracBrowser for help on using the repository browser.