ea6436a6638841ee2e6f43ccabff4bac664a2b67
[ric-plt/resource-status-manager.git] / RSM / enums / message_direction.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
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 package enums
19
20 import (
21         "encoding/json"
22         "strconv"
23 )
24
25 type MessageDirection int32
26
27 var messageDirectionEnumName = map[int32]string{
28         0: "UNKNOWN_MESSAGE_DIRECTION",
29         1: "RAN_TO_RIC",
30         2: "RIC_TO_RAN",
31 }
32
33 const (
34         UNKNOWN_MESSAGE_DIRECTION MessageDirection = 0
35         RAN_TO_RIC                MessageDirection = 1
36         RIC_TO_RAN                MessageDirection = 2
37 )
38
39 func (md MessageDirection) String() string {
40         s, ok := messageDirectionEnumName[int32(md)]
41         if ok {
42                 return s
43         }
44         return strconv.Itoa(int(md))
45 }
46
47 func (md MessageDirection) MarshalJSON() ([]byte, error) {
48         _, ok := messageDirectionEnumName[int32(md)]
49
50         if !ok {
51                 return nil,&json.UnsupportedValueError{}
52         }
53
54         v:= int32(md)
55         return json.Marshal(v)
56 }