5f47367d30
Adds Opencontrail plug-in implementation with unit tests This patch has no dependency on any other blueprints The link below describes how to install VIF driver for opencontrail https://github.com/Juniper/contrail-controller/wiki/ OpenContrail-bring-up-and-provisioning - The contrail_plugin_core.py is the main interface for neutron common infrastructure. It relays API requests to the opencontrail controller DocImpact Change-Id: I501bf669b2a999a171f9a3ee3e9893d4ead50e3b Implements: blueprint juniper-plugin-with-extensions
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
# Copyright 2014 Juniper Networks. All rights reserved.
|
|
#
|
|
# 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.common import exceptions as exc
|
|
|
|
|
|
class ContrailError(exc.NeutronException):
|
|
message = '%(msg)s'
|
|
|
|
|
|
class ContrailNotFoundError(exc.NotFound):
|
|
message = '%(msg)s'
|
|
|
|
|
|
class ContrailConflictError(exc.Conflict):
|
|
message = '%(msg)s'
|
|
|
|
|
|
class ContrailBadRequestError(exc.BadRequest):
|
|
message = '%(msg)s'
|
|
|
|
|
|
class ContrailServiceUnavailableError(exc.ServiceUnavailable):
|
|
message = '%(msg)s'
|
|
|
|
|
|
class ContrailNotAuthorizedError(exc.NotAuthorized):
|
|
message = '%(msg)s'
|