Mass replace CRLF->LF
[openflowjava.git] / simple-client / src / main / java / org / opendaylight / openflowjava / protocol / impl / clients / OFClient.java
index 0d4046ef44a3a59f7cee2511cd9ad00d91b9bcd1..02a2199a5e527b243e1e358410884a1b7341a299 100644 (file)
@@ -1,40 +1,40 @@
-/*\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.clients;\r
-\r
-import com.google.common.util.concurrent.SettableFuture;\r
-\r
-/**\r
- * Unifying interface for simple clients / switch simulators\r
- * \r
- * @author michal.polkorab\r
- */\r
-public interface OFClient extends Runnable {\r
-\r
-    /**\r
-     * @return the isOnlineFuture which is set when client is started\r
-     */\r
-    SettableFuture<Boolean> getIsOnlineFuture();\r
-\r
-    /**\r
-     * @return the scenarioDone when scenario is successfully finished\r
-     */\r
-    SettableFuture<Boolean> getScenarioDone();\r
-\r
-    /**\r
-     * @param scenario list of desired actions\r
-     */\r
-    void setScenarioHandler(ScenarioHandler scenario);\r
-\r
-    /**\r
-     * @param securedClient true is client should use encrypted communication,\r
-     * false otherwise\r
-     */\r
-    void setSecuredClient(boolean securedClient);\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.clients;
+
+import com.google.common.util.concurrent.SettableFuture;
+
+/**
+ * Unifying interface for simple clients / switch simulators
+ * 
+ * @author michal.polkorab
+ */
+public interface OFClient extends Runnable {
+
+    /**
+     * @return the isOnlineFuture which is set when client is started
+     */
+    SettableFuture<Boolean> getIsOnlineFuture();
+
+    /**
+     * @return the scenarioDone when scenario is successfully finished
+     */
+    SettableFuture<Boolean> getScenarioDone();
+
+    /**
+     * @param scenario list of desired actions
+     */
+    void setScenarioHandler(ScenarioHandler scenario);
+
+    /**
+     * @param securedClient true is client should use encrypted communication,
+     * false otherwise
+     */
+    void setSecuredClient(boolean securedClient);
 }
\ No newline at end of file