c81468d6617a9a2302a17a2218c9e613764ebe2a
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / modification / AbstractModification.java
1 /*
2  * Copyright (c) 2014, 2017 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.modification;
10
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
12
13 /**
14  * Base class to be used for all simple modifications that can be applied to a DOMStoreTransaction.
15  */
16 public abstract class AbstractModification implements Modification {
17
18     private YangInstanceIdentifier path;
19     private short version;
20
21     protected AbstractModification(short version) {
22         this.version = version;
23     }
24
25     protected AbstractModification(YangInstanceIdentifier path) {
26         this.path = path;
27     }
28
29     protected void setPath(YangInstanceIdentifier path) {
30         this.path = path;
31     }
32
33     public YangInstanceIdentifier getPath() {
34         return path;
35     }
36
37     public short getVersion() {
38         return version;
39     }
40 }