Guest User

Untitled

a guest
Nov 10th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. from neutron.openstack.common import log
  2. from neutron.plugins.ml2 import driver_api as api
  3.  
  4.  
  5. __author__ = 'sharath'
  6.  
  7. LOG = log.getLogger(__name__)
  8.  
  9. class DriverTest(api.MechanismDriver):
  10. def initialize(self):
  11. LOG.debug('am in initialize')
  12. pass
  13. def create_network_precommit(self, context):
  14. LOG.debug('am in create_network_precommit')
  15. pass
  16. def create_network_postcommit(self, context):
  17. LOG.debug('am in create_network_postcommit')
  18. pass
  19. def create_port_precommit(self, context):
  20. LOG.debug('am in create_port_precommit')
  21. pass
  22. def create_subnet_precommit(self, context):
  23. LOG.debug('am in create_subnet_precommit')
  24. pass
  25. def create_port_postcommit(self, context):
  26. LOG.debug('am in create_port_postcommit')
  27. pass
  28. def create_subnet_postcommit(self, context):
  29. LOG.debug('am in create_subnet_postcommit')
  30. pass
Advertisement
Add Comment
Please, Sign In to add comment