
pl.chilldev.commons.db.timestampable.Timestamp Maven / Gradle / Ivy
/**
* This file is part of the ChillDev-Commons.
*
* @license http://mit-license.org/ The MIT license
* @copyright 2015 © by Rafał Wrzeszcz - Wrzasq.pl.
*/
package pl.chilldev.commons.db.timestampable;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Operation timestamp marker.
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Timestamp
{
/**
* Last operation type timestamp.
*
* @return Operation type.
*/
TimestampType[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy