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

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

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

import io.ebeaninternal.server.deploy.BeanDescriptor;
import io.ebeaninternal.server.deploy.BeanProperty;
import io.ebeaninternal.server.deploy.BeanPropertyAssocOne;
import io.ebeaninternal.server.persist.dml.DmlMode;

import java.util.ArrayList;
import java.util.List;

/**
 * A factory that builds Bindable for embedded bean properties.
 */
public class FactoryEmbedded {

  private final FactoryProperty factoryProperty;

  public FactoryEmbedded(boolean bindEncryptDataFirst) {
    factoryProperty = new FactoryProperty(bindEncryptDataFirst);
  }

  /**
   * Add bindable for the embedded properties to the list.
   */
  public void create(List list, BeanDescriptor desc, DmlMode mode, boolean withLobs) {

    BeanPropertyAssocOne[] embedded = desc.propertiesEmbedded();

    for (BeanPropertyAssocOne anEmbedded : embedded) {
      BeanProperty[] props = anEmbedded.getProperties();
      List bindList = new ArrayList<>(props.length);
      for (BeanProperty prop : props) {
        Bindable item = factoryProperty.create(prop, mode, withLobs);
        if (item != null) {
          bindList.add(item);
        }
      }
      list.add(new BindableEmbedded(anEmbedded, bindList));
    }
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy