itm and mdsal porting
[vpnservice.git] / mdsalutil / mdsalutil-api / src / main / java / org / opendaylight / vpnservice / utils / hwvtep / HwvtepSouthboundConstants.java
1 /*
2  * Copyright (c) 2015 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.vpnservice.utils.hwvtep;
9
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.EncapsulationTypeBase;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.EncapsulationTypeVxlanOverIpv4;
12 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.TopologyId;
13
14 import com.google.common.collect.ImmutableBiMap;
15
16 // TODO (eperefr) Remove this class once it's been added to hwvtep-southbound
17 public class HwvtepSouthboundConstants {
18
19     public static final TopologyId HWVTEP_TOPOLOGY_ID = new TopologyId("hwvtep:1");
20     public static final String HWVTEP_ENTITY_TYPE = "hwvtep";
21     public static final Object PSWITCH_URI_PREFIX = "physicalswitch";
22     public static final ImmutableBiMap<Class<? extends EncapsulationTypeBase>, String> ENCAPS_TYPE_MAP = new ImmutableBiMap.Builder<Class<? extends EncapsulationTypeBase>, String>()
23             .put(EncapsulationTypeVxlanOverIpv4.class, "vxlan_over_ipv4").build();
24
25 }