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