7bb8c25e3ded1e6d10043c053724368f7b5e1875
[controller.git] / opendaylight / md-sal / sal-common-util / src / main / java / org / opendaylight / controller / sal / common / util / Rpcs.java
1 /*
2  * Copyright (c) 2013 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.sal.common.util;
9
10 import com.google.common.collect.ImmutableList;
11 import java.io.Serializable;
12 import java.util.Collection;
13 import org.opendaylight.yangtools.concepts.Immutable;
14 import org.opendaylight.yangtools.yang.common.RpcError;
15 import org.opendaylight.yangtools.yang.common.RpcResult;
16
17 /**
18  * Deprecated.
19  *
20  * @deprecated Use {@link org.opendaylight.yangtools.yang.common.RpcResultBuilder}
21  */
22 @Deprecated
23 public final class Rpcs {
24     private Rpcs() {
25     }
26
27     public static <T> RpcResult<T> getRpcResult(boolean successful) {
28         return new RpcResultTO<>(successful, null, ImmutableList.of());
29     }
30
31     public static <T> RpcResult<T> getRpcResult(boolean successful, T result,
32             Collection<RpcError> errors) {
33         return new RpcResultTO<>(successful, result, errors);
34     }
35
36     public static <T> RpcResult<T> getRpcResult(boolean successful, Collection<RpcError> errors) {
37         return new RpcResultTO<>(successful, null, errors);
38     }
39
40     private static class RpcResultTO<T> implements RpcResult<T>, Serializable, Immutable {
41         private static final long serialVersionUID = 1L;
42         private final Collection<RpcError> errors;
43         private final T result;
44         private final boolean successful;
45
46         RpcResultTO(boolean successful, T result, Collection<RpcError> errors) {
47             this.successful = successful;
48             this.result = result;
49             this.errors = ImmutableList.copyOf(errors);
50         }
51
52         @Override
53         public boolean isSuccessful() {
54             return successful;
55         }
56
57         @Override
58         public T getResult() {
59             return result;
60         }
61
62         @Override
63         public Collection<RpcError> getErrors() {
64             return errors;
65         }
66     }
67 }