af7d305e20ebd0bbb422fecf7e981199052b7eaf
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / ForwardingDOMRpcImplementation.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 package org.opendaylight.mdsal.dom.spi;
9
10 import com.google.common.collect.ForwardingObject;
11 import com.google.common.util.concurrent.CheckedFuture;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.mdsal.dom.api.DOMRpcException;
14 import org.opendaylight.mdsal.dom.api.DOMRpcIdentifier;
15 import org.opendaylight.mdsal.dom.api.DOMRpcImplementation;
16 import org.opendaylight.mdsal.dom.api.DOMRpcResult;
17 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
18
19 /**
20  * Utility implementation which implements {@link DOMRpcImplementation} by forwarding it to
21  * a backing delegate.
22  */
23 public abstract class ForwardingDOMRpcImplementation extends ForwardingObject implements DOMRpcImplementation {
24     @Override
25     @Nonnull
26     protected abstract DOMRpcImplementation delegate();
27
28     @Override
29     public CheckedFuture<DOMRpcResult, DOMRpcException> invokeRpc(
30             final DOMRpcIdentifier type, final NormalizedNode<?, ?> input) {
31         return delegate().invokeRpc(type, input);
32     }
33 }