This commit is contained in:
2021-04-06 00:45:28 +02:00
commit 17fabc368e
836 changed files with 3042963 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
package org.fog.utils;
public class CanBeSentResult {
private double cpuLoad;
private double nwLoad;
private boolean canBeSent;
public CanBeSentResult(double cpuLoad, double nwLoad, boolean canBeSent){
this.cpuLoad = cpuLoad;
this.nwLoad = nwLoad;
this.canBeSent = canBeSent;
}
public CanBeSentResult() {
// TODO Auto-generated constructor stub
}
public double getCpuLoad() {
return cpuLoad;
}
public void setCpuLoad(double cpuLoad) {
this.cpuLoad = cpuLoad;
}
public double getNwLoad() {
return nwLoad;
}
public void setNwLoad(double nwLoad) {
this.nwLoad = nwLoad;
}
public boolean isCanBeSent() {
return canBeSent;
}
public void setCanBeSent(boolean canBeSent) {
this.canBeSent = canBeSent;
}
}