33bd4d45e191419d605153463eafd2e00987830e
[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(final short version) {
22         this.version = version;
23     }
24
25     protected AbstractModification(final short version, final YangInstanceIdentifier path) {
26         this.path = path;
27         this.version = version;
28     }
29
30     protected AbstractModification(final YangInstanceIdentifier path) {
31         this.path = path;
32     }
33
34     protected void setPath(final YangInstanceIdentifier path) {
35         this.path = path;
36     }
37
38     public YangInstanceIdentifier getPath() {
39         return path;
40     }
41
42     public short getVersion() {
43         return version;
44     }
45 }