File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
src/main/java/multichain/object Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 77 */
88package multichain .object ;
99
10+
1011/**
1112 * @author Ub - H. MARTEAU
1213 * @version 2.0.1
1314 */
1415public 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
You can’t perform that action at this time.
0 commit comments