0fa9dd1b8d5700eb8cf6a5315ab9cceb6b02bb94
[ric-plt/rtmgr.git] / pkg / rtmgr / types.go
1 /*
2 ==================================================================================
3   Copyright (c) 2019 AT&T Intellectual Property.
4   Copyright (c) 2019 Nokia
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17 ==================================================================================
18 */
19 /*
20   Mnemonic:     rtmgr/types.go
21   Abstract:     Containes RTMGR (Routing Manager) specific types
22   Date:         12 March 2019
23 */
24
25 package rtmgr
26
27 type Endpoint struct {
28         Name     string
29         Type     string
30         IpSocket string
31 }
32
33 type XApps struct {
34         XApplist []XApp
35 }
36
37 type RouteTable []RouteTableEntry
38
39 type EndpointList []Endpoint
40
41 type RouteTableEntry struct {
42         MessageType string
43         TxList      EndpointList
44         RxGroups    []EndpointList
45 }
46
47 type XApp struct {
48         Name      string         `json:"name"`
49         Status    string         `json:"status"`
50         Version   string         `json:"version"`
51         Instances []XAppInstance `json:"instances"`
52 }
53
54 type XAppInstance struct {
55         Name       string   `json:"name"`
56         Status     string   `json:"status"`
57         Ip         string   `json:"ip"`
58         Port       int      `json:"port"`
59         TxMessages []string `json:"txMessages"`
60         RxMessages []string `json:"rxMessages"`
61 }