Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / PipelineHandlers.java
index 9a9bf3c4b2f57a33a0aa90e05792f41decebd952..26dad6d1b8ad931e5df4edd76e8edb3428aaae52 100644 (file)
@@ -1,63 +1,63 @@
-/*\r
- * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.openflowjava.protocol.impl.core;\r
-\r
-/**\r
- * Stores names of handlers used in pipeline.\r
- * \r
- * @author michal.polkorab\r
- */\r
-public enum PipelineHandlers {\r
-\r
-    /**\r
-     * Detects switch idle state\r
-     */\r
-    IDLE_HANDLER,\r
-    /**\r
-     * Component for handling TLS frames\r
-     */\r
-    SSL_HANDLER,\r
-    /**\r
-     * Decodes incoming messages into message frames\r
-     */\r
-    OF_FRAME_DECODER,\r
-    /**\r
-     * Detects version of incoming OpenFlow Protocol message\r
-     */\r
-    OF_VERSION_DETECTOR,\r
-    /**\r
-     * Transforms OpenFlow Protocol byte messages into POJOs\r
-     */\r
-    OF_DECODER,\r
-    /**\r
-     * Transforms POJOs into OpenFlow Protocol byte messages\r
-     */\r
-    OF_ENCODER,\r
-    /**\r
-     * Delegates translated POJOs into MessageConsumer\r
-     */\r
-    DELEGATING_INBOUND_HANDLER,\r
-    /**\r
-     * Performs efficient flushing\r
-     */\r
-    CHANNEL_OUTBOUNF_QUEUE,\r
-    /**\r
-     * Decodes incoming messages into message frames\r
-     * and filters them based on version supported\r
-     */\r
-    OF_DATAGRAMPACKET_HANDLER,\r
-    /**\r
-     * Transforms OpenFlow Protocol datagram messages into POJOs\r
-     */\r
-    OF_DATAGRAMPACKET_DECODER,\r
-    /**\r
-     * Transforms POJOs into OpenFlow Protocol datagrams\r
-     */\r
-    OF_DATAGRAMPACKET_ENCODER\r
+/*
+ * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.openflowjava.protocol.impl.core;
+
+/**
+ * Stores names of handlers used in pipeline.
+ * 
+ * @author michal.polkorab
+ */
+public enum PipelineHandlers {
+
+    /**
+     * Detects switch idle state
+     */
+    IDLE_HANDLER,
+    /**
+     * Component for handling TLS frames
+     */
+    SSL_HANDLER,
+    /**
+     * Decodes incoming messages into message frames
+     */
+    OF_FRAME_DECODER,
+    /**
+     * Detects version of incoming OpenFlow Protocol message
+     */
+    OF_VERSION_DETECTOR,
+    /**
+     * Transforms OpenFlow Protocol byte messages into POJOs
+     */
+    OF_DECODER,
+    /**
+     * Transforms POJOs into OpenFlow Protocol byte messages
+     */
+    OF_ENCODER,
+    /**
+     * Delegates translated POJOs into MessageConsumer
+     */
+    DELEGATING_INBOUND_HANDLER,
+    /**
+     * Performs efficient flushing
+     */
+    CHANNEL_OUTBOUNF_QUEUE,
+    /**
+     * Decodes incoming messages into message frames
+     * and filters them based on version supported
+     */
+    OF_DATAGRAMPACKET_HANDLER,
+    /**
+     * Transforms OpenFlow Protocol datagram messages into POJOs
+     */
+    OF_DATAGRAMPACKET_DECODER,
+    /**
+     * Transforms POJOs into OpenFlow Protocol datagrams
+     */
+    OF_DATAGRAMPACKET_ENCODER
 }
\ No newline at end of file