blob: dccd63a5d5ea405f6dc645d164bfc717d72c986f [file] [log] [blame]
Kent Hagerman60d62302020-03-10 17:02:36 -04001/*
Joey Armstrong2c039362024-02-04 18:51:52 -05002 * Copyright 2020-2024 Open Networking Foundation (ONF) and the ONF Contributors
Kent Hagerman60d62302020-03-10 17:02:36 -04003
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package common
18
19import (
20 "github.com/opencord/bbsim/api/bbsim"
21)
22
23var ONUAlarms = make(map[string]bbsim.AlarmType_Types)
24
25func init() {
26 for id, name := range bbsim.AlarmType_Types_name {
27 if id := bbsim.AlarmType_Types(id); id != bbsim.AlarmType_LOS {
28 ONUAlarms[name] = id
29 }
30 }
31}
32
33const OltNniLos = "OLT_NNI_LOS"
Kent Hagerman60643ec2020-03-19 09:45:50 -040034const OltPonLos = "OLT_PON_LOS"
Kent Hagerman60d62302020-03-10 17:02:36 -040035
36var OLTAlarms = map[string]bbsim.AlarmType_Types{
37 OltNniLos: bbsim.AlarmType_LOS,
38 OltPonLos: bbsim.AlarmType_LOS,
39}