BGPCEP-730: Fix ModifiedNodeDoesNotExistException
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / config / PeerBean.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.protocol.bgp.rib.impl.config;
10
11 import com.google.common.util.concurrent.ListenableFuture;
12 import org.opendaylight.protocol.bgp.openconfig.spi.BGPTableTypeRegistryConsumer;
13 import org.opendaylight.protocol.bgp.rib.impl.spi.RIB;
14 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.bgp.rev151009.bgp.neighbors.Neighbor;
15
16 /**
17  * Common interface for BgpPeer and AppPeer beans
18  */
19 public interface PeerBean extends AutoCloseable {
20
21     void start(RIB rib, Neighbor neighbor, BGPTableTypeRegistryConsumer tableTypeRegistry);
22
23     void restart(RIB rib, BGPTableTypeRegistryConsumer tableTypeRegistry);
24
25     @Override
26     void close();
27
28     void instantiateServiceInstance();
29
30     ListenableFuture<Void> closeServiceInstance();
31
32     Boolean containsEqualConfiguration(Neighbor neighbor);
33 }