01: package org.objectweb.speedo.pobjects.userid;
02:
03: import java.util.Collection;
04:
05: /**
06: * Table des intervenants.
07: *
08: * TSMF7D00
09: *
10: * @persistent
11: * @rdbPhysicalName IntervenantHelper
12: * @rdbPhysicalPrimaryKeyName DSMF7D00
13: */
14: public class IntervenantHelper {
15:
16: /** Identifiant unique de serialisation */
17: static final private long serialVersionUID = 0;
18:
19: /**
20: * @rdbPhysicalName NOMEP
21: * @rdbNotNull
22: * @rdbSize 8
23: * @rdbDigits 0
24: * @rdbLogicalType DECIMAL
25: * @rdbPrimaryKey
26: */
27: private long nomep;
28:
29: /** Liste des conventions */
30: private Collection conventions;
31:
32: /**
33: * Constructeur par defaut.
34: */
35: public IntervenantHelper() {
36: }
37:
38: /**
39: * Getter de nomep.
40: *
41: * @return nomep
42: */
43: public long getNomep() {
44: return nomep;
45: }
46:
47: /**
48: * Setter de nomep.
49: *
50: * @param pNomep
51: * Nouvelle valeur de nomep
52: */
53: public void setNomep(long pNomep) {
54: nomep = pNomep;
55: }
56:
57: /**
58: * Getter de conventions.
59: *
60: * @return conventions
61: */
62: public Collection getConventions() {
63: return conventions;
64: }
65:
66: /**
67: * Setter de conventions.
68: *
69: * @param pConventions
70: * Nouvelle valeur de conventions
71: */
72: public void setConventions(Collection pConventions) {
73: conventions = pConventions;
74: }
75:
76: }
|