Revert "Checkstyle enforcer"
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / core / IMessageReadWrite.java
index ce91e1f2750ce1343ecac5d39488b2b9993a9c31..8fb9a6acb8a2c498533ce15db5161af7a28d6562 100644 (file)
@@ -19,35 +19,35 @@ import org.openflow.protocol.OFMessage;
  * encryption and decryption of the network data.
  */
 public interface IMessageReadWrite {
-        /**
-         * Sends the OF message out over the socket channel. For secure
-         * communication, the data will be encrypted.
-         *
-         * @param msg OF message to be sent
-         * @throws Exception
-         */
-        public void asyncSend(OFMessage msg) throws Exception;
-
-        /**
-         * Resumes sending the remaining messages in the outgoing buffer
-         * @throws Exception
-         */
-        public void resumeSend() throws Exception;
-
-        /**
-         * Reads the incoming network data from the socket and retrieves the OF
-         * messages. For secure communication, the data will be decrypted first.
-         *
-         * @return list of OF messages
-         * @throws Exception
-         */
+       /**
+        * Sends the OF message out over the socket channel. For secure
+        * communication, the data will be encrypted.
+        * 
+        * @param msg OF message to be sent
+        * @throws Exception
+        */
+       public void asyncSend(OFMessage msg) throws Exception;
+
+       /**
+        * Resumes sending the remaining messages in the outgoing buffer
+        * @throws Exception
+        */
+       public void resumeSend() throws Exception;
+
+       /**
+        * Reads the incoming network data from the socket and retrieves the OF
+        * messages. For secure communication, the data will be decrypted first.
+        * 
+        * @return list of OF messages
+        * @throws Exception
+        */
     public List<OFMessage> readMessages() throws Exception;
-
-        /**
-         * Proper clean up when the switch connection is closed
-         *
-         * @return
-         * @throws Exception
-         */
+    
+       /**
+        * Proper clean up when the switch connection is closed
+        * 
+        * @return
+        * @throws Exception
+        */
     public void stop() throws Exception;
 }