Remove redundant names in paths
[netvirt.git] / elanmanager / impl / src / main / java / org / opendaylight / netvirt / elan / l2gw / ha / merge / PSAugmentationMerger.java
1 /*
2  * Copyright (c) 2016, 2017 Ericsson India Global Services Pvt Ltd. 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 package org.opendaylight.netvirt.elan.l2gw.ha.merge;
9
10 import org.opendaylight.netvirt.elan.l2gw.ha.commands.TunnelCmd;
11 import org.opendaylight.netvirt.elan.l2gw.ha.commands.TunnelIpCmd;
12
13 public class PSAugmentationMerger
14         extends MergeCommandsAggregator {
15     public PSAugmentationMerger() {
16         commands.add(new TunnelCmd());
17         commands.add(new TunnelIpCmd());
18     }
19
20     static PSAugmentationMerger instance = new PSAugmentationMerger();
21
22     public static PSAugmentationMerger getInstance() {
23         return instance;
24     }
25 }