|
|
|
@@ -14,7 +14,6 @@ public class Job |
|
|
|
static public enum JobStatus |
|
|
|
{ |
|
|
|
// TODO: Some of them, like CANCELED and EXPIRED, should not be used, and should be cleaned out. |
|
|
|
READY(false), |
|
|
|
TRYING(false), // VoiceEngine |
|
|
|
GO_NEXT_PHONE(false), // VoiceEngine |
|
|
|
//TRUNK_ERROR(false), |
|
|
|
@@ -61,7 +60,7 @@ public class Job |
|
|
|
public Job(Recipient recipient) |
|
|
|
{ |
|
|
|
this.recipient = recipient; |
|
|
|
jobStatus = JobStatus.READY; |
|
|
|
jobStatus = null; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStatus(JobStatus jobStatus) |
|
|
|
|