pl.wrzasq.commons.db.timestampable.Timestamp Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of commons-db Show documentation
                Show all versions of commons-db Show documentation
Base database and model-related structures and routines.
                
             The newest version!
        
        /*
 * This file is part of the pl.wrzasq.commons.
 *
 * @license http://mit-license.org/ The MIT license
 * @copyright 2015, 2019 © by Rafał Wrzeszcz - Wrzasq.pl.
 */
package pl.wrzasq.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