@GET
@Produces({ JSON })
public GroupList listGroup() throws CloudException {
AuthenticatedUser user = getAuthenticatedUser();
GroupList response = new GroupList();
response.groups = Lists.newArrayList();
for (GroupData data : identityService.listGroups(user)) {
Group domain = toModel(data);
response.groups.add(domain);