Merge "Startup archetype: remove 'Impl' from config subsystem Module name."
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / md / sal / dom / spi / ForwardingDOMRpcResult.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.controller.md.sal.dom.spi;
9
10 import com.google.common.collect.ForwardingObject;
11 import java.util.Collection;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
14 import org.opendaylight.yangtools.yang.common.RpcError;
15 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
16
17 /**
18  * Utility class which implements {@link DOMRpcResult} by forwarding all methods
19  * to a backing instance.
20  */
21 public abstract class ForwardingDOMRpcResult extends ForwardingObject implements DOMRpcResult {
22     @Override
23     protected abstract @Nonnull DOMRpcResult delegate();
24
25     @Override
26     public Collection<RpcError> getErrors() {
27         return delegate().getErrors();
28     }
29
30     @Override
31     public NormalizedNode<?, ?> getResult() {
32         return delegate().getResult();
33     }
34 }