mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
75 lines
1.9 KiB
Java
75 lines
1.9 KiB
Java
package io.ebeaninternal.server.deploy;
|
|
|
|
import io.ebean.EbeanServer;
|
|
import io.ebean.Query;
|
|
import io.ebean.Transaction;
|
|
import io.ebean.bean.BeanCollection;
|
|
import io.ebean.bean.BeanCollectionAdd;
|
|
import io.ebean.bean.BeanCollectionLoader;
|
|
import io.ebean.bean.EntityBean;
|
|
import io.ebeaninternal.api.json.SpiJsonWriter;
|
|
import io.ebeaninternal.server.query.CQueryCollectionAdd;
|
|
|
|
import java.io.IOException;
|
|
import java.util.Collection;
|
|
|
|
/**
|
|
* Helper functions for performing tasks on Lists Sets or Maps.
|
|
*/
|
|
public interface BeanCollectionHelp<T> extends CQueryCollectionAdd<T> {
|
|
|
|
/**
|
|
* Set the EbeanServer that owns the configuration.
|
|
*/
|
|
void setLoader(BeanCollectionLoader loader);
|
|
|
|
/**
|
|
* Return the underlying collection of beans.
|
|
*/
|
|
Collection underlying(Object value);
|
|
|
|
/**
|
|
* Return the mechanism to add beans to the underlying collection.
|
|
* <p>
|
|
* For Map's this needs to take the mapKey.
|
|
* </p>
|
|
*/
|
|
BeanCollectionAdd getBeanCollectionAdd(Object bc, String mapKey);
|
|
|
|
/**
|
|
* Create an empty collection of the correct type without a parent bean.
|
|
*/
|
|
BeanCollection<T> createEmptyNoParent();
|
|
|
|
/**
|
|
* Create an empty collection of the correct type.
|
|
*/
|
|
BeanCollection<T> createEmpty(EntityBean bean);
|
|
|
|
/**
|
|
* Add a bean to the List Set or Map.
|
|
*/
|
|
void add(BeanCollection<?> collection, EntityBean bean, boolean withCheck);
|
|
|
|
/**
|
|
* Create a lazy loading proxy for a List Set or Map.
|
|
*/
|
|
BeanCollection<T> createReference(EntityBean parentBean);
|
|
|
|
/**
|
|
* Refresh the List Set or Map.
|
|
*/
|
|
void refresh(EbeanServer server, Query<?> query, Transaction t, EntityBean parentBean);
|
|
|
|
/**
|
|
* Apply the new refreshed BeanCollection to the appropriate property of the parent bean.
|
|
*/
|
|
void refresh(BeanCollection<?> bc, EntityBean parentBean);
|
|
|
|
/**
|
|
* Write the collection out as json.
|
|
*/
|
|
void jsonWrite(SpiJsonWriter ctx, String name, Object collection, boolean explicitInclude) throws IOException;
|
|
|
|
}
|