Bump upstreams for 2022.09 Chlorine
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / HwvtepSouthboundProviderInfo.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, 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.ovsdb.hwvtepsouthbound;
9
10 import com.google.common.annotations.Beta;
11 import java.util.Map;
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.opendaylight.ovsdb.utils.mdsal.utils.TransactionHistory;
14 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
15 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
16
17 @Beta
18 public interface HwvtepSouthboundProviderInfo {
19
20     @NonNull Map<InstanceIdentifier<Node>, HwvtepDeviceInfo> getAllConnectedInstances();
21
22     @NonNull Map<InstanceIdentifier<Node>, TransactionHistory> getControllerTxHistory();
23
24     @NonNull Map<InstanceIdentifier<Node>, TransactionHistory> getDeviceUpdateHistory();
25 }