Joaquín Reñé
2025-10-07 146a0fb8b0e90f9196e569152f649baf60d6cc8f
securis/src/main/java/net/curisit/securis/db/common/CodedEnum.java
....@@ -1,7 +1,23 @@
1
+/*
2
+* Copyright @ 2013 CurisTEC, S.A.S. All Rights Reserved.
3
+*/
14 package net.curisit.securis.db.common;
25
6
+/**
7
+* CodedEnum
8
+* <p>
9
+* Small contract for enums persisted as short codes
10
+*/
311 public interface CodedEnum {
412
5
- public String getCode();
13
+ /**
14
+ * getCode<p>
15
+ * Return the short string code for persistence/JSON.
16
+ *
17
+ * @return codeEnum
18
+ */
19
+ String getCode();
620
721 }
22
+
23
+