Add the v13 xml schema and version update
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / introspection / Version.java
index c1e913e..a3ff9d0 100644 (file)
@@ -26,13 +26,14 @@ public enum Version {
        v9,
        v10,
        v11,
-       v12;
+       v12,
+       v13;
        
        public static boolean isLatest(Version v) {
-               return (Version.v12.equals(v)); //TODO update when we increment the version, or find a better way of doing this
+               return (Version.v13.equals(v)); //TODO update when we increment the version, or find a better way of doing this
        }
        
        public static Version getLatest(){
-               return Version.v12; //TODO update when we increment the version, or find a better way of doing this
+               return Version.v13; //TODO update when we increment the version, or find a better way of doing this
        }
 }