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

org.omnifaces.persistence.model.Timestamped Maven / Gradle / Ivy

There is a newer version: 0.22.J1
Show newest version
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