Ensure that modifications are tracked by ShardTransaction
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / modification / ImmutableCompositeModification.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 import java.util.List;
14
15 public class ImmutableCompositeModification implements CompositeModification{
16
17   private final CompositeModification modification;
18
19   public ImmutableCompositeModification(CompositeModification modification){
20     this.modification = modification;
21   }
22
23   @Override
24   public List<Modification> getModifications() {
25     return modification.getModifications();
26   }
27
28   @Override
29   public void apply(DOMStoreWriteTransaction transaction) {
30     modification.apply(transaction);
31   }
32 }