1 package org.objectweb.speedo.pobjects.userid; 2 3 import java.util.Collection ; 4 5 14 public class IntervenantHelper { 15 16 17 static final private long serialVersionUID = 0; 18 19 27 private long nomep; 28 29 30 private Collection conventions; 31 32 35 public IntervenantHelper() { 36 } 37 38 43 public long getNomep() { 44 return nomep; 45 } 46 47 53 public void setNomep(long pNomep) { 54 nomep = pNomep; 55 } 56 57 62 public Collection getConventions() { 63 return conventions; 64 } 65 66 72 public void setConventions(Collection pConventions) { 73 conventions = pConventions; 74 } 75 76 } 77 | Popular Tags |