b6f6673b838978042183dd57617e9f781354bced
[vpnservice.git] / itm / itm-api / src / main / java / org / opendaylight / vpnservice / itm / globals / ITMConstants.java
1 /*
2  * Copyright (c) 2015 - 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.itm.globals;
9
10 import java.math.BigInteger;
11
12 public class ITMConstants{
13   public static final BigInteger COOKIE_ITM = new BigInteger("9000000", 16);
14   public static final BigInteger COOKIE_ITM_EXTERNAL = new BigInteger("9050000", 16);
15
16   public static final String ITM_IDPOOL_NAME = "Itmservices";
17   public static final long ITM_IDPOOL_START = 1L;
18   public static final String ITM_IDPOOL_SIZE = "100000";
19   public static int LLDP_SERVICE_ID = 0;
20   //Tunnel Monitoring
21   public static final boolean DEFAULT_MONITOR_ENABLED = true;
22   public static final int DEFAULT_MONITOR_INTERVAL = 10;
23   public static final String DUMMY_IP_ADDRESS = "0.0.0.0";
24   public static final String TUNNEL_TYPE_VXLAN = "VXLAN";
25   public static final String TUNNEL_TYPE_GRE = "GRE";
26 }
27