neutron/neutron/extensions/netmtu_writable.py
Boden R 7d7ca981bd use net mtu api writable def from neutron-lib
The net mtu writable extension's API definition was moved into
neutron-lib with commit I3dd29578cee4ac4f9f55f6500965664e9e8069a6
This patch consumes it by removing the rehomed code and using the
APIExtensionDescriptor for the parent class of the extension.

NeutronLibImpact

Change-Id: If4b9e0024f3c633bc2ab8db3e7f3237ff349b961
2017-11-14 15:28:28 -07:00

21 lines
831 B
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from neutron_lib.api.definitions import network_mtu_writable as apidef
from neutron_lib.api import extensions
class Netmtu_writable(extensions.APIExtensionDescriptor):
"""Extension class supporting writable network MTU."""
api_definition = apidef