You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
163 lines
4.6 KiB
163 lines
4.6 KiB
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P. |
|
# 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. |
|
|
|
import abc |
|
|
|
|
|
class L2gwDriverBase(object, metaclass=abc.ABCMeta): |
|
|
|
def __init__(self, service_plugin, validator=None): |
|
self.service_plugin = service_plugin |
|
|
|
@property |
|
def service_type(self): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def add_port_mac(self, context, port_dict): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def delete_port_mac(self, context, port): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def create_l2_gateway(self, context, l2_gateway): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def update_l2_gateway(self, context, l2_gateway_id, l2_gateway): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def delete_l2_gateway(self, context, l2_gateway_id): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def create_l2_gateway_connection(self, context, l2_gateway_connection): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def delete_l2_gateway_connection(self, context, l2_gateway_connection_id): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def create_l2_gateway_precommit(self, context, l2_gateway): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def update_l2_gateway_precommit(self, context, l2_gateway): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def delete_l2_gateway_precommit(self, context, l2_gateway_id): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def create_l2_gateway_connection_precommit(self, context, |
|
l2_gateway_connection): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def delete_l2_gateway_connection_precommit(self, context, |
|
l2_gateway_connection_id): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def create_l2_gateway_postcommit(self, context, l2_gateway): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def delete_l2_gateway_postcommit(self, context, l2_gateway_id): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def update_l2_gateway_postcommit(self, context, l2_gateway): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def create_l2_gateway_connection_postcommit(self, context, |
|
l2_gateway_connection): |
|
pass |
|
|
|
@abc.abstractmethod |
|
def delete_l2_gateway_connection_postcommit(self, context, |
|
l2_gateway_connection_id): |
|
pass |
|
|
|
|
|
class L2gwDriver(L2gwDriverBase, metaclass=abc.ABCMeta): |
|
|
|
def __init__(self, service_plugin, validator=None): |
|
super(L2gwDriver, self).__init__(service_plugin) |
|
|
|
@property |
|
def service_type(self): |
|
pass |
|
|
|
def add_port_mac(self, context, port_dict): |
|
pass |
|
|
|
def delete_port_mac(self, context, port): |
|
pass |
|
|
|
def create_l2_gateway(self, context, l2_gateway): |
|
pass |
|
|
|
def update_l2_gateway(self, context, l2_gateway_id, l2_gateway): |
|
pass |
|
|
|
def delete_l2_gateway(self, context, l2_gateway_id): |
|
pass |
|
|
|
def create_l2_gateway_connection(self, context, l2_gateway_connection): |
|
pass |
|
|
|
def delete_l2_gateway_connection(self, context, l2_gateway_connection_id): |
|
pass |
|
|
|
def create_l2_gateway_precommit(self, context, l2_gateway): |
|
pass |
|
|
|
def update_l2_gateway_precommit(self, context, l2_gateway): |
|
pass |
|
|
|
def delete_l2_gateway_precommit(self, context, l2_gateway_id): |
|
pass |
|
|
|
def create_l2_gateway_connection_precommit(self, context, |
|
l2_gateway_connection): |
|
pass |
|
|
|
def delete_l2_gateway_connection_precommit(self, context, |
|
l2_gateway_connection_id): |
|
pass |
|
|
|
def create_l2_gateway_postcommit(self, context, l2_gateway): |
|
pass |
|
|
|
def delete_l2_gateway_postcommit(self, context, l2_gateway_id): |
|
pass |
|
|
|
def update_l2_gateway_postcommit(self, context, l2_gateway): |
|
pass |
|
|
|
def create_l2_gateway_connection_postcommit(self, context, |
|
l2_gateway_connection): |
|
pass |
|
|
|
def delete_l2_gateway_connection_postcommit(self, context, |
|
l2_gateway_connection_id): |
|
pass
|
|
|