io.ebean.DelegateMethodNames Maven / Gradle / Ivy
package io.ebean;
/**
* Save invoked method names.
*/
public interface DelegateMethodNames {
String SAVE_ALL = "saveAll";
String INSERT_ALL = "insertAll";
String UPDATE_ALL = "updateAll";
String DELETE_ALL = "deleteAll";
String DELETE_PERMANENT = "deletePermanent";
String DELETE_ALL_PERMANENT = "deleteAllPermanent";
String PUBLISH = "publish";
String DRAFT_RESTORE = "draftRestore";
String SAVE = "save";
String INSERT = "insert";
String UPDATE = "update";
String DELETE = "delete";
}