summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-07-15 09:54:10 +0200
committerMartin Polden <mpolden@mpolden.no>2021-07-16 09:02:31 +0200
commit0b0140b6f0667cc09380a0d0e173f7c5ba8812ce (patch)
treef8e4c2e1b9690e2f2eb2717f261ca74558346f80 /controller-api
parent6a558ebb82bb58b42990ff7dad8af35c70812424 (diff)
VCMR -> Vcmr
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/VcmrReport.java (renamed from controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/VCMRReport.java)31
1 files changed, 16 insertions, 15 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/VCMRReport.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/VcmrReport.java
index 3597c7eb009..fdd382e9007 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/VCMRReport.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/VcmrReport.java
@@ -17,29 +17,30 @@ import java.util.Set;
import static com.yahoo.yolean.Exceptions.uncheck;
/**
- * @author olaa
*
* Node repository report containing list of upcoming VCMRs impacting a node
+ *
+ * @author olaa
*/
@JsonIgnoreProperties(ignoreUnknown = true)
-public class VCMRReport {
+public class VcmrReport {
private static final String REPORT_ID = "vcmr";
private static final ObjectMapper objectMapper = new ObjectMapper()
.registerModule(new JavaTimeModule());
@JsonProperty("upcoming")
- private Set<VCMR> vcmrs;
+ private Set<Vcmr> vcmrs;
- public VCMRReport() {
+ public VcmrReport() {
this(new HashSet<>());
}
- public VCMRReport(Set<VCMR> vcmrs) {
+ public VcmrReport(Set<Vcmr> vcmrs) {
this.vcmrs = vcmrs;
}
- public Set<VCMR> getVcmrs() {
+ public Set<Vcmr> getVcmrs() {
return vcmrs;
}
@@ -47,7 +48,7 @@ public class VCMRReport {
* @return true if list of VCMRs is changed
*/
public boolean addVcmr(String id, ZonedDateTime plannedStartTime, ZonedDateTime plannedEndtime) {
- var vcmr = new VCMR(id, plannedStartTime, plannedEndtime);
+ var vcmr = new Vcmr(id, plannedStartTime, plannedEndtime);
if (vcmrs.contains(vcmr))
return false;
@@ -67,12 +68,12 @@ public class VCMRReport {
/**
* Serialization functions - mapped to {@link Node#reports()}
*/
- public static VCMRReport fromReports(Map<String, String> reports) {
+ public static VcmrReport fromReports(Map<String, String> reports) {
var serialized = reports.get(REPORT_ID);
if (serialized == null)
- return new VCMRReport();
+ return new VcmrReport();
- return uncheck(() -> objectMapper.readValue(serialized, VCMRReport.class));
+ return uncheck(() -> objectMapper.readValue(serialized, VcmrReport.class));
}
/**
@@ -92,15 +93,15 @@ public class VCMRReport {
return "VCMRReport{" + vcmrs + "}";
}
- public static class VCMR {
+ public static class Vcmr {
private String id;
private ZonedDateTime plannedStartTime;
private ZonedDateTime plannedEndTime;
- VCMR(@JsonProperty("id") String id,
- @JsonProperty("plannedStartTime") ZonedDateTime plannedStartTime,
- @JsonProperty("plannedEndTime") ZonedDateTime plannedEndTime) {
+ Vcmr(@JsonProperty("id") String id,
+ @JsonProperty("plannedStartTime") ZonedDateTime plannedStartTime,
+ @JsonProperty("plannedEndTime") ZonedDateTime plannedEndTime) {
this.id = id;
this.plannedStartTime = plannedStartTime;
this.plannedEndTime = plannedEndTime;
@@ -122,7 +123,7 @@ public class VCMRReport {
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
- VCMR vcmr = (VCMR) o;
+ Vcmr vcmr = (Vcmr) o;
return Objects.equals(id, vcmr.id) &&
Objects.equals(plannedStartTime, vcmr.plannedStartTime) &&
Objects.equals(plannedEndTime, vcmr.plannedEndTime);