Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from neutron.openstack.common import log
- from neutron.plugins.ml2 import driver_api as api
- __author__ = 'sharath'
- LOG = log.getLogger(__name__)
- class DriverTest(api.MechanismDriver):
- def initialize(self):
- LOG.debug('am in initialize')
- pass
- def create_network_precommit(self, context):
- LOG.debug('am in create_network_precommit')
- pass
- def create_network_postcommit(self, context):
- LOG.debug('am in create_network_postcommit')
- pass
- def create_port_precommit(self, context):
- LOG.debug('am in create_port_precommit')
- pass
- def create_subnet_precommit(self, context):
- LOG.debug('am in create_subnet_precommit')
- pass
- def create_port_postcommit(self, context):
- LOG.debug('am in create_port_postcommit')
- pass
- def create_subnet_postcommit(self, context):
- LOG.debug('am in create_subnet_postcommit')
- pass
Advertisement
Add Comment
Please, Sign In to add comment