8179f8f42b0814b26d38acd652989b2d2eb6e5c7
[ccsdk/apps.git] /
1 /**
2  *
3  */
4 package org.opendaylight.mwtn.deviceMonitor.impl;
5
6 /**
7  * @author herbert
8  *
9  */
10 public interface DeviceMonitorSupport {
11
12     /**
13      * Prepare subsequent check calls
14      */
15     public void prepareCheck();
16
17     /**
18      * Test connection to mediator, by getting data that have to be called from NE
19      * @return true if connection working, false if not
20      */
21     public boolean checkAndConnectionToMediatorIsOk();
22
23     /**
24      * Test connection to NE via mediator, by getting data that have to be called from NE
25      * @return true if connection working, false if not
26      */
27     public boolean checkAndConnectionToNeIsOk();
28
29
30 }