80fbd69253a4b78fc1e585103cf268bf0964fa9e
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / registry / flow / DeviceFlowRegistry.java
1 /*
2  * Copyright (c) 2015 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.openflowplugin.api.openflow.registry.flow;
10
11 import com.google.common.base.Optional;
12 import com.google.common.util.concurrent.ListenableFuture;
13 import java.util.List;
14 import javax.annotation.Nonnull;
15 import javax.annotation.Nullable;
16 import org.opendaylight.openflowplugin.api.openflow.registry.CommonDeviceRegistry;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
18
19 /**
20  * Registry for mapping composite-key of flow ({@link FlowRegistryKey}) from device view
21  * to flow descriptor ({@link FlowDescriptor}) as the identifier of the same flow in data store.
22  */
23 public interface DeviceFlowRegistry extends CommonDeviceRegistry<FlowRegistryKey> {
24
25     ListenableFuture<List<Optional<FlowCapableNode>>> fill();
26
27     void storeDescriptor(@Nonnull FlowRegistryKey flowRegistryKey, @Nonnull FlowDescriptor flowDescriptor);
28
29     @Nullable
30     FlowDescriptor retrieveDescriptor(@Nonnull FlowRegistryKey flowRegistryKey);
31
32 }