Fix warnings/javadocs in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / modification / Modification.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.modification;
10
11 import java.io.Externalizable;
12 import org.opendaylight.controller.sal.core.spi.data.DOMStoreWriteTransaction;
13 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
14
15 /**
16  * Represents a modification to the data store.
17  * <p>
18  * Simple modifications can be of type,
19  * <li> {@link org.opendaylight.controller.cluster.datastore.modification.WriteModification}
20  * <li> {@link org.opendaylight.controller.cluster.datastore.modification.MergeModification}
21  * <li> {@link org.opendaylight.controller.cluster.datastore.modification.DeleteModification}
22  * </p>
23  *
24  * <p>
25  * Modifications can in turn be lumped into a single
26  * {@link org.opendaylight.controller.cluster.datastore.modification.CompositeModification}
27  * which can then be applied to a write transaction.
28  * </p>
29  */
30 public interface Modification extends Externalizable {
31
32     byte COMPOSITE = 1;
33     byte WRITE = 2;
34     byte MERGE = 3;
35     byte DELETE = 4;
36
37     /**
38      * Apply the modification to the specified transaction.
39      *
40      * @param transaction the transaction
41      */
42     void apply(DOMStoreWriteTransaction transaction);
43
44     /**
45      * Apply the modification to the specified transaction.
46      *
47      * @param transaction the transaction
48      */
49     void apply(DataTreeModification transaction);
50
51     byte getType();
52 }