Fix issue where NodeConnector ADDED events were propagated as NodeConnector CHANGED...
[controller.git] / opendaylight / md-sal / compatibility / sal-compatibility / src / main / java / org / opendaylight / controller / sal / compatibility / MDSalNodeFactory.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.compatibility;
9
10 import org.opendaylight.controller.sal.core.ConstructionException;
11 import org.opendaylight.controller.sal.core.Node;
12 import org.opendaylight.controller.sal.utils.INodeFactory;
13 import org.slf4j.Logger;
14 import org.slf4j.LoggerFactory;
15
16 public class MDSalNodeFactory implements INodeFactory{
17     private Logger logger = LoggerFactory.getLogger(MDSalNodeFactory.class);
18
19     @Override
20     public Node fromString(String type, String id) {
21
22         try {
23             return new Node(type, id);
24         } catch (ConstructionException e) {
25             logger.error("Could not construct Node", e);
26         }
27         return null;
28     }
29 }