X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fdomain%2Fconfiguration_obj.py;fp=o2ims%2Fdomain%2Fconfiguration_obj.py;h=0000000000000000000000000000000000000000;hb=9ee90ffa2414326c26fd10edc59bf315204254e2;hp=3261b51e725ae3bb8cb5e2f64ca669c395a30826;hpb=7c167626f2692556b1fe073f87150f54a8c9910a;p=pti%2Fo2.git diff --git a/o2ims/domain/configuration_obj.py b/o2ims/domain/configuration_obj.py deleted file mode 100644 index 3261b51..0000000 --- a/o2ims/domain/configuration_obj.py +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright (C) 2021 Wind River Systems, Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from __future__ import annotations -from enum import Enum -# from dataclasses import dataclass - -from o2common.domain.base import AgRoot, Serializer - - -class RegistrationStatusEnum(str, Enum): - CREATED = 'CREATED' - NOTIFIED = 'NOTIFIED' - FAILED = 'FAILED' - - -class ConfigurationTypeEnum(str, Enum): - SMO = 'SMO' - - -class Configuration(AgRoot, Serializer): - def __init__(self, id: str, url: str, - conf_type: ConfigurationTypeEnum, - status: RegistrationStatusEnum = - RegistrationStatusEnum.CREATED, - comments: str = '') -> None: - super().__init__() - self.configurationId = id - self.conftype = conf_type - self.callback = url - self.status = status - self.comments = comments - - def serialize_smo(self): - if self.conftype != ConfigurationTypeEnum.SMO: - return - - d = Serializer.serialize(self) - - d['endpoint'] = d['callback'] - d['id'] = d['configurationId'] - return d