mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2026-08-31 05:10:25 +00:00
Updated pom.xml to buld fat jar
This commit is contained in:
@@ -5,7 +5,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
public class GetBundleResponse extends AbstractResponse {
|
||||
|
||||
private Transactions[] transactions;
|
||||
public Transactions[] transactions;
|
||||
|
||||
private String warning;
|
||||
|
||||
@@ -17,7 +17,7 @@ public class GetBundleResponse extends AbstractResponse {
|
||||
return transactions;
|
||||
}
|
||||
|
||||
static class Transactions {
|
||||
public static class Transactions {
|
||||
private String signatureMessageChunk;
|
||||
private String index;
|
||||
private String approvalNonce;
|
||||
|
||||
@@ -2,32 +2,32 @@ package jota.dto.response;
|
||||
|
||||
public class GetNeighborsResponse extends AbstractResponse {
|
||||
|
||||
private Neighbors[] neighbors;
|
||||
public Neighbors[] neighbors;
|
||||
|
||||
public Neighbors[] getNeighbors() {
|
||||
return neighbors;
|
||||
}
|
||||
|
||||
static class Neighbors {
|
||||
public static class Neighbors {
|
||||
|
||||
private String address;
|
||||
private String numberOfAllTransactions;
|
||||
private String numberOfInvalidTransactions;
|
||||
private String numberOfNewTransactions;
|
||||
private Integer numberOfAllTransactions;
|
||||
private Integer numberOfInvalidTransactions;
|
||||
private Integer numberOfNewTransactions;
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public String getNumberOfAllTransactions() {
|
||||
public Integer getNumberOfAllTransactions() {
|
||||
return numberOfAllTransactions;
|
||||
}
|
||||
|
||||
public String getNumberOfInvalidTransactions() {
|
||||
public Integer getNumberOfInvalidTransactions() {
|
||||
return numberOfInvalidTransactions;
|
||||
}
|
||||
|
||||
public String getNumberOfNewTransactions() {
|
||||
public Integer getNumberOfNewTransactions() {
|
||||
return numberOfNewTransactions;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,17 +6,17 @@ public class GetNodeInfoResponse extends AbstractResponse {
|
||||
private String appVersion;
|
||||
private Integer jreAvailableProcessors;
|
||||
private Integer jreFreeMemory;
|
||||
private float jreMaxMemory;
|
||||
private float jreTotalMemory;
|
||||
private Integer jreMaxMemory;
|
||||
private Integer jreTotalMemory;
|
||||
private String latestMilestone;
|
||||
private Integer latestMilestoneIndex;
|
||||
private Long latestMilestoneIndex;
|
||||
private String latestSolidSubtangleMilestone;
|
||||
private Integer latestSolidSubtangleMilestoneIndex;
|
||||
private Integer neighbors;
|
||||
private Integer packetsQueueSize;
|
||||
private long time;
|
||||
private Integer tips;
|
||||
private Integer transactionsToRequest;
|
||||
private Long latestSolidSubtangleMilestoneIndex;
|
||||
private Long neighbors;
|
||||
private Long packetsQueueSize;
|
||||
private Long time;
|
||||
private Long tips;
|
||||
private Long transactionsToRequest;
|
||||
|
||||
public String getAppName() {
|
||||
return appName;
|
||||
@@ -34,11 +34,11 @@ public class GetNodeInfoResponse extends AbstractResponse {
|
||||
return jreFreeMemory;
|
||||
}
|
||||
|
||||
public float getJreMaxMemory() {
|
||||
public Integer getJreMaxMemory() {
|
||||
return jreMaxMemory;
|
||||
}
|
||||
|
||||
public float getJreTotalMemory() {
|
||||
public Integer getJreTotalMemory() {
|
||||
return jreTotalMemory;
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ public class GetNodeInfoResponse extends AbstractResponse {
|
||||
return latestMilestone;
|
||||
}
|
||||
|
||||
public Integer getLatestMilestoneIndex() {
|
||||
public Long getLatestMilestoneIndex() {
|
||||
return latestMilestoneIndex;
|
||||
}
|
||||
|
||||
@@ -54,27 +54,27 @@ public class GetNodeInfoResponse extends AbstractResponse {
|
||||
return latestSolidSubtangleMilestone;
|
||||
}
|
||||
|
||||
public Integer getLatestSolidSubtangleMilestoneIndex() {
|
||||
public Long getLatestSolidSubtangleMilestoneIndex() {
|
||||
return latestSolidSubtangleMilestoneIndex;
|
||||
}
|
||||
|
||||
public Integer getNeighbors() {
|
||||
public Long getNeighbors() {
|
||||
return neighbors;
|
||||
}
|
||||
|
||||
public Integer getPacketsQueueSize() {
|
||||
public Long getPacketsQueueSize() {
|
||||
return packetsQueueSize;
|
||||
}
|
||||
|
||||
public long getTime() {
|
||||
public Long getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public Integer getTips() {
|
||||
public Long getTips() {
|
||||
return tips;
|
||||
}
|
||||
|
||||
public Integer getTransactionsToRequest() {
|
||||
public Long getTransactionsToRequest() {
|
||||
return transactionsToRequest;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user