Skip to content

Commit 0c71386

Browse files
committed
Add SMPP 5.0 message_state values
1 parent a7a6863 commit 0c71386

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jsmpp/src/main/java/org/jsmpp/bean/OptionalParameter.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1911,14 +1911,16 @@ public static class Message_state extends OptionalParameter.Byte {
19111911
*
19121912
*/
19131913
public enum Message_state_enum {
1914+
SCHEDULED(0),
19141915
ENROUTE(1),
19151916
DELIVERED(2),
19161917
EXPIRED(3),
19171918
DELETED(4),
19181919
UNDELIVERABLE(5),
19191920
ACCEPTED(6),
19201921
UNKNOWN(7),
1921-
REJECTED(8);
1922+
REJECTED(8),
1923+
SKIPPED(9);
19221924

19231925
private byte value;
19241926

@@ -1997,7 +1999,6 @@ public static class Billing_identification extends OptionalParameter.OctetString
19971999
public Billing_identification(byte[] value) {
19982000
super(Tag.BILLING_IDENTIFICATION.code, value);
19992001
}
2000-
20012002
}
20022003

20032004

0 commit comments

Comments
 (0)