3fc28972e9fcb9a332ac54b323bfbc8bbb4dd1c1
[vpnservice.git] / vpnmanager / vpnmanager-impl / src / main / java / org / opendaylight / vpnservice / VpnConstants.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
9 package org.opendaylight.vpnservice;
10
11 public class VpnConstants {
12     public static final String VPN_IDPOOL_NAME = "vpnservices";
13     public static final long VPN_IDPOOL_START = 1L;
14     public static final String VPN_IDPOOL_SIZE = "65535";
15     public static final short LPORT_INGRESS_TABLE = 0;
16     public static final short LFIB_TABLE = 20;
17     public static final short FIB_TABLE = 21;
18     public static final short DEFAULT_FLOW_PRIORITY = 10;
19     public static final long INVALID_ID = -1;
20 }