Package org.jboss.errai.demo.grocery.client.shared

Examples of org.jboss.errai.demo.grocery.client.shared.GroceryList


    private GroceryList getGroceryList(final EntityManager em, final User user) {
        final TypedQuery<GroceryList> q = em.createNamedQuery("groceryListsForUser", GroceryList.class);
        q.setParameter("user", user);
        final List<GroceryList> groceryLists = q.getResultList();

        final GroceryList gl;
        if (groceryLists.isEmpty()) {
            gl = new GroceryList();
            gl.setOwner(user);
            em.persist(gl);
            em.flush();
        }
        else {
            gl = groceryLists.get(0);
View Full Code Here


  private GroceryList getGroceryList(final EntityManager em, final User user) {
    final TypedQuery<GroceryList> q = em.createNamedQuery("groceryListsForUser", GroceryList.class);
    q.setParameter("user", user);
    final List<GroceryList> groceryLists = q.getResultList();

    final GroceryList gl;
    if (groceryLists.isEmpty()) {
      gl = new GroceryList();
      gl.setOwner(user);
      em.persist(gl);
      em.flush();
    }
    else {
      gl = groceryLists.get(0);
View Full Code Here

TOP

Related Classes of org.jboss.errai.demo.grocery.client.shared.GroceryList

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.