summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/services/PombaServiceImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/services/PombaServiceImpl.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/services/PombaServiceImpl.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/services/PombaServiceImpl.java b/vid-app-common/src/main/java/org/onap/vid/services/PombaServiceImpl.java
new file mode 100644
index 00000000..21b1ec1c
--- /dev/null
+++ b/vid-app-common/src/main/java/org/onap/vid/services/PombaServiceImpl.java
@@ -0,0 +1,17 @@
+package org.onap.vid.services;
+
+import org.onap.vid.aai.PombaClientInterface;
+import org.onap.vid.model.PombaInstance.PombaRequest;
+import org.springframework.beans.factory.annotation.Autowired;
+
+public class PombaServiceImpl implements PombaService {
+
+ @Autowired
+ private PombaClientInterface pombaClientInterface;
+
+
+ @Override
+ public void verify(PombaRequest request) {
+ pombaClientInterface.verify(request);
+ }
+} \ No newline at end of file