Merge "BUG-997 Use shared schema context factory in netconf-connector"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / DataExists.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.util.InstanceIdentifierUtils;
12 import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
13 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
14
15 public class DataExists implements SerializableMessage{
16
17     public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.DataExists.class;
18
19     private final YangInstanceIdentifier path;
20
21     public DataExists(YangInstanceIdentifier path) {
22         this.path = path;
23     }
24
25     public YangInstanceIdentifier getPath() {
26         return path;
27     }
28
29     @Override public Object toSerializable() {
30         return ShardTransactionMessages.DataExists.newBuilder()
31             .setInstanceIdentifierPathArguments(
32                 InstanceIdentifierUtils.toSerializable(path)).build();
33     }
34
35     public static DataExists fromSerializable(Object serializable){
36         ShardTransactionMessages.DataExists o = (ShardTransactionMessages.DataExists) serializable;
37         return new DataExists(InstanceIdentifierUtils.fromSerializable(o.getInstanceIdentifierPathArguments()));
38     }
39
40 }