Switch CompositeModification to bypass thread-local streams
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / modification / CompositeModification.java
index 3a8eff1aa511e8194992a72d98598251cd61a9ed..b59132fe874471eb7689459788849368ef31190a 100644 (file)
@@ -5,18 +5,22 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.controller.cluster.datastore.modification;
 
 import java.util.List;
 
 /**
- * CompositeModification contains a list of modifications that need to be applied to the DOMStore
+ * CompositeModification contains a list of modifications that need to be applied to the DOMStore.
+ *
  * <p>
  * A CompositeModification gets stored in the transaction log for a Shard. During recovery when the transaction log
  * is being replayed a DOMStoreWriteTransaction could be created and a CompositeModification could be applied to it.
- * </p>
  */
 public interface CompositeModification extends Modification {
-  List<Modification> getModifications();
+    /**
+     * Get a list of modifications contained by this composite.
+     *
+     * @return an immutable list of modifications
+     */
+    List<Modification> getModifications();
 }