Remove redundant names in paths
[netvirt.git] / bgpmanager / impl / src / main / java / org / opendaylight / netvirt / bgpmanager / oam / BgpConstants.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.netvirt.bgpmanager.oam;
10
11
12 public interface BgpConstants {
13
14     String BGP_SPEAKER_HOST_NAME = "vpnservice.bgpspeaker.host.name";
15     String BGP_SPEAKER_THRIFT_PORT = "vpnservice.bgpspeaker.thrift.port";
16     String DEFAULT_BGP_HOST_NAME = "localhost";
17     int DEFAULT_BGP_THRIFT_PORT = 7644;
18     int BGP_NOTIFY_CEASE_CODE = 6;
19     String QBGP_VTY_PASSWORD = "sdncbgpc";
20     String BGP_COUNTER_NBR_PKTS_RX = "BgpNeighborPacketsReceived";
21     String BGP_COUNTER_NBR_PKTS_TX = "BgpNeighborPacketsSent";
22     String BGP_COUNTER_RD_ROUTE_COUNT = "BgpRdRouteCount";
23     String BGP_COUNTER_TOTAL_PFX = "BgpTotalPrefixes:Bgp_Total_Prefixes";
24     String BGP_DEF_LOG_LEVEL = "debugging";
25     String BGP_DEF_LOG_FILE = "/var/log/bgp_debug.log";
26     long DEFAULT_ETH_TAG = 0L;
27 }