![JAR search and dependency download from the Maven repository](/logo.png)
com.avaje.ebean.delegate.InterceptPublish Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avaje-ebeanorm-mocker Show documentation
Show all versions of avaje-ebeanorm-mocker Show documentation
Ability to set a Mockito mock EbeanServer as 'default' EbeanServer
package com.avaje.ebean.delegate;
import com.avaje.ebean.Query;
import com.avaje.ebean.Transaction;
import java.util.List;
/**
* Created by rob on 13/01/16.
*/
public interface InterceptPublish {
T publish(Class beanType, Object id, Transaction transaction);
T publish(Class beanType, Object id);
List publish(Query query, Transaction transaction);
List publish(Query query);
T draftRestore(Class beanType, Object id, Transaction transaction);
T draftRestore(Class beanType, Object id);
List draftRestore(Query query, Transaction transaction);
List draftRestore(Query query);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy