Operational Remediation Reports
Capacity Shift Remediation Report
Map remaining capacity reserve to a hold, shift, or shed remediation action.
Capacity Shift Remediation Report
CapacityShiftRemediationReport.java
public class CapacityShiftRemediationReport {
public static void main(String[] args) {
int reserve = ;
int capacity = 20;
String action = "shift";
if (reserve >= 12) {
action = "hold";
}
if (reserve < 6) {
action = "shed";
}
System.out.println("reserve=" + reserve + " capacity=" + capacity + " action=" + action);
}
}
public class CapacityShiftRemediationReport {
public static void main(String[] args) {
int reserve = ;
int capacity = 20;
String action = "shift";
if (reserve >= 12) {
action = "hold";
}
if (reserve < 6) {
action = "shed";
}
System.out.println("reserve=" + reserve + " capacity=" + capacity + " action=" + action);
}
}
public class CapacityShiftRemediationReport {
public static void main(String[] args) {
int reserve = ;
int capacity = 20;
String action = "shift";
if (reserve >= 12) {
action = "hold";
}
if (reserve < 6) {
action = "shed";
}
System.out.println("reserve=" + reserve + " capacity=" + capacity + " action=" + action);
}
}
reserve selector
The reserve value is the controlled selector for each report variant rather than a live capacity read.