Isolate deprecated code in CCSDK aai-service
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / ccsdk / sli / adaptors / aai / AAIExecutorInterface.java
old mode 100644 (file)
new mode 100755 (executable)
index d315bad..9203daa
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * openECOMP : SDN-C
  * ================================================================================
- * Copyright (C) 2017 ONAP Intellectual Property. All rights
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
  *                                             reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -22,8 +22,8 @@
 package org.onap.ccsdk.sli.adaptors.aai;
 
 public interface AAIExecutorInterface {
-       public Object get(AAIRequest request) throws AAIServiceException;
-       public Object post(AAIRequest request) throws AAIServiceException;
+       public String get(AAIRequest request) throws AAIServiceException;
+       public String post(AAIRequest request) throws AAIServiceException;
        public Boolean delete(AAIRequest request, String resourceVersion) throws AAIServiceException;
        public Object query(AAIRequest request, Class clas) throws AAIServiceException;
        public Boolean patch(AAIRequest request, String resourceVersion) throws AAIServiceException;