Adjust to yangtools-2.0.0/odlparent-3.0.0 changes
[netconf.git] / netconf / netconf-client / src / main / java / org / opendaylight / netconf / client / SimpleNetconfClientSessionListener.java
index 654210a4a0e1685b032cdf3cb60fb10c9bd3a1d8..82e72045d44d258f770100980056d5e6e34e4eb8 100644 (file)
@@ -55,6 +55,7 @@ public class SimpleNetconfClientSessionListener implements NetconfClientSessionL
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public final synchronized void onSessionUp(NetconfClientSession clientSession) {
         this.clientSession = Preconditions.checkNotNull(clientSession);
         LOG.debug("Client session {} went up", clientSession);
@@ -71,12 +72,14 @@ public class SimpleNetconfClientSessionListener implements NetconfClientSessionL
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public final void onSessionDown(NetconfClientSession clientSession, Exception exception) {
         LOG.debug("Client Session {} went down unexpectedly", clientSession, exception);
         tearDown(exception);
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public final void onSessionTerminated(NetconfClientSession clientSession,
                                           NetconfTerminationReason netconfTerminationReason) {
         LOG.debug("Client Session {} terminated, reason: {}", clientSession,