Change trackerList to a LinkedList
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / MergeData.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.controller.cluster.datastore.messages;
10
11 import org.opendaylight.controller.cluster.datastore.node.NormalizedNodeToNodeCodec;
12 import org.opendaylight.controller.cluster.datastore.node.NormalizedNodeToNodeCodec.Decoded;
13 import org.opendaylight.controller.cluster.datastore.node.NormalizedNodeToNodeCodec.Encoded;
14 import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
15 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
16 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
17 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
18
19 public class MergeData extends ModifyData{
20
21     public static final Class<ShardTransactionMessages.MergeData> SERIALIZABLE_CLASS =
22             ShardTransactionMessages.MergeData.class;
23
24     public MergeData(YangInstanceIdentifier path, NormalizedNode<?, ?> data,
25         SchemaContext context) {
26         super(path, data, context);
27     }
28
29     @Override
30     public Object toSerializable() {
31         Encoded encoded = new NormalizedNodeToNodeCodec(schemaContext).encode(path, data);
32         return ShardTransactionMessages.MergeData.newBuilder()
33             .setInstanceIdentifierPathArguments(encoded.getEncodedPath())
34             .setNormalizedNode(encoded.getEncodedNode().getNormalizedNode()).build();
35     }
36
37     public static MergeData fromSerializable(Object serializable, SchemaContext schemaContext){
38         ShardTransactionMessages.MergeData o = (ShardTransactionMessages.MergeData) serializable;
39         Decoded decoded = new NormalizedNodeToNodeCodec(schemaContext).decode(
40                 o.getInstanceIdentifierPathArguments(), o.getNormalizedNode());
41         return new MergeData(decoded.getDecodedPath(), decoded.getDecodedNode(), schemaContext);
42     }
43 }