97395f4960ca554e80151ebd9b71fd85ef80f4e0
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  */
22 package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl.dataprovider;
23
24 import java.util.Map;
25 import org.eclipse.jdt.annotation.Nullable;
26 import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPECRITICAL;
27 import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEMAJOR;
28 import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEMINOR;
29 import org.opendaylight.yang.gen.v1.urn.onf.yang.wire._interface._2._0.rev200123.SEVERITYTYPEWARNING;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.SeverityType;
31 import org.opendaylight.yangtools.yang.binding.BaseIdentity;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35 public class InternalDataModelSeverity {
36
37     @SuppressWarnings("unused")
38     private static final Logger LOG = LoggerFactory.getLogger(InternalDataModelSeverity.class);
39
40     private static final Map<String, SeverityType> SEVERITYMAP = Map.of(
41             SEVERITYTYPEMAJOR.class.getSimpleName(), SeverityType.Major,
42             SEVERITYTYPECRITICAL.class.getSimpleName(), SeverityType.Critical,
43             SEVERITYTYPEMINOR.class.getSimpleName(), SeverityType.Minor,
44             SEVERITYTYPEWARNING.class.getSimpleName(), SeverityType.Warning);
45
46     public static SeverityType mapSeverity(@Nullable Class<? extends BaseIdentity> severity) {
47         SeverityType res = null;
48         if (severity != null) {
49             String severityName = severity.getSimpleName();
50             res = severityName != null ? SEVERITYMAP.get(severity.getSimpleName()) : null;
51         }
52         return res == null ? SeverityType.NonAlarmed : res;
53     }
54
55 }