b94bc1e4731dade02f50d527c9b895fc59aa6e30
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / dao / FlowCapableNodeCachedDao.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.openflowplugin.applications.frsync.dao;
10
11 import com.google.common.base.Optional;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
15
16 /**
17  * Implementation of data access object for {@link FlowCapableNode}.
18  * Contains pair of snapshot and odl DAOs.
19  */
20 public class FlowCapableNodeCachedDao implements FlowCapableNodeDao {
21
22     private final FlowCapableNodeDao snapshotDao;
23     private final FlowCapableNodeDao odlDao;
24
25     public FlowCapableNodeCachedDao(FlowCapableNodeDao snapshotDao, FlowCapableNodeDao odlDao) {
26         this.snapshotDao = snapshotDao;
27         this.odlDao = odlDao;
28     }
29
30     public Optional<FlowCapableNode> loadByNodeId(@Nonnull NodeId nodeId) {
31         final Optional<FlowCapableNode> node = snapshotDao.loadByNodeId(nodeId);
32
33         if (node.isPresent()) {
34             return node;
35         }
36
37         return odlDao.loadByNodeId(nodeId);
38     }
39
40 }