浏览代码

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

tags/Production_2016_05_28
ymlam 11 年前
父节点
当前提交
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)


正在加载...
取消
保存