Package net.fqsc.inscriptions.model.identification

Examples of net.fqsc.inscriptions.model.identification.Compte


  }
 
 
  public Compte createCompte(final String username, final String password, final Personne personne){
   
    Compte compte = null;
       
    try{
     
      Validate.argNotNull(username, "username");
      Validate.argNotNull(password, "password");
View Full Code Here


      final String ville, final String codePostal, final String telephone,
      final Date dateNaissance, final String sexe, final String province, final String pays,
      final String courriel, final String nationalite, final String username, final String password){
   
    Personne personne = null;
    Compte compte = null;
   
    if(!this.isUsernameUsed(username)){
     
      personne = this.createPersonne(nom, prenom, adresse, ville, codePostal, telephone, dateNaissance, sexe, province, pays, courriel, nationalite);
      compte = this.createCompte(username, password, personne);        
    }
    else throw new UniqueException("Le nom d'usager existe déjà");
   
   
    return !compte.equals(null);
  }
View Full Code Here

    final Personne personne = personnes.getPersonne(this.user
        .getPersonneOid().getUniqueNumber());

    for (final Object object : personne.getComptes().getList())
    {
      Compte compte;
      compte = (Compte) object;
      if (compte.getAdmin())
      {
        return true;
      }
    }
View Full Code Here

  {
    final InscriptionsApp app = (InscriptionsApp) this.getApplication();
   
    final Personnes personnes = (Personnes)app.getEntry("Personnes");
   
    final Compte compte = personnes.getCompteByMail(this.courriel);
   
   
    if (compte == null)
    {
      this.error("Il n'y a aucun compte correspondant a votre mail.");
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.identification.Compte

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.