Adjust to yangtools-2.0.0/odlparent-3.0.0 changes
[netconf.git] / netconf / netconf-ssh / src / main / java / org / opendaylight / netconf / ssh / RemoteNetconfCommand.java
index d8d4148a9e3425847fa4ca45a8eb26b7258f6f23..3d91f3aeb4ab35cd1fee451e869860968f584cf0 100644 (file)
@@ -63,11 +63,13 @@ public class RemoteNetconfCommand implements AsyncCommand, SessionAware {
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public void setIoInputStream(final IoInputStream in) {
         this.in = in;
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public void setIoOutputStream(final IoOutputStream out) {
         this.out = out;
     }
@@ -78,11 +80,13 @@ public class RemoteNetconfCommand implements AsyncCommand, SessionAware {
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public void setInputStream(final InputStream in) {
         throw new UnsupportedOperationException("Synchronous IO is unsupported");
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public void setOutputStream(final OutputStream out) {
         throw new UnsupportedOperationException("Synchronous IO is unsupported");
 
@@ -95,6 +99,7 @@ public class RemoteNetconfCommand implements AsyncCommand, SessionAware {
     }
 
     @Override
+    @SuppressWarnings("checkstyle:hiddenField")
     public void setExitCallback(final ExitCallback callback) {
         this.callback = callback;
     }