X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fconcepts-lang%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconcepts%2Flang%2FInputClassBasedTransformer.java;fp=opendaylight%2Fsal%2Fyang-prototype%2Fconcepts-lang%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconcepts%2Flang%2FInputClassBasedTransformer.java;h=0000000000000000000000000000000000000000;hb=6990871b68adfd57b4cdd218ba797b641f6f9562;hp=e6a1024b7c844eab4f15978a5f37cd942c66fd4d;hpb=c44438579115a5e89139a2ef1afed2037acbfa06;p=controller.git diff --git a/opendaylight/sal/yang-prototype/concepts-lang/src/main/java/org/opendaylight/controller/concepts/lang/InputClassBasedTransformer.java b/opendaylight/sal/yang-prototype/concepts-lang/src/main/java/org/opendaylight/controller/concepts/lang/InputClassBasedTransformer.java deleted file mode 100644 index e6a1024b7c..0000000000 --- a/opendaylight/sal/yang-prototype/concepts-lang/src/main/java/org/opendaylight/controller/concepts/lang/InputClassBasedTransformer.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * 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.lang; -/** - * Input class based transformer - * - * {@link Transformer} which accepts / transforms only specific classes of - * input, and is useful if the selection of transformer should be based on the - * class of the input and there is one-to-one mapping between input class and - * transformer. - * - * - * @author Tony Tkacik - * - * @param - * Common supertype of input - * @param - * Concrete type of input - * @param

- * Product - */ -public interface InputClassBasedTransformer extends - Transformer { - - /** - * Returns an {@link Class} of input which is acceptable for transformation. - * - * @return {@link Class} of input which is acceptable for transformation. - */ - Class getInputClass(); -}