Merge "LLDP monitor interval update fixes"
[vpnservice.git] / fibmanager / fibmanager-impl / src / main / java / org / opendaylight / vpnservice / fibmanager / FibConstants.java
1 /*
2  * Copyright (c) 2016 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.fibmanager;
9
10 import java.math.BigInteger;
11
12 public class FibConstants {
13     static final BigInteger COOKIE_VM_LFIB_TABLE = new BigInteger("8000002", 16);
14     static final BigInteger COOKIE_VM_FIB_TABLE =  new BigInteger("8000003", 16);
15     static final BigInteger COOKIE_TUNNEL = new BigInteger("9000000", 16);
16     static final int DEFAULT_FIB_FLOW_PRIORITY = 10;
17     static final String FLOWID_PREFIX = "L3.";
18     static final String VPN_IDPOOL_NAME = "vpnservices";
19     static final String SEPARATOR = ".";
20 }