001package com.avaje.ebean;
002
003/**
004 * Save invoked method names.
005 */
006public interface DelegateMethodNames {
007
008  String SAVE_ALL = "saveAll";
009
010  String INSERT_ALL = "insertAll";
011
012  String UPDATE_ALL = "updateAll";
013
014  String DELETE_ALL = "deleteAll";
015
016  String DELETE_PERMANENT = "deletePermanent";
017
018  String DELETE_ALL_PERMANENT = "deleteAllPermanent";
019
020  String PUBLISH = "publish";
021
022  String DRAFT_RESTORE = "draftRestore";
023
024  String SAVE = "save";
025
026  String INSERT = "insert";
027
028  String UPDATE = "update";
029
030  String DELETE = "delete";
031}