Move byte-based serialization method
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / modification / CompositeModification.java
index 4c856d31eb35803d045dc87a204de5adcbce1dde..b59132fe874471eb7689459788849368ef31190a 100644 (file)
@@ -5,22 +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 {
     /**
-     * Get a list of Modifications contained by this Composite
-     * @return
+     * Get a list of modifications contained by this composite.
+     *
+     * @return an immutable list of modifications
      */
     List<Modification> getModifications();
 }