Fixed typo in transform package
[controller.git] / opendaylight / commons / concepts / src / main / java / org / opendaylight / controller / concepts / tranform / Transformer.java
diff --git a/opendaylight/commons/concepts/src/main/java/org/opendaylight/controller/concepts/tranform/Transformer.java b/opendaylight/commons/concepts/src/main/java/org/opendaylight/controller/concepts/tranform/Transformer.java
deleted file mode 100644 (file)
index 58fe0e1..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*\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.tranform;\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