add GlobalStat
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
package cn.montaro.aria2.bean;
|
||||
|
||||
public class GlobalStat {
|
||||
|
||||
private Long downloadSpeed;
|
||||
|
||||
private Integer numActive;
|
||||
|
||||
private Integer numStopped;
|
||||
|
||||
private Integer numStoppedTotal;
|
||||
|
||||
private Integer numWaiting;
|
||||
|
||||
private Integer uploadSpeed;
|
||||
|
||||
public Integer getUploadSpeed() {
|
||||
return uploadSpeed;
|
||||
}
|
||||
|
||||
public void setUploadSpeed(Integer uploadSpeed) {
|
||||
this.uploadSpeed = uploadSpeed;
|
||||
}
|
||||
|
||||
public Integer getNumWaiting() {
|
||||
return numWaiting;
|
||||
}
|
||||
|
||||
public void setNumWaiting(Integer numWaiting) {
|
||||
this.numWaiting = numWaiting;
|
||||
}
|
||||
|
||||
public Integer getNumStoppedTotal() {
|
||||
return numStoppedTotal;
|
||||
}
|
||||
|
||||
public void setNumStoppedTotal(Integer numStoppedTotal) {
|
||||
this.numStoppedTotal = numStoppedTotal;
|
||||
}
|
||||
|
||||
public Integer getNumStopped() {
|
||||
return numStopped;
|
||||
}
|
||||
|
||||
public void setNumStopped(Integer numStopped) {
|
||||
this.numStopped = numStopped;
|
||||
}
|
||||
|
||||
public Integer getNumActive() {
|
||||
return numActive;
|
||||
}
|
||||
|
||||
public void setNumActive(Integer numActive) {
|
||||
this.numActive = numActive;
|
||||
}
|
||||
|
||||
public Long getDownloadSpeed() {
|
||||
return downloadSpeed;
|
||||
}
|
||||
|
||||
public void setDownloadSpeed(Long downloadSpeed) {
|
||||
this.downloadSpeed = downloadSpeed;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user