Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 595 → Rev 596

/trunk/src/org/tela_botanica/client/modeles/Utilisateur.java
7,6 → 7,7
private String identite=null;
private boolean identifie=false;
private boolean isAdmin=false;
private boolean licenceAcceptee=false;
 
public Utilisateur(String identifiant, boolean identifie) {
this.identifiant=identifiant;
69,4 → 70,12
return identite;
}
public void setLicenceAcceptee(boolean licenceAcceptee) {
this.licenceAcceptee = licenceAcceptee;
}
public boolean getLicenceAcceptee() {
return licenceAcceptee;
}
}