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

io.ebeaninternal.server.persist.dmlbind.BindableAssocTenant Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.server.persist.dmlbind;

import io.ebean.bean.EntityBean;
import io.ebeaninternal.server.deploy.BeanPropertyAssocOne;

import java.sql.SQLException;

final 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 - 2024 Weber Informatics LLC | Privacy Policy