001package io.ebean.annotation; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008/** 009 * Marks an entity bean as having history support. 010 * <p> 011 * In Postgres for example this means there is an associated history table which is 012 * typically automatically populated via database triggers. 013 * </p> 014 */ 015@Target({ElementType.TYPE}) 016@Retention(RetentionPolicy.RUNTIME) 017public @interface History { 018 019}