Skip to content

Commit dffb4c5

Browse files
committed
Prepare for release 2.3.0
1 parent 1f9496a commit dffb4c5

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Changes:
22

3-
2.2.5
3+
2.3.0
44
- Add outbind processing
55

66
2.2.4

jsmpp-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>jsmpp-pom</artifactId>
55
<groupId>org.jsmpp</groupId>
6-
<version>2.2.5-SNAPSHOT</version>
6+
<version>2.3.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

jsmpp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.jsmpp</groupId>
55
<artifactId>jsmpp-pom</artifactId>
6-
<version>2.2.5-SNAPSHOT</version>
6+
<version>2.3.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<packaging>bundle</packaging>

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

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,8 @@ public enum Network_type {
390390
RESERVED(0x09);
391391

392392
protected byte value;
393-
private Network_type(int value) {
393+
394+
Network_type(int value) {
394395
this.value = (byte)value;
395396
}
396397

@@ -1327,7 +1328,8 @@ public enum Presentation_Indicator {
13271328
RESERVED(3);
13281329

13291330
protected byte value;
1330-
private Presentation_Indicator(int value) {
1331+
1332+
Presentation_Indicator(int value) {
13311333
this.value = (byte)value;
13321334
}
13331335

@@ -1363,7 +1365,8 @@ public enum Screening_Indicator {
13631365
NETWORK_PROVIDED(3);
13641366

13651367
protected byte value;
1366-
private Screening_Indicator(int value) {
1368+
1369+
Screening_Indicator(int value) {
13671370
this.value = (byte)value;
13681371
}
13691372

@@ -1591,7 +1594,8 @@ public enum Ms_availability_status_enum {
15911594
RESERVED(3);
15921595

15931596
protected byte value;
1594-
private Ms_availability_status_enum(int value) {
1597+
1598+
Ms_availability_status_enum(int value) {
15951599
this.value = (byte)value;
15961600
}
15971601

@@ -1694,7 +1698,8 @@ public enum Network_error_code_type {
16941698
RESERVED(9);
16951699

16961700
protected byte value;
1697-
private Network_error_code_type(int value) {
1701+
1702+
Network_error_code_type(int value) {
16981703
this.value = (byte)value;
16991704
}
17001705

@@ -1791,7 +1796,8 @@ public enum Delivery_failure_reason_enum {
17911796
RESERVED(4);
17921797

17931798
protected byte value;
1794-
private Delivery_failure_reason_enum(int value) {
1799+
1800+
Delivery_failure_reason_enum(int value) {
17951801
this.value = (byte)value;
17961802
}
17971803

@@ -1854,7 +1860,8 @@ public enum More_messages_to_send_enum {
18541860
RESERVED(2);
18551861

18561862
protected byte value;
1857-
private More_messages_to_send_enum(int value) {
1863+
1864+
More_messages_to_send_enum(int value) {
18581865
this.value = (byte)value;
18591866
}
18601867

@@ -1914,8 +1921,8 @@ public enum Message_state_enum {
19141921
REJECTED(8);
19151922

19161923
private byte value;
1917-
1918-
private Message_state_enum(int value) {
1924+
1925+
Message_state_enum(int value) {
19191926
this.value = (byte)value;
19201927
}
19211928

@@ -2265,7 +2272,7 @@ public enum Tag {
22652272
private final short code;
22662273
final Class<? extends OptionalParameter> type;
22672274

2268-
private Tag(int code, Class<? extends OptionalParameter> type) {
2275+
Tag(int code, Class<? extends OptionalParameter> type) {
22692276
this.code = (short)code;
22702277
this.type = type;
22712278
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.jsmpp</groupId>
66
<artifactId>jsmpp-pom</artifactId>
7-
<version>2.2.5-SNAPSHOT</version>
7+
<version>2.3.0</version>
88
<packaging>pom</packaging>
99

1010
<name>jSMPP - Parent</name>

0 commit comments

Comments
 (0)