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

io.ebean.delegate.InterceptPublish Maven / Gradle / Ivy

There is a newer version: 13.7.0
Show newest version
package io.ebean.delegate;

import io.ebean.Query;
import io.ebean.Transaction;

import java.util.List;

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 - 2024 Weber Informatics LLC | Privacy Policy