Northbound migration to use the new Schema independent Library based Plugin.
[netvirt.git] / northbound / src / main / java / org / opendaylight / ovsdb / northbound / OvsdbNorthboundV3.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc. and others
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 package org.opendaylight.ovsdb.northbound;
11
12 import javax.ws.rs.Path;
13
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 /**
18 * OVSDB Northbound V3 REST API.<br>
19 */
20
21 @Path("/v3/")
22 public class OvsdbNorthboundV3 {
23     protected static final Logger logger = LoggerFactory.getLogger(OvsdbNorthboundV3.class);
24 }