X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fadsal%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Futils%2FINodeFactory.java;fp=opendaylight%2Fadsal%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Futils%2FINodeFactory.java;h=0000000000000000000000000000000000000000;hp=09339f87ceff65123daff7700ddd237505ba848c;hb=50f88249a65c52ba56a48852b71ce432fed2bbeb;hpb=abfa9a03550cbe9fccc4420684dced175dd6d119 diff --git a/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/utils/INodeFactory.java b/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/utils/INodeFactory.java deleted file mode 100644 index 09339f87ce..0000000000 --- a/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/utils/INodeFactory.java +++ /dev/null @@ -1,33 +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.sal.utils; - -import org.opendaylight.controller.sal.core.Node; - -/** - * This interface defines the methods to be called when looking up custom node types - * - */ -@Deprecated -public interface INodeFactory { - /** - * Method to get custom node types from protocol plugins - * - * @param nodeType - * {@Link org.opendaylight.controller.sal.core.Node} type - * string - * @param nodeId - * {@Link org.opendaylight.controller.sal.core.Node} ID - * string - * @return the custom {@Link - * org.opendaylight.controller.sal.core.Node} - */ - public Node fromString(String nodeType, String nodeId); -}