Kaynağa Gözat

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

tags/Production_2016_05_28
ymlam 11 yıl önce
ebeveyn
işleme
4ec51daae7
1 değiştirilmiş dosya ile 1 ekleme ve 2 silme
  1. +1
    -2
      src/altk/comm/engine/Job.java

+ 1
- 2
src/altk/comm/engine/Job.java Dosyayı Görüntüle

@@ -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)


Yükleniyor…
İptal
Kaydet