io.ebeaninternal.server.persist.BeanPersister 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.persist;
import io.ebeaninternal.server.core.PersistRequestBean;
import javax.persistence.PersistenceException;
/**
* Defines bean insert update and delete implementation.
*/
public interface BeanPersister {
/**
* execute the insert bean request.
*/
void insert(PersistRequestBean> request) throws PersistenceException;
/**
* execute the update bean request.
*/
void update(PersistRequestBean> request) throws PersistenceException;
/**
* execute the delete bean request.
*/
int delete(PersistRequestBean> request) throws PersistenceException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy