Removed sonar warnings.
[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 com.google.common.annotations.Beta;
11 import com.google.common.base.Preconditions;
12 import java.io.Serializable;
13 import java.util.Arrays;
14 import java.util.Collection;
15 import java.util.Collections;
16 import java.util.Objects;
17 import javax.annotation.Nonnull;
18 import org.opendaylight.mdsal.dom.api.DOMRpcResult;
19 import org.opendaylight.yangtools.concepts.Immutable;
20 import org.opendaylight.yangtools.yang.common.RpcError;
21 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
22
23 /**
24  * Utility class implementing {@link DefaultDOMRpcResult}.
25  */
26 @Beta
27 public final class DefaultDOMRpcResult implements DOMRpcResult, Immutable, Serializable {
28     private static final long serialVersionUID = 1L;
29     private final Collection<RpcError> errors;
30     private final NormalizedNode<?, ?> result;
31
32     public DefaultDOMRpcResult(final NormalizedNode<?, ?> result, final RpcError... errors) {
33         this(result, asCollection(errors));
34     }
35
36     public DefaultDOMRpcResult(final RpcError... errors) {
37         this(null, asCollection(errors));
38     }
39
40     public DefaultDOMRpcResult(final NormalizedNode<?, ?> result) {
41         this(result, Collections.<RpcError>emptyList());
42     }
43
44     public DefaultDOMRpcResult(final NormalizedNode<?, ?> result, @Nonnull final Collection<RpcError> errors) {
45         this.result = result;
46         this.errors = Preconditions.checkNotNull(errors);
47     }
48
49     public DefaultDOMRpcResult(@Nonnull final Collection<RpcError> errors) {
50         this(null, errors);
51     }
52
53     private static Collection<RpcError> asCollection(final RpcError... errors) {
54         if (errors.length == 0) {
55             return Collections.emptyList();
56         } else {
57             return Arrays.asList(errors);
58         }
59     }
60
61     @Override
62     @Nonnull
63     public Collection<RpcError> getErrors() {
64         return errors;
65     }
66
67     @Override
68     public NormalizedNode<?, ?> getResult() {
69         return result;
70     }
71
72     @Override
73     public int hashCode() {
74         int ret = errors.hashCode();
75         if (result != null) {
76             ret = 31 * ret + result.hashCode();
77         }
78         return ret;
79     }
80
81     @Override
82     public boolean equals(final Object obj) {
83         if (this == obj) {
84             return true;
85         }
86         if (!(obj instanceof DefaultDOMRpcResult)) {
87             return false;
88         }
89
90         final DefaultDOMRpcResult other = (DefaultDOMRpcResult) obj;
91         if (!errors.equals(other.errors)) {
92             return false;
93         }
94         return Objects.equals(result, other.result);
95     }
96 }