org.omnifaces.persistence.model.Timestamped Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omnipersistence Show documentation
Show all versions of omnipersistence Show documentation
Utilities for JPA, JDBC and DataSources
package org.omnifaces.persistence.model;
import java.time.Instant;
public interface Timestamped {
void setCreated(Instant created);
Instant getCreated();
void setLastModified(Instant lastModified);
Instant getLastModified();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy