aboutsummaryrefslogtreecommitdiffstats
path: root/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java
diff options
context:
space:
mode:
authorRich Tabedzki <richard.tabedzki@att.com>2017-03-30 16:54:23 +0000
committerRich Tabedzki <richard.tabedzki@att.com>2017-03-30 16:55:21 +0000
commit127f24ee8e0fffaab12919cd4195775f5ba08f28 (patch)
tree7862d0e17e61325f57792a6c90c5dc6244dd5bf0 /aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java
parent9302f7cd6371a5a2d11d60ec2d03acf481b43c79 (diff)
[SDNC-5] summary
Updating AAI code Change-Id: I3f8b2038f1c5bd1051ae0c9f92d6e5ef5bc14349 Signed-off-by: Rich Tabedzki <richard.tabedzki@att.com>
Diffstat (limited to 'aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java')
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java
index e549a50..3a8b046 100644
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java
+++ b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/AAIExecutorInterface.java
@@ -3,7 +3,7 @@
* openECOMP : SDN-C
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,8 +22,9 @@
package org.openecomp.sdnc.sli.aai;
public interface AAIExecutorInterface {
- Object get(AAIRequest request) throws AAIServiceException;
- Object post(AAIRequest request) throws AAIServiceException;
- Boolean delete(AAIRequest request, String resourceVersion) throws AAIServiceException;
- Object query(AAIRequest request, Class clas) throws AAIServiceException;
+ public Object get(AAIRequest request) throws AAIServiceException;
+ public Object 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;
}