Просмотр исходного кода

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

tags/Production_2016_05_28
ymlam 11 лет назад
Родитель
Сommit
4ec51daae7
1 измененных файлов: 1 добавлений и 2 удалений
  1. +1
    -2
      src/altk/comm/engine/Job.java

+ 1
- 2
src/altk/comm/engine/Job.java Просмотреть файл

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


Загрузка…
Отмена
Сохранить