Added A1 policy handler, healthcheck handler, sdl handler and alarm
[ric-app/hw-python.git] / src / manager / SdlManager.py
1 # ==================================================================================
2 #
3 #       Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #          http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 # ==================================================================================
18
19 from ricxappframe.xapp_frame import RMRXapp
20 import json
21 from ._BaseManager import _BaseManager
22
23
24 class SdlManager(_BaseManager):
25
26     __namespace = "e2Manager"
27
28     def __init__(self, rmr_xapp: RMRXapp):
29         super().__init__(rmr_xapp)
30
31     def sdlGetGnbList(self):
32         gnblist = self._rmr_xapp.sdl_find_and_get(self.__namespace, "GNB")
33         self.logger.info("SdlManager.sdlGetGnbList:: Processed request: {}".format(json.dumps(gnblist)))
34
35     def sdlGetEnbList(self):
36         enblist = self._rmr_xapp.sdl_find_and_get(self.__namespace, "ENB")
37         self.logger.info("SdlManager.sdlGetGnbList:: Handler processed request: {}".format(json.dumps(enblist)))
38
39
40
41