X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=restconf%2Frestconf-nb-bierman02%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2Ftest%2FDummyRpcResult.java;fp=restconf%2Frestconf-nb-bierman02%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2Ftest%2FDummyRpcResult.java;h=f03330e3c3c5aad87290d2d9f1438bb9ad51a6f6;hb=45cfee1861924b4a8086d38079ce8cbd320386d6;hp=3c545c06e95054f70dd4ab21c42912179f37990d;hpb=e2f838d72117730ceaae4b4ac4992cc244678c71;p=netconf.git diff --git a/restconf/restconf-nb-bierman02/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/DummyRpcResult.java b/restconf/restconf-nb-bierman02/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/DummyRpcResult.java index 3c545c06e9..f03330e3c3 100644 --- a/restconf/restconf-nb-bierman02/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/DummyRpcResult.java +++ b/restconf/restconf-nb-bierman02/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/DummyRpcResult.java @@ -49,18 +49,18 @@ public class DummyRpcResult implements RpcResult { private T result; private Collection errors; - public Builder isSuccessful(final boolean isSuccessful) { - this.isSuccessful = isSuccessful; + public Builder isSuccessful(final boolean successful) { + this.isSuccessful = successful; return this; } - public Builder result(final T result) { - this.result = result; + public Builder result(final T newResult) { + this.result = newResult; return this; } - public Builder errors(final Collection errors) { - this.errors = errors; + public Builder errors(final Collection newErrors) { + this.errors = newErrors; return this; }