X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openstack%2Fnet-virt%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fovsdb%2Fopenstack%2Fnetvirt%2Fapi%2FVlanConfigurationCache.java;h=0e4b2b016e7d0950a233cc0ce556f687671b934b;hb=8c25485f297283f1dd337d5c45272598a2d3cc5e;hp=529349d6ec0cbbb7fb613c95a8a57b6ae20ea188;hpb=322fe57550d7e64aef138e4d609754c324457c35;p=ovsdb.git diff --git a/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/api/VlanConfigurationCache.java b/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/api/VlanConfigurationCache.java index 529349d6e..0e4b2b016 100644 --- a/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/api/VlanConfigurationCache.java +++ b/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/api/VlanConfigurationCache.java @@ -1,11 +1,9 @@ /* - * Copyright (C) 2014 Red Hat, Inc. + * Copyright (c) 2014, 2015 Red Hat, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html - * - * Authors : Dave Tucker */ package org.opendaylight.ovsdb.openstack.netvirt.api; @@ -24,7 +22,7 @@ public interface VlanConfigurationCache { * @param networkId the Neutron Network ID * @return a VLAN ID or 0 in case of an error */ - public Integer assignInternalVlan (Node node, String networkId); + Integer assignInternalVlan(Node node, String networkId); /** * Recovers an assigned VLAN ID when it is no longer required @@ -32,7 +30,7 @@ public interface VlanConfigurationCache { * @param networkId the Neutron Network ID * @return the reclaimed VLAN ID or 0 in case of an error */ - public Integer reclaimInternalVlan (Node node, String networkId); + Integer reclaimInternalVlan(Node node, String networkId); /** * Returns a VLAN ID assigned to a given tenant network @@ -40,5 +38,5 @@ public interface VlanConfigurationCache { * @param networkId the Neutron Network ID * @return the VLAN ID or 0 in case of an error */ - public Integer getInternalVlan (Node node, String networkId); + Integer getInternalVlan(Node node, String networkId); }