001package com.avaje.ebean.annotation;
002
003/**
004 * The mode used to determine if inserts should be included or not for a given bean type.
005 */
006public enum ChangeLogInsertMode {
007
008  /**
009   * Use the default behaviour as defined on ServerConfig.
010   */
011  DEFAULT,
012
013  /**
014   * Include inserts in the change log.
015   */
016  INCLUDE,
017
018  /**
019   * Exclude inserts in the change log.
020   */
021  EXCLUDE
022}