Merge "Introducing the Modification classses"
[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 org.opendaylight.controller.sal.core.spi.data.DOMStoreWriteTransaction;
12
13 /**
14  * Represents a modification to the data store.
15  * <p>
16  * Simple modifications can be of type,
17  * <li> {@link org.opendaylight.controller.cluster.datastore.modification.WriteModification}
18  * <li> {@link org.opendaylight.controller.cluster.datastore.modification.MergeModification}
19  * <li> {@link org.opendaylight.controller.cluster.datastore.modification.DeleteModification}
20  * </p>
21  *
22  * <p>
23  * Modifications can in turn be lumped into a single {@link org.opendaylight.controller.cluster.datastore.modification.CompositeModification}
24  * which can then be applied to a write transaction
25  * </p>
26  */
27 public interface Modification {
28   /**
29    * Apply the modification to the specified transaction
30    * @param transaction
31    */
32   void apply(DOMStoreWriteTransaction transaction);
33 }