7
This class is used to represent a Job in a Scheduler
11
#command to execute (can be multiline)
13
# Scheduler (the name of the scheduler used for this Job)
15
# The user name . os.getlogin()
17
# the date for the job to be executed (see http://docs.python.org/lib/datetime-datetime.html )
19
# the periodicity (The periodicity of the Job)
26
timestring_show = None
36
raise Exception("Not implemented")
40
Append a job to the scheduler
42
raise Exception("Not implemented")
46
Update a job in the scheduler
48
raise Exception("Not implemented")
52
Delete a job in the scheduler
54
raise Exception("Not implemented")
58
list all the job available in the scheduler
59
@return: a list of Job
61
raise Exception("Not implemented")