Disable netvirt
[ovsdb.git] / utils / ovsdb-it-utils / src / main / java / org / opendaylight / ovsdb / utils / ovsdb / it / utils / ItConstants.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
9 package org.opendaylight.ovsdb.utils.ovsdb.it.utils;
10
11 /**
12  * Constants for SouthboundIT.
13  */
14 public final class ItConstants {
15     private ItConstants() {
16         throw new AssertionError("This class should not be instantiated.");
17     }
18
19     public static final String ORG_OPS4J_PAX_LOGGING_CFG = "etc/org.ops4j.pax.logging.cfg";
20     public static final String CUSTOM_PROPERTIES = "etc/custom.properties";
21     public static final String SERVER_IPADDRESS = "ovsdbserver.ipaddress";
22     public static final String SERVER_PORT = "ovsdbserver.port";
23     public static final String CONTROLLER_IPADDRESS = "ovsdb.controller.address";
24     public static final String USERSPACE_ENABLED = "ovsdb.userspace.enabled";
25     public static final String SERVER_EXTRAS = "ovsdbserver.extras";
26     public static final String CONNECTION_TYPE = "ovsdbserver.connection";
27     public static final String CONNECTION_TYPE_ACTIVE = "active";
28     public static final String CONNECTION_TYPE_PASSIVE = "passive";
29     public static final int CONNECTION_INIT_TIMEOUT = 10000;
30     public static final String DEFAULT_SERVER_IPADDRESS = "127.0.0.1";
31     public static final String DEFAULT_SERVER_PORT = "6640";
32     public static final String DEFAULT_OPENFLOW_PORT = "6653";
33     public static final String DEFAULT_SERVER_EXTRAS = "false";
34     public static final String BRIDGE_NAME = "brtest";
35     public static final String PORT_NAME = "porttest";
36     public static final String INTEGRATION_BRIDGE_NAME = "br-int";
37     public static final String OPENFLOW_CONNECTION_PROTOCOL = "tcp";
38     public static final String NETVIRT_TOPOLOGY_ID = "netvirt:1";
39 }