Back to project page MinerStatus.
The source code is released under:
Apache License
If you think the Android project MinerStatus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.davidgreene.minerstatus.beans; /*from w ww. j av a 2 s . c o m*/ import java.io.Serializable; public class WorkerStatus implements Serializable { /** * */ private static final long serialVersionUID = 1489566244233639810L; private Boolean alive; private Integer shares; private Integer stales; public Boolean getAlive() { return alive; } public void setAlive(Boolean alive) { this.alive = alive; } public Integer getShares() { return shares; } public void setShares(Integer shares) { this.shares = shares; } public Integer getStales() { return stales; } public void setStales(Integer stale) { this.stales = stale; } }