Teach sal-remoterpc-connector to route actions
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / messages / RpcResponse.java
index 17766f15b9af7c22112852c16686c02684155924..f141f09b3ccb42aa2f1adedb7c2299abba0e82da 100644 (file)
@@ -7,18 +7,53 @@
  */
 package org.opendaylight.controller.remote.rpc.messages;
 
+import java.io.Externalizable;
+import java.io.IOException;
+import java.io.ObjectInput;
+import java.io.ObjectOutput;
+import org.eclipse.jdt.annotation.Nullable;
+import org.opendaylight.controller.cluster.datastore.node.utils.stream.SerializationUtils;
+import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
 
+public class RpcResponse extends AbstractResponse<NormalizedNode<?, ?>> {
+    private static final long serialVersionUID = -4211279498688989245L;
 
-import java.io.Serializable;
+    public RpcResponse(final @Nullable NormalizedNode<?, ?> output) {
+        super(output);
+    }
 
-public class RpcResponse implements Serializable {
-  private final String resultCompositeNode;
+    @Override
+    Object writeReplace() {
+        return new Proxy(this);
+    }
 
-  public RpcResponse(final String resultCompositeNode) {
-    this.resultCompositeNode = resultCompositeNode;
-  }
+    private static class Proxy implements Externalizable {
+        private static final long serialVersionUID = 1L;
 
-  public String getResultCompositeNode() {
-    return resultCompositeNode;
-  }
+        private RpcResponse rpcResponse;
+
+        // checkstyle flags the public modifier as redundant which really doesn't make sense since it clearly isn't
+        // redundant. It is explicitly needed for Java serialization to be able to create instances via reflection.
+        @SuppressWarnings("checkstyle:RedundantModifier")
+        public Proxy() {
+        }
+
+        Proxy(final RpcResponse rpcResponse) {
+            this.rpcResponse = rpcResponse;
+        }
+
+        @Override
+        public void writeExternal(final ObjectOutput out) throws IOException {
+            SerializationUtils.writeNormalizedNode(out, rpcResponse.getOutput());
+        }
+
+        @Override
+        public void readExternal(final ObjectInput in) throws IOException {
+            rpcResponse = new RpcResponse(SerializationUtils.readNormalizedNode(in).orElse(null));
+        }
+
+        private Object readResolve() {
+            return rpcResponse;
+        }
+    }
 }