2645a03538b71bc0c3d8952da5f07f48a49392a1
[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     @java.io.Serial
18     private static final long serialVersionUID = 2647778426312509718L;
19
20     private YangInstanceIdentifier path;
21     private short version;
22
23     protected AbstractModification(final short version) {
24         this.version = version;
25     }
26
27     protected AbstractModification(final short version, final YangInstanceIdentifier path) {
28         this.path = path;
29         this.version = version;
30     }
31
32     protected AbstractModification(final YangInstanceIdentifier path) {
33         this.path = path;
34     }
35
36     protected void setPath(final YangInstanceIdentifier path) {
37         this.path = path;
38     }
39
40     public YangInstanceIdentifier getPath() {
41         return path;
42     }
43
44     public short getVersion() {
45         return version;
46     }
47 }