package io.ebeaninternal.xmapping.api; import java.util.ArrayList; import java.util.List; /** * External mapping for Entity and DTO beans. */ public class XmapEbean { protected final List entity = new ArrayList<>(); protected final List dto = new ArrayList<>(); public List getEntity() { return entity; } public List getDto() { return dto; } }