installer/action.py
f4d17450
 #
 #    Copyright (C) 2015 vmware inc.
 #
 #    Author: Mahmoud Bassiouny <mbassiouny@vmware.com>
 
 
 class Action(object):
 
     def do_action(self, params):
4ddea019
         raise NameError('Abstract method, this should be implemented in the child class')
0c250142
 
f4d17450
     def hide(self, params):
4ddea019
         raise NameError('Abstract method, this should be implemented in the child class')