142143144145146147148
return getPeopleByIds(getSingleResult(query.getResultList())); } @Override public List<Person> findByGroup(String groupId, String appId) { throw new NotSupportedException(); }
147148149150151152153
throw new NotSupportedException(); } @Override public List<Person> findByGroupWithFriend(String groupId, String friendUsername) { throw new NotSupportedException(); }
129130131132133134135
if (values.isEmpty()) { return null; } else if (values.size() == 1) { return values.get(0); } throw new NotSupportedException("Cannot return single value for a List of size " + values.size()); }
78798081828384
return connections; } @Override public List<Person> findAllConnectedPeople(String username, String appId) { throw new NotSupportedException(); }
83848586878889
throw new NotSupportedException(); } @Override public List<Person> findAllConnectedPeopleWithFriend(String username, String friendUsername) { throw new NotSupportedException(); }
74757677787980
79808182838485
138139140141142143144