81000606f8ca8bcaaaf792099a25fe7cd69fd0e9
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / devicemanager / impl / src / main / java / org / opendaylight / mwtn / deviceMonitor / impl / DeviceMonitorProblems.java
1 /**
2  * Problems generated by DeviceMonitor
3  *
4  * @author herbert
5  *
6  */
7 package org.opendaylight.mwtn.deviceMonitor.impl;
8
9 import org.opendaylight.mwtn.base.internalTypes.InternalSeverity;
10
11 public enum DeviceMonitorProblems {
12
13         /**
14          * Mountpoint is not connected via NETCONF with NE/Mediator = ssh connection
15          */
16     connectionLossOAM(InternalSeverity.Major),
17
18     /**
19      * Mountpoint is connected via Netconf to Mediator, but mediator is not responding.
20      * Connection state to NE is unknown.
21      */
22     connectionLossMediator(InternalSeverity.Major),
23
24     /** Mountpoint is connected via Netconf to Mediator.
25      * This connection is OK, but mediator <-> NE Connection is not OK
26      */
27     connectionLossNeOAM(InternalSeverity.Major);
28
29     InternalSeverity severity;
30
31     DeviceMonitorProblems(InternalSeverity severity) {
32         this.severity = severity;
33     }
34
35     InternalSeverity getSeverity() {
36         return severity;
37     }
38
39 }
40