Skip to content

Commit 1cf9dcb

Browse files
committed
fix getnetworkinfo
1 parent 2b1b65b commit 1cf9dcb

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/main/java/multichain/object/NetworkInfoNetwork.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
*/
88
package multichain.object;
99

10+
1011
/**
1112
* @author Ub - H. MARTEAU
1213
* @version 2.0.1
1314
*/
1415
public class NetworkInfoNetwork {
1516
String name = null;
16-
Long limited = null;
17-
Long reachable = null;
17+
Boolean limited = null;
18+
Boolean reachable = null;
1819
String proxy = null;
1920

2021
/**
@@ -34,28 +35,28 @@ public void setName(String name) {
3435
/**
3536
* @return the limited
3637
*/
37-
public Long getLimited() {
38+
public Boolean getLimited() {
3839
return limited;
3940
}
4041

4142
/**
4243
* @param limited the limited to set
4344
*/
44-
public void setLimited(Long limited) {
45+
public void setLimited(Boolean limited) {
4546
this.limited = limited;
4647
}
4748

4849
/**
4950
* @return the reachable
5051
*/
51-
public Long getReachable() {
52+
public Boolean getReachable() {
5253
return reachable;
5354
}
5455

5556
/**
5657
* @param reachable the reachable to set
5758
*/
58-
public void setReachable(Long reachable) {
59+
public void setReachable(Boolean reachable) {
5960
this.reachable = reachable;
6061
}
6162

0 commit comments

Comments
 (0)