All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.chilldev.commons.db.timestampable.Timestamp Maven / Gradle / Ivy

There is a newer version: 0.4.4
Show newest version
/**
 * 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