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

io.ebean.DelegateMethodNames Maven / Gradle / Ivy

There is a newer version: 13.7.0
Show newest version
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";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy