25dee2f08bbe4c33467ef43dc496ae097da2e0bd
[vpnservice.git] / bgpmanager / bgpmanager-impl / src / main / java / org / opendaylight / bgpmanager / thrift / common / Constants.java
1 package org.opendaylight.bgpmanager.thrift.common;
2
3
4 public class Constants {
5
6
7         public static final String PROP_MAX_WORKER_THREADS = "bgpthrift.maxWorkerThreads";
8         public static final String PROP_MIN_WORKER_THREADS = "bgpthrift.minWorkerThreads";
9
10         //  Configurable parameters
11         public static final String PROP_BGP_THRIFT_PORT = "bgp.thrift.service.port";
12
13         // Default configurations
14
15         public static final int BGP_SERVICE_PORT = 6644;
16         public static final int DEFAULT_MIN_WORKER_THREADS = 1; //1 client only- quagga server - so 1 thread to service it
17         public static final int DEFAULT_MAX_WORKER_THREADS = 1;
18
19         public static final int CL_SKT_TIMEO_MS = 30000;
20
21 }