io.ebeaninternal.server.core.Persister 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.core;
import io.ebean.CallableSql;
import io.ebean.Query;
import io.ebean.SqlUpdate;
import io.ebean.Transaction;
import io.ebean.Update;
import io.ebean.bean.EntityBean;
import java.util.Collection;
import java.util.List;
/**
* API for persisting a bean.
*/
public interface Persister {
/**
* Update the bean.
*/
void update(EntityBean entityBean, Transaction t);
/**
* Update the bean specifying deleteMissingChildren.
*/
void update(EntityBean entityBean, Transaction t, boolean deleteMissingChildren);
/**
* Force an Insert using the given bean.
*/
void insert(EntityBean entityBean, Transaction t);
/**
* Insert or update the bean depending on its state.
*/
void save(EntityBean entityBean, Transaction t);
/**
* Delete a bean given it's type and id value.
*
* This will also cascade delete one level of children.
*
*/
int delete(Class> beanType, Object id, Transaction transaction, boolean permanent);
/**
* Delete the bean.
*/
boolean delete(EntityBean entityBean, Transaction t, boolean permanent);
/**
* Delete multiple beans given a collection of Id values.
*/
int deleteMany(Class> beanType, Collection> ids, Transaction transaction, boolean permanent);
/**
* Execute the Update.
*/
int executeOrmUpdate(Update> update, Transaction t);
/**
* Execute the UpdateSql.
*/
int executeSqlUpdate(SqlUpdate update, Transaction t);
/**
* Execute the CallableSql.
*/
int executeCallable(CallableSql callable, Transaction t);
/**
* Publish the draft beans matching the given query.
*/
List publish(Query query, Transaction transaction);
/**
* Restore the draft beans back to the matching live beans.
*/
List draftRestore(Query query, Transaction transaction);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy