Realize the delete EMS API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ExternalSystemProxy.java
index e2ebfef..046a25b 100644 (file)
@@ -90,4 +90,8 @@ public class ExternalSystemProxy {
   public static String queryEmsList() throws Exception {
     return externalSystemproxy.queryEMSList(transactionId, fromAppId, authorization);
   }
+  
+  public static void deleteEms(String emsId, String resourceVersion) throws Exception {
+    externalSystemproxy.deleteEMS(transactionId, fromAppId, authorization, emsId, resourceVersion);
+  }
 }