Add AC controller with get/put policy methods
[portal/ric-dashboard.git] / webapp-frontend / src / app / services / catalog / catalog.service.ts
index 95b8662..586df92 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ========================LICENSE_START=================================
- * ORAN-OSC
+ * O-RAN-SC
  * %%
  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
  * %%
 import { Injectable } from '@angular/core';
 import { HttpClient } from '@angular/common/http';
 import { Observable } from 'rxjs';
+import { XMXappInfo } from '../../interfaces/xapp-mgr.types';
 
 @Injectable()
 export class CatalogService {
-  
-  constructor(private http: HttpClient) {
+
+  constructor(private httpClient: HttpClient) {
+    // injects to variable httpClient
   }
 
   getAll() {
-    return this.http.get('api/xappmgr/xapps');
+    return this.httpClient.get('api/xappmgr/xapps');
+  }
+
+  deployXapp(name) {
+    let xappInfo: XMXappInfo = {
+      xAppName: name
+    };
+    return this.httpClient.post('api/xappmgr/xapps', xappInfo, { observe: 'response' });
   }
-    
+
 }