Implement core API's methods.
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / lifecycle / ContextChainImpl.java
1 /*
2  * Copyright (c) 2016 Pantheon Technologies s.r.o. 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.openflowplugin.impl.lifecycle;
9
10 import java.util.HashSet;
11 import java.util.Set;
12 import java.util.concurrent.Future;
13 import org.opendaylight.openflowplugin.api.openflow.OFPContext;
14 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
15 import org.opendaylight.openflowplugin.api.openflow.lifecycle.ContextChain;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow.provider.config.rev160510.ContextChainState;
17
18 public class ContextChainImpl implements ContextChain {
19
20     private Set<OFPContext> contexts = new HashSet<>();
21     private final ContextChainState contextChainState;
22     private ConnectionContext primaryConnectionContext;
23
24     public ContextChainImpl(final ContextChainState contextChainState) {
25         this.contextChainState = contextChainState;
26     }
27
28     @Override
29     public boolean isReady() {
30         return false;
31     }
32
33     @Override
34     public <T extends OFPContext> void addContext(final T context) {
35
36     }
37
38     @Override
39     public Future<Void> stopChain() {
40         return null;
41     }
42
43     @Override
44     public Future<Void> startChain() {
45         return null;
46     }
47
48     @Override
49     public void close() {
50
51     }
52
53     @Override
54     public void changePrimaryConnection(final ConnectionContext connectionContext) {
55         this.primaryConnectionContext = connectionContext;
56     }
57 }