Add v12 api changes for the new release code
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / introspection / Version.java
index e51231a..c1e913e 100644 (file)
@@ -25,13 +25,14 @@ public enum Version {
        v8,
        v9,
        v10,
-       v11;
+       v11,
+       v12;
        
        public static boolean isLatest(Version v) {
-               return (Version.v11.equals(v)); //TODO update when we increment the version, or find a better way of doing this
+               return (Version.v12.equals(v)); //TODO update when we increment the version, or find a better way of doing this
        }
        
        public static Version getLatest(){
-               return Version.v11; //TODO update when we increment the version, or find a better way of doing this
+               return Version.v12; //TODO update when we increment the version, or find a better way of doing this
        }
 }