Bug 4202: Migrate also toaster to use mdsal project
[controller.git] / opendaylight / commons / concepts / src / main / java / org / opendaylight / controller / concepts / transform / Transformer.java
index 18184e122acd1f3e9e0718c2ace54d893c619cea..6f09d8b7d66003fa29458c99f18038e8fe1fd9c4 100644 (file)
@@ -1,27 +1,27 @@
-/*\r
- * Copyright (c) 2013 Cisco Systems, Inc. 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.controller.concepts.transform;\r
-\r
-/**\r
- * Factory which produces product based on input object\r
- *\r
- * @author Tony Tkacik\r
- *\r
- * @param <I> Input\r
- * @param <P> Product\r
- */\r
-public interface Transformer<I,P> {\r
-    /**\r
-     * Transforms input into instance of product.\r
-     *\r
-     * @param input Input which drives transformation\r
-     * @return Instance of product which was created from supplied input.\r
-     */\r
-    P transform(I input);\r
-}\r
+/*
+ * Copyright (c) 2013 Cisco Systems, Inc. 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.controller.concepts.transform;
+
+/**
+ * Factory which produces product based on input object
+ *
+ * @author Tony Tkacik
+ *
+ * @param <I> Input
+ * @param <P> Product
+ */
+public interface Transformer<I,P> {
+    /**
+     * Transforms input into instance of product.
+     *
+     * @param input Input which drives transformation
+     * @return Instance of product which was created from supplied input.
+     */
+    P transform(I input);
+}