Speed up SouthboundIT through multi-threading test cases
[ovsdb.git] / integrationtest / src / test / java / org / opendaylight / ovsdb / integrationtest / ovsdbclient / VersionIncompatibleBridge.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
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  * Authors : Madhu Venugopal
9  */
10
11 package org.opendaylight.ovsdb.integrationtest.ovsdbclient;
12 import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
13 import org.opendaylight.ovsdb.lib.schema.typed.TypedTable;
14
15 /**
16  * VersionIncompatibleBridge is used to test the Version Compatibility logic in the Library
17  * with an absurdly low fromVersion and untilVersion which will fail for all the OVS versions.
18  */
19 @TypedTable(name="Bridge", database="Open_vSwitch", fromVersion="0.0.1", untilVersion="0.0.2")
20 public interface VersionIncompatibleBridge extends TypedBaseTable {
21 }