Browse Source

Added more JObStatus to support SMS provider Bandwidth

tags/1.0.10
ymlam 3 years ago
parent
commit
81940e001e
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/main/java/altk/comm/engine/Job.java

+ 4
- 1
src/main/java/altk/comm/engine/Job.java View File

@@ -25,11 +25,14 @@ public class Job
SERVICE_PROVIDER_GENERATED_ERROR(true), // SMS
SERVICE_PROVIDER_HTTP_ERROR(true), // SMS
SERVICE_PROVIDER_CONNECT_ERROR(true), // SMS
FORBIDDEN(true), // SMS - HTTP 403
SPAM(true), // SMS
SERVICE_PROVIDER_OTHER_ERROR(true), // Email
CANCELED(true), // Voice - is it really?
EXPIRED(true), // Voice - is it really?
MESSAGE_ERROR(true), // Email, SMS
NOT_FOUND(true), // SMS
INVALID_MEDIA_TYPE(true), // MMS
SERVICE_ACCESS_BLOCKED(true), // SMS
PLATFORM_ERROR(true), // SMS
FAILED(true), // SMS
@@ -39,7 +42,7 @@ public class Job
THROTTLE_LIMIT_REACHED(true), // SMS
UNPROCESSABLE_ENTITY(true), // SMS
PAYMENT_REQUIRED(true) ,
ABORT(true),
ABORT(true),
;
private boolean isTerminal;


Loading…
Cancel
Save