package io.ebeaninternal.server.deploy; import io.ebean.SqlUpdate; import io.ebean.bean.EntityBean; import io.ebeaninternal.api.json.SpiJsonReader; import io.ebeaninternal.server.deploy.meta.DeployBeanPropertySimpleCollection; import java.io.IOException; public class BeanPropertySimpleCollection extends BeanPropertyAssocMany { public BeanPropertySimpleCollection(BeanDescriptor descriptor, DeployBeanPropertySimpleCollection deploy) { super(descriptor, deploy); } @Override public void bindElementValue(SqlUpdate insert, Object value) { insert.setNextParameter(value); } @Override public Object jsonReadCollection(SpiJsonReader readJson, EntityBean parentBean) throws IOException { return elementDescriptor.jsonReadCollection(readJson, parentBean); } }