from servicebase import ServiceBase class ServiceDelegate(ServiceBase) : def get_arguments(cls) : """Returns an array of information used to construct an argumentparser argument.""" # [ ,,, ] # Example return: [ '-n', '--net', 'store_true', "Return network information about the subject" ] return ['-w', '--wifi', 'store_true', "Return wireless connection information about the subject"] def get_ap_list() : """Returns the access points available from the aruba controllers.""" pass