Selaa lähdekoodia

Removed READY from Job.Status which is a concept in the portal, not with CommEngine.

tags/Production_2016_05_28
ymlam 11 vuotta sitten
vanhempi
commit
4ec51daae7
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. +1
    -2
      src/altk/comm/engine/Job.java

+ 1
- 2
src/altk/comm/engine/Job.java Näytä tiedosto

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


Ladataan…
Peruuta
Tallenna