Add some debugging for vlan case
[ovsdb.git] / openstack / netvirt-it / src / test / java / org / opendaylight / ovsdb / openstack / netvirt / it / SouthboundITConstants.java
1 /*
2  * Copyright (c) 2015 Red Hat, Inc. 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.ovsdb.openstack.netvirt.it;
9
10 /**
11  * Constants for SouthboundIT
12  */
13 public final class SouthboundITConstants {
14     private SouthboundITConstants() {
15         throw new AssertionError("This class should not be instantiated.");
16     }
17
18     public static final String ORG_OPS4J_PAX_LOGGING_CFG = "etc/org.ops4j.pax.logging.cfg";
19     public static final String CUSTOM_PROPERTIES = "etc/custom.properties";
20     public static final String SERVER_IPADDRESS = "ovsdbserver.ipaddress";
21     public static final String SERVER_PORT = "ovsdbserver.port";
22     public static final String SERVER_EXTRAS = "ovsdbserver.extras";
23     public static final String CONNECTION_TYPE = "ovsdbserver.connection";
24     public static final String CONNECTION_TYPE_ACTIVE = "active";
25     public static final String CONNECTION_TYPE_PASSIVE = "passive";
26     public static final int CONNECTION_INIT_TIMEOUT = 10000;
27     public static final String DEFAULT_SERVER_IPADDRESS = "127.0.0.1";
28     public static final String DEFAULT_SERVER_PORT = "6640";
29     public static final String DEFAULT_SERVER_EXTRAS = "false";
30     public static final String BRIDGE_NAME = "brtest";
31 }