Subversion Repositories eFlore/Applications.coel

Rev

Rev 1906 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.tela_botanica.client.modeles;

/**
 * Une mini classe pour stocker facilement le retour d'un appel aux services
 * annuaire:auth (connexion, deconnexion, identite)
 * 
 * @author mathias
 */
public class AuthInfo {

        public String token;
        public boolean session;
        public String tokenId;
        public int duration;
        public Integer lastModif; // Integer pour pouvoir mettre null dedans
        public String error;

        public AuthInfo(String token, boolean session, String tokenId, int duration, Integer lastModif, String error) {
                this.token = token;
                this.session = session;
                this.tokenId = tokenId;
                this.duration = duration;
                this.lastModif = lastModif;
                this.error = error;
        }

        public AuthInfo() {
                this(null, false, null, 0, null, null);
        }
}