Merge "Bug 1029: Remove dead code: samples/clustersession"
[controller.git] / opendaylight / adsal / protocol_plugins / stub / src / main / java / org / opendaylight / controller / protocol_plugins / stub / internal / StubNodeFactory.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.protocol_plugins.stub.internal;
9
10 import org.opendaylight.controller.sal.core.ConstructionException;
11 import org.opendaylight.controller.sal.utils.INodeFactory;
12 import org.opendaylight.controller.sal.core.Node;
13
14 public class StubNodeFactory implements INodeFactory
15     {
16       void init() {
17       }
18
19       /**
20        * Function called by the dependency manager when at least one dependency
21        * become unsatisfied or when the component is shutting down because for
22        * example bundle is being stopped.
23        *
24        */
25       void destroy() {
26       }
27
28       /**
29        * Function called by dependency manager after "init ()" is called and after
30        * the services provided by the class are registered in the service registry
31        *
32        */
33       void start() {
34       }
35
36       /**
37        * Function called by the dependency manager before the services exported by
38        * the component are unregistered, this will be followed by a "destroy ()"
39        * calls
40        *
41        */
42       void stop() {
43       }
44
45       public Node fromString(String nodeType, String nodeId){
46           if(nodeType.equals("STUB"))
47               try{
48                   return new Node("STUB", Integer.parseInt(nodeId));
49               } catch(ConstructionException e)
50               {
51                   return null;
52               }
53           return null;
54       }
55 }