3bfa479a5e5ef384839226319e714180d76573d8
[groupbasedpolicy.git] / renderers / vpp / src / main / java / org / opendaylight / groupbasedpolicy / renderer / vpp / lisp / util / Constants.java
1 /*
2  * Copyright (c) 2016 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 package org.opendaylight.groupbasedpolicy.renderer.vpp.lisp.util;
9
10
11 /**
12  * Created by Shakib Ahmed on 7/20/17.
13  */
14 public class Constants {
15     public static final String METADATA_IP = "169.254.169.254";
16     public static final String METADATA_SUBNET_UUID = "local-metadata-subnet";
17     public static final String ROUTING_PROTOCOL_NAME_PREFIX = "static-routing-";
18     public static final String DEFAULT_ROUTING_DESCRIPTION = "Static route added from GBP for flat L3 overlay";
19     public static final String GW_NAME_PREFIX = "loop-";
20     public static final String GPE_ENTRY_PREFIX = "gpe-entry-";
21     public static final String DUMMY_PROTOCOL_BRIDGE_DOMAIN = "bridge-domain-dummy-protocol";
22     public static final String TENANT_INTERFACE = "tenant-interface";
23     public static final String PUBLIC_SUBNET_UUID = "public-interface-subnet-uuid";
24
25 }