io.ebeaninternal.server.persist.dmlbind.BindableAssocTenant 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.persist.dmlbind;
import io.ebean.bean.EntityBean;
import io.ebeaninternal.server.deploy.BeanPropertyAssocOne;
import java.sql.SQLException;
class BindableAssocTenant extends BindableAssocOne {
BindableAssocTenant(BeanPropertyAssocOne> assocOne) {
super(assocOne);
}
@Override
public void dmlBind(BindableRequest request, EntityBean bean) throws SQLException {
EntityBean assocBean = (EntityBean) assocOne.getValue(bean);
importedId.bind(request, assocBean);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy