Realize the delete VNFM API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ExternalSystemProxy.java
index ea7c805..7328f97 100644 (file)
@@ -48,4 +48,8 @@ public class ExternalSystemProxy {
   public static String queryVnfmList() throws Exception {
     return externalSystemproxy.queryVNFMList(transactionId, fromAppId, authorization);
   }
+  
+  public static void deleteVnfm(String vnfmId, String resourceVersion) throws Exception {
+    externalSystemproxy.deleteVNFM(transactionId, fromAppId, authorization, vnfmId, resourceVersion);
+  }
 }