Subversion Repositories eFlore/Applications.coel

Rev

Rev 64 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.tela_botanica.client.modeles;

import java.io.Serializable;
import java.util.Iterator;
import java.util.Set;

import com.extjs.gxt.ui.client.data.BaseModelData;
import com.google.gwt.json.client.JSONObject;

public class Utilisateur extends BaseModelData implements Serializable {

        /**
         * 
         */
        private static final long serialVersionUID = 1L;
        
        private String identifiant = null;
        private boolean identifie = false;

        public Utilisateur(String identifiant, boolean identifie) {
                this.identifiant = identifiant;
                this.identifie = identifie;
        }

        /**
         * Constructeur avec un objet JSON
         * 
         * @param image
         */
        public Utilisateur(JSONObject utilisateur) {
                // l'objet JSON est une table de hachage
                Set<String> im = utilisateur.keySet();

                // Parcourt pour chaque clé
                for (Iterator<String> it = im.iterator(); it.hasNext();) {
                        // Si elle est associée à une valeur, nous l'ajoutons
                        String cle = it.next();
                        // Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
                        String cleObjet = cle.replaceFirst("^cp_", "");
                        if (utilisateur.get(cle).isString() != null) {
                                String valeur = utilisateur.get(cle).isString().stringValue();
                                this.set(cleObjet, valeur);
                        } else {
                                // Sinon, nous ajoutons la clé avec une valeur vide
                                String valeur = " ";
                                this.set(cleObjet, valeur);
                        }
                }
        }
        
        public void setNom(String nom) {
                set("nom", nom);
        }
        
        public void setPrenom(String prenom) {
                set("prenom", prenom);
        }
        
        /**
         * Retourne l'identifiant de l'utilisateur identifié ou un identifiant de session.
         * @return String identifiant
         */
        public String getIdentifiant() {
                return identifiant;
        }

        /**
         * Retourne vrai si utilisateur est identifié.
         * @return boolean
         */
        public boolean isIdentifie() {
                return identifie;
        }
        
        
}