Merge "Add AC and ANR services"
[portal/ric-dashboard.git] / webapp-frontend / src / app / services / ac-xapp / ac-xapp.service.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21  import { Injectable } from '@angular/core';
22  import { HttpClient } from '@angular/common/http';
23  import { Observable } from 'rxjs';
24 import { ACAdmissionIntervalControl, ACAdmissionIntervalControlAck } from '../../interfaces/ac-xapp.types';
25 import { DashboardSuccessTransport } from '../../interfaces/dashboard.types';
26
27 @Injectable({
28   providedIn: 'root'
29 })
30 export class AcXappService {
31
32   private basePath = 'api/xapp/ac/';
33
34   constructor(private httpClient: HttpClient) {
35     // injects to variable httpClient
36   }
37
38   /**
39    * Gets A1 Mediator client version details
40    * @returns Observable that should yield a SuccessTransport object
41    */
42   getVersion() {
43     // Remember that AC traffic goes via A1!
44     return this.httpClient.get<DashboardSuccessTransport>(this.basePath + 'version');
45   }
46
47   /**
48    * Puts control admission time parameters to AC via A1
49    * @param policy an instance of ACAdmissionIntervalControl
50    * @returns Observable that should yield an ACAdmissionIntervalControlAck
51    */
52   putCaTime(policy: ACAdmissionIntervalControl): Observable<ACAdmissionIntervalControlAck> {
53     return this.httpClient.put<ACAdmissionIntervalControlAck>(this.basePath + 'catime', policy);
54   }
55
56 }