Explorar el Código

Added job statuses in support of SMS provider NumberWholesale.

tags/1.0.1
Yuk-Ming Lam hace 5 años
padre
commit
27cf553ffd
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      src/main/java/altk/comm/engine/Job.java

+ 6
- 1
src/main/java/altk/comm/engine/Job.java Ver fichero

@@ -33,7 +33,12 @@ public class Job
PLATFORM_ERROR(true), // SMS
FAILED(true), // SMS
UNKNOWN_ERROR(true), // SMS
ABORT(true); // Voice
NOT_AUTHORIZED(true), // SMS
BAD_REQUEST(true), // SMS
THROTTLE_LIMIT_REACHED(true), // SMS
UNPROCESSABLE_ENTITY(true), // SMS
ABORT(true), // Voice
;
private boolean isTerminal;


Cargando…
Cancelar
Guardar