Joaquín Reñé
2025-10-07 146a0fb8b0e90f9196e569152f649baf60d6cc8f
securis/src/main/java/net/curisit/securis/db/common/CreationTimestampEntity.java
....@@ -1,10 +1,31 @@
1
+/*
2
+* Copyright @ 2013 CurisTEC, S.A.S. All Rights Reserved.
3
+*/
14 package net.curisit.securis.db.common;
25
36 import java.util.Date;
47
8
+/**
9
+* CreationTimestampEntity
10
+* <p>
11
+* Contract for entities that expose a creation timestamp property.
12
+*/
513 public interface CreationTimestampEntity {
614
7
- public Date getCreationTimestamp();
15
+ /**
16
+ * getCreationTimestamp<p>
17
+ * Return creation timestamp.
18
+ *
19
+ * @return creationTimeStamp
20
+ */
21
+ Date getCreationTimestamp();
822
9
- public void setCreationTimestamp(Date creationTimestamp);
23
+ /**
24
+ * setCreationTimestamp<p>
25
+ * Set creation timestamp.
26
+ *
27
+ * @param creationTimestamp
28
+ */
29
+ void setCreationTimestamp(Date creationTimestamp);
1030 }
31
+