001: package org.objectweb.speedo.pobjects.userid;
002:
003: import java.util.Date;
004:
005: /**
006: * Table des conventions.
007: *
008: * TSMF7B00
009: *
010: * @persistent
011: * @rdbPhysicalName ConventionHelper
012: * @rdbPhysicalPrimaryKeyName DSMF7B00
013: */
014: public class ConventionHelper {
015:
016: /** Identifiant unique de serialisation */
017: static final private long serialVersionUID = 0;
018:
019: /**
020: * @rdbPhysicalName DDMEC
021: * @rdbNotNull
022: * @rdbSize 7
023: * @rdbDigits 0
024: * @rdbLogicalType Date
025: * @rdbPrimaryKey
026: */
027: private Date ddmec;
028:
029: /** Code marque */
030: private String cdmem;
031:
032: /** Code domaine */
033: private String cdmed;
034:
035: /** Code competence */
036: private String cdmec;
037:
038: /** Code specialite elementaire */
039: private String cdmese;
040:
041: /** Code intervenant */
042: private long nomep;
043:
044: /**
045: * @rdbPhysicalName KSMF7B00
046: * @rdbIdentifying
047: */
048: private IntervenantHelper intervenant;
049:
050: public String getCdmec() {
051: return cdmec;
052: }
053:
054: public String getCdmem() {
055: return cdmem;
056: }
057:
058: public String getCdmed() {
059: return cdmed;
060: }
061:
062: public IntervenantHelper getIntervenant() {
063: return intervenant;
064: }
065:
066: public long getNomep() {
067: return nomep;
068: }
069:
070: public Date getDdmec() {
071: return ddmec;
072: }
073:
074: public String getCdmese() {
075: return cdmese;
076: }
077:
078: public void setCdmec(String pCdmec) {
079: this .cdmec = pCdmec;
080: }
081:
082: public void setCdmem(String pCdmem) {
083: this .cdmem = pCdmem;
084: }
085:
086: public void setCdmed(String pCdmed) {
087: this .cdmed = pCdmed;
088: }
089:
090: public void setIntervenant(IntervenantHelper pIntervenant) {
091: this .intervenant = pIntervenant;
092: }
093:
094: public void setNomep(long pNomep) {
095: this .nomep = pNomep;
096: }
097:
098: public void setDdmec(Date pDdmec) {
099: this .ddmec = pDdmec;
100: }
101:
102: public void setCdmese(String pCdmese) {
103: this .cdmese = pCdmese;
104: }
105:
106: /**
107: * Constructeur par defaut.
108: */
109: public ConventionHelper() {
110: }
111:
112: }
|