1 # Copyright (C) 2021 Wind River Systems, Inc.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
15 from __future__ import annotations
17 from dataclasses import dataclass
19 from o2common.domain.base import AgRoot, Serializer
22 class Subscription(AgRoot, Serializer):
23 def __init__(self, id: str, callback: str, consumersubid: str = '',
24 filter: str = '') -> None:
26 self.subscriptionId = id
27 self.callback = callback
28 self.consumerSubscriptionId = consumersubid
31 self.version_number = 0
34 class NotificationEventEnum(str, Enum):
40 class Message2SMO(Serializer):
41 def __init__(self, eventtype: NotificationEventEnum,
42 id: str, ref: str, updatetime: str) -> None:
43 self.notificationEventType = eventtype
46 self.updatetime = updatetime
49 class RegistrationMessage(Serializer):
50 def __init__(self, eventtype: NotificationEventEnum, id: str = '') -> None:
51 self.notificationEventType = eventtype