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

com.avaje.ebeaninternal.server.persist.dmlbind.FactoryBaseProperties Maven / Gradle / Ivy

package com.avaje.ebeaninternal.server.persist.dmlbind;

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

import com.avaje.ebeaninternal.server.deploy.BeanDescriptor;
import com.avaje.ebeaninternal.server.deploy.BeanProperty;
import com.avaje.ebeaninternal.server.deploy.BeanPropertyCompound;
import com.avaje.ebeaninternal.server.persist.dml.DmlMode;

/**
 * Add base properties to the BindableList for a bean type.
 * 

* This excludes unique embedded and associated properties. *

*/ public class FactoryBaseProperties { private final FactoryProperty factoryProperty; public FactoryBaseProperties(boolean bindEncryptDataFirst) { factoryProperty = new FactoryProperty(bindEncryptDataFirst); } /** * Add Bindable for the base properties to the list. */ public void create(List list, BeanDescriptor desc, DmlMode mode, boolean withLobs) { add(desc.propertiesBaseScalar(), list, mode, withLobs); BeanPropertyCompound[] compoundProps = desc.propertiesBaseCompound(); for (int i = 0; i < compoundProps.length; i++) { BeanProperty[] props = compoundProps[i].getScalarProperties(); List newList = new ArrayList(props.length); addCompound(props, newList, mode, withLobs); BindableCompound compoundBindable = new BindableCompound(compoundProps[i], newList); list.add(compoundBindable); } } private void add(BeanProperty[] props, List list, DmlMode mode, boolean withLobs) { for (int i = 0; i < props.length; i++) { Bindable item = factoryProperty.create(props[i], mode, withLobs); if (item != null) { list.add(item); } } } private void addCompound(BeanProperty[] props, List list, DmlMode mode, boolean withLobs) { for (int i = 0; i < props.length; i++) { BindableProperty item = (BindableProperty) factoryProperty.create(props[i], mode, withLobs); if (item != null) { list.add(item); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy