io.ebeaninternal.server.deploy.BeanPropertySimpleCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
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.setParameter(value);
}
@Override
public Object jsonReadCollection(SpiJsonReader readJson, EntityBean parentBean) throws IOException {
return elementDescriptor.jsonReadCollection(readJson, parentBean);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy