15 lines
544 B
Python
15 lines
544 B
Python
from servicebase import ServiceBase
|
|
|
|
class ServiceDelegate(ServiceBase) :
|
|
|
|
def get_arguments() :
|
|
"""Returns an array of information used to construct an argumentparser argument."""
|
|
# [ <short flag>,<unix flag>,<arg type>,<description> ]
|
|
# 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
|
|
|