Package net.fqsc.inscriptions.model.identification

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


  private void CreateComponents()
  {
    final List<Personne> listePersonnes = this.personnes.getList();
    List<Compte> listeComptes;
    Comptes comptes;

    // Voila le topo: Pour chaque personne, pour chaque compte de la
    // personne, on l'ajoute si le compte est admin.
    for (final Personne personne : listePersonnes)
    {
      comptes = personne.getComptes();
      listeComptes = comptes.getList();

      for (final Compte compte : listeComptes)
      {
        if (compte.getAdmin())
        {
View Full Code Here


  @Override
  protected void populateItem(final Item item)
  {

    final Personne personne = (Personne) item.getModelObject();
    final Comptes comptes = personne.getComptes();
    Map map = new HashMap();

    // si la page est train de gérer les admin
    if (this.admin)
    {
      // Si l'usager possède un compte
      if (comptes.getList().size() > 0)
      {
        map.put("Oid", personne.getOid());
        item.add(HomePage.link("selection", DisplayPersonneAdmin.class,
            map));
      }
View Full Code Here

  private void createTestCompte(final Personne personne,
      final String nomUsager, final String password, final boolean admin)
      throws ActionException
  {
    final Comptes comptes = personne.getComptes();

    comptes.createCompte(nomUsager, password, admin);

    this.outputErrors(comptes);
  }
View Full Code Here

TOP

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

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.