Revert "Turn DOMRpcResult's result back to NormalizedNode"
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / DefaultDOMRpcResult.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 static java.util.Objects.requireNonNull;
11
12 import com.google.common.annotations.Beta;
13 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
14 import java.io.Serializable;
15 import java.util.Arrays;
16 import java.util.Collection;
17 import java.util.Collections;
18 import java.util.Objects;
19 import org.eclipse.jdt.annotation.NonNullByDefault;
20 import org.eclipse.jdt.annotation.Nullable;
21 import org.opendaylight.mdsal.dom.api.DOMRpcResult;
22 import org.opendaylight.yangtools.concepts.Immutable;
23 import org.opendaylight.yangtools.yang.common.RpcError;
24 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
25
26 /**
27  * Utility class implementing {@link DefaultDOMRpcResult}.
28  */
29 @Beta
30 @NonNullByDefault
31 public final class DefaultDOMRpcResult implements DOMRpcResult, Immutable, Serializable {
32     private static final long serialVersionUID = 1L;
33
34     @SuppressFBWarnings(value = "SE_BAD_FIELD", justification = "Interfaces do not specify Serializable")
35     private final @Nullable ContainerNode result;
36     private final Collection<? extends RpcError> errors;
37
38     public DefaultDOMRpcResult(final ContainerNode result, final RpcError... errors) {
39         this(result, asCollection(errors));
40     }
41
42     public DefaultDOMRpcResult(final RpcError... errors) {
43         this(null, asCollection(errors));
44     }
45
46     public DefaultDOMRpcResult(final @Nullable ContainerNode result) {
47         this(result, Collections.emptyList());
48     }
49
50     public DefaultDOMRpcResult(final @Nullable ContainerNode result,
51             final Collection<? extends RpcError> errors) {
52         this.result = result;
53         this.errors = requireNonNull(errors);
54     }
55
56     public DefaultDOMRpcResult(final Collection<RpcError> errors) {
57         this(null, errors);
58     }
59
60     private static Collection<RpcError> asCollection(final RpcError... errors) {
61         return errors.length == 0 ? Collections.emptyList() : Arrays.asList(errors);
62     }
63
64     @Override
65     public Collection<? extends RpcError> getErrors() {
66         return errors;
67     }
68
69     @Override
70     public @Nullable ContainerNode getResult() {
71         return result;
72     }
73
74     @Override
75     public int hashCode() {
76         int ret = errors.hashCode();
77         if (result != null) {
78             ret = 31 * ret + result.hashCode();
79         }
80         return ret;
81     }
82
83     @Override
84     public boolean equals(final @Nullable Object obj) {
85         if (this == obj) {
86             return true;
87         }
88         if (!(obj instanceof DefaultDOMRpcResult)) {
89             return false;
90         }
91         final DefaultDOMRpcResult other = (DefaultDOMRpcResult) obj;
92         return errors.equals(other.errors) && Objects.equals(result, other.result);
93     }
94 }