package com.avaje.ebeaninternal.server.cache; import java.util.List; /** * The cached data for O2M and M2M relationships. *

* This is effectively just the Id values for each of the beans in the collection. *

*/ public class CachedManyIds { private final List idList; public CachedManyIds(List idList) { this.idList = idList; } public String toString() { return idList.toString(); } public List getIdList() { return idList; } }