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

nl.vpro.domain.Trackable Maven / Gradle / Ivy

Go to download

Several domains like 'media', pages' and 'subtitles' in the POMS system share some common properties which are collected here

There is a newer version: 8.3.1
Show newest version
package nl.vpro.domain;

import java.time.Instant;

/**
 * Has information about when it was created and last modified.
 * 

* This is more or less an immutable version of {@link Changeable} * @author Michiel Meeuwissen * @since 5.11 */ public interface Trackable { Instant getLastModifiedInstant(); Instant getCreationInstant(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy