All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebeaninternal.server.cache.CachedManyIds Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
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; } }