Bug 5147 - Wrong logging level for ConfigProperties not found with defaults
[ovsdb.git] / openstack / net-virt-sfc / it / src / test / java / org / opendaylight / ovsdb / openstack / netvirt / sfc / it / utils / NetvirtConfigUtils.java
1 /*
2  * Copyright © 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.openstack.netvirt.sfc.it.utils;
10
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.netvirt.providers.config.rev160109.NetvirtProvidersConfigBuilder;
12
13 public class NetvirtConfigUtils {
14     public NetvirtProvidersConfigBuilder netvirtProvidersConfigBuilder(
15             NetvirtProvidersConfigBuilder netvirtProvidersConfigBuilder, short tableOffset) {
16         return netvirtProvidersConfigBuilder.setTableOffset(tableOffset);
17     }
18 }