Package info.galleria.domain

Examples of info.galleria.domain.Group


    }
  }

  private Group createRegisteredUsersGroup()
  {
    Group group = new Group(REGISTERED_USERS_GROUP_NAME);
    groupRepository.create(group);
    return group;
  }
View Full Code Here


  @Override
  public Group modify(Group group)
  {
    em.find(Group.class, group.getGroupId());
    Group mergedGroup = em.merge(group);
    return mergedGroup;
  }
View Full Code Here

  }

  @Override
  public void delete(Group group)
  {
    Group mergedGroup = em.merge(group);
    em.remove(mergedGroup);
  }
View Full Code Here

  }

  @Override
  public Group findById(String groupId)
  {
    Group group = em.find(Group.class, groupId);
    return group;
  }
View Full Code Here

TOP

Related Classes of info.galleria.domain.Group

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.