00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 package org.openmobileis.modules.crm.data.common;
00030
00031 import java.io.Serializable;
00032
00033
00042 public class DefaultRepresentant implements Representant, Serializable {
00043 protected static final long serialVersionUID = 5521257935120563452L;
00044
00045 private String langue="fr";
00046 private String id;
00047
00048 private boolean installRep;
00049 private boolean selectedRep;
00050 private String profil="";
00051
00055 protected DefaultRepresentant() {
00056 super();
00057 }
00058
00063 public DefaultRepresentant(String id) {
00064 this.id = id;
00065 }
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076 public String getRepresentantId() {
00077 return this.id;
00078 }
00079
00084 public String getLangue() {
00085 return langue;
00086 }
00087
00092 public void setLangue(String langue) {
00093 this.langue = langue;
00094 }
00095
00096 public boolean isInstallRepresentant() {
00097 return installRep;
00098 }
00099 public void setInstallRepresentant(boolean bool) {
00100 installRep = bool;
00101 }
00102
00103 public boolean isSelectedRepresentant() {
00104 return selectedRep;
00105 }
00106 public void setSelectedRepresentant(boolean bool) {
00107 selectedRep = bool;
00108 }
00112 public String getProfil() {
00113 return profil;
00114 }
00115
00119 public void setProfil(String string) {
00120 profil = string;
00121 }
00122
00123 }