source: ether_megapoli/trunk/service/implementation/com/medias/integration/hibernate/Flag.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: 2.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 * Flag generated by hbm2java
10 */
11public class Flag implements java.io.Serializable {
12
13        /**
14         *
15         */
16        private static final long serialVersionUID = 1L;
17
18        private int flagId;
19
20        private String flagNom;
21
22        private Set<Valeur> valeursForValiditeFlag = new HashSet<Valeur>(0);
23
24        private Set<Localisation> localisationsForLatlonFlag = new HashSet<Localisation>(
25                        0);
26
27        private Set<Valeur> valeursForValeurFlag = new HashSet<Valeur>(0);
28
29        private Set<Localisation> localisationsForAltitudeFlag = new HashSet<Localisation>(
30                        0);
31
32        public Flag() {
33        }
34
35        public Flag(int flagId, String flagNom) {
36                this.flagId = flagId;
37                this.flagNom = flagNom;
38        }
39
40        public Flag(int flagId, String flagNom, Set<Valeur> valeursForValiditeFlag,
41                        Set<Localisation> localisationsForLatlonFlag,
42                        Set<Valeur> valeursForValeurFlag,
43                        Set<Localisation> localisationsForAltitudeFlag) {
44                this.flagId = flagId;
45                this.flagNom = flagNom;
46                this.valeursForValiditeFlag = valeursForValiditeFlag;
47                this.localisationsForLatlonFlag = localisationsForLatlonFlag;
48                this.valeursForValeurFlag = valeursForValeurFlag;
49                this.localisationsForAltitudeFlag = localisationsForAltitudeFlag;
50        }
51
52        public int getFlagId() {
53                return this.flagId;
54        }
55
56        public void setFlagId(int flagId) {
57                this.flagId = flagId;
58        }
59
60        public String getFlagNom() {
61                return this.flagNom;
62        }
63
64        public void setFlagNom(String flagNom) {
65                this.flagNom = flagNom;
66        }
67
68        public Set<Valeur> getValeursForValiditeFlag() {
69                return this.valeursForValiditeFlag;
70        }
71
72        public void setValeursForValiditeFlag(Set<Valeur> valeursForValiditeFlag) {
73                this.valeursForValiditeFlag = valeursForValiditeFlag;
74        }
75
76        public Set<Localisation> getLocalisationsForLatlonFlag() {
77                return this.localisationsForLatlonFlag;
78        }
79
80        public void setLocalisationsForLatlonFlag(
81                        Set<Localisation> localisationsForLatlonFlag) {
82                this.localisationsForLatlonFlag = localisationsForLatlonFlag;
83        }
84
85        public Set<Valeur> getValeursForValeurFlag() {
86                return this.valeursForValeurFlag;
87        }
88
89        public void setValeursForValeurFlag(Set<Valeur> valeursForValeurFlag) {
90                this.valeursForValeurFlag = valeursForValeurFlag;
91        }
92
93        public Set<Localisation> getLocalisationsForAltitudeFlag() {
94                return this.localisationsForAltitudeFlag;
95        }
96
97        public void setLocalisationsForAltitudeFlag(
98                        Set<Localisation> localisationsForAltitudeFlag) {
99                this.localisationsForAltitudeFlag = localisationsForAltitudeFlag;
100        }
101
102}
Note: See TracBrowser for help on using the repository browser.