Implement commiting of data
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / modification / CompositeModification.java
index 3a8eff1aa511e8194992a72d98598251cd61a9ed..4c856d31eb35803d045dc87a204de5adcbce1dde 100644 (file)
@@ -18,5 +18,9 @@ import java.util.List;
  * </p>
  */
 public interface CompositeModification extends Modification {
-  List<Modification> getModifications();
+    /**
+     * Get a list of Modifications contained by this Composite
+     * @return
+     */
+    List<Modification> getModifications();
 }