Package fr.emn.nuitinfo.model

Examples of fr.emn.nuitinfo.model.Utilisateur


  @Override
  public List<IUtilisateur> retrieveAll() {

    if (users.isEmpty()) {
      users.add(new Utilisateur("Geek", "Student Inside", "GSI",
          "gsiemn@googlegroups.com", "gsi"));

      users.add(new Utilisateur("Tata", "Toto Inside", "Tutu",
          "gsiemn@googlegroups.com", "tutu"));
    }
    return users;
  }
View Full Code Here


  }

  @Override
  public void create(String t) {
    Gson gson = new Gson();
    Utilisateur utilisateur = gson.fromJson(t, Utilisateur.class);
    ofy().save().entity(utilisateur);
  }
View Full Code Here

TOP

Related Classes of fr.emn.nuitinfo.model.Utilisateur

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.