Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / util / Request.java
index 605aa2b..fb695b2 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * org.onap.aai
  * ================================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,8 +16,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  * ============LICENSE_END=========================================================
- *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
  */
 package org.onap.aai.util;
 
@@ -33,10 +31,7 @@ import org.onap.aai.exceptions.AAIException;
 
 public class Request<T> {
 
-       public static final String V2 = "v2";
-       public static final String V3 = "v3";
-       public static final String V4 = "v4";
-       public static final String V5 = "v5";
+       public static final String V14 = "v14";
        public final String fromAppId;
        public final String transactionId;
        public final String path;
@@ -73,7 +68,7 @@ public class Request<T> {
                private String path;
                private RestObject<T> restObj;
                private boolean oldServer;
-               private String apiVersion = Request.V4;
+               private String apiVersion = Request.V14;
                
 
                /**