Merge "API Usability: Introduced type capture for Transaction Factory"
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / md / sal / binding / impl / BindingDataReadTransactionImpl.java
1 /*
2  * Copyright (c) 2014 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 package org.opendaylight.controller.md.sal.binding.impl;
9
10 import org.opendaylight.controller.md.sal.binding.api.ReadOnlyTransaction;
11 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
12 import org.opendaylight.controller.md.sal.dom.api.DOMDataReadOnlyTransaction;
13 import org.opendaylight.yangtools.yang.binding.DataObject;
14 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
15
16 import com.google.common.base.Optional;
17 import com.google.common.util.concurrent.ListenableFuture;
18
19 class BindingDataReadTransactionImpl extends AbstractForwardedTransaction<DOMDataReadOnlyTransaction> implements
20         ReadOnlyTransaction {
21
22     protected BindingDataReadTransactionImpl(final DOMDataReadOnlyTransaction delegate,
23             final BindingToNormalizedNodeCodec codec) {
24         super(delegate, codec);
25     }
26
27     @Override
28     public <T extends DataObject> ListenableFuture<Optional<T>> read(final LogicalDatastoreType store,
29             final InstanceIdentifier<T> path) {
30         return doRead(getDelegate(),store, path);
31     }
32
33     @Override
34     public void close() {
35         getDelegate().close();
36     }
37
38 }