Can I ever get Objectify to return a Set<> or must it always be a List<>? And if sets are possible, then can I do
@Entity
public class A{
...
private Set<Key<B>> myBs; // where B is an entity, of course?
private SortedSet<Key<D>> myDs;// where D is an entity, of course?
}