001package com.avaje.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 * For a timestamp property that is set to the datetime when the entity was last
010 * updated.
011 */
012@Target({ ElementType.FIELD, ElementType.METHOD })
013@Retention(RetentionPolicy.RUNTIME)
014public @interface UpdatedTimestamp {
015
016}