summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorValerij Fredriksen <valerijf@verizonmedia.com>2019-11-24 14:15:16 +0100
committerValerij Fredriksen <valerijf@verizonmedia.com>2019-11-25 13:16:51 +0100
commitb7b69c2874fd834442c94e24de5718a3f96d660d (patch)
treee2c16f9ed3a445b993ed04bd22a7f4648a4606d4 /controller-api
parent7b8a1c833588a9e3994832b9c4062ce2d882caa3 (diff)
Remove unused fields from NodeRepositoryNode
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/noderepository/NodeRepositoryNode.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/noderepository/NodeRepositoryNode.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/noderepository/NodeRepositoryNode.java
index 33079122862..78a64b98e2b 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/noderepository/NodeRepositoryNode.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/noderepository/NodeRepositoryNode.java
@@ -30,8 +30,6 @@ public class NodeRepositoryNode {
private String openStackId;
@JsonProperty("flavor")
private String flavor;
- @JsonProperty("canonicalFlavor")
- private String canonicalFlavor;
@JsonProperty("resources")
private NodeResources resources;
@JsonProperty("requestedResources")
@@ -74,8 +72,6 @@ public class NodeRepositoryNode {
private Boolean wantToDeprovision;
@JsonProperty("cost")
private Integer cost;
- @JsonProperty("description")
- private String description;
@JsonProperty("history")
private NodeHistory[] history;
@JsonProperty("allowedToBeDown")
@@ -149,14 +145,6 @@ public class NodeRepositoryNode {
this.flavor = flavor;
}
- public String getCanonicalFlavor() {
- return canonicalFlavor;
- }
-
- public void setCanonicalFlavor(String canonicalFlavor) {
- this.canonicalFlavor = canonicalFlavor;
- }
-
public NodeResources getResources() {
return resources;
}
@@ -307,14 +295,6 @@ public class NodeRepositoryNode {
this.cost = cost;
}
- public String getDescription() {
- return description;
- }
-
- public void setDescription(String description) {
- this.description = description;
- }
-
public NodeHistory[] getHistory() {
return history;
}
@@ -370,7 +350,6 @@ public class NodeRepositoryNode {
", additionalIpAddresses=" + additionalIpAddresses +
", openStackId='" + openStackId + '\'' +
", flavor='" + flavor + '\'' +
- ", canonicalFlavor='" + canonicalFlavor + '\'' +
", resources=" + resources +
", requestedResources=" + requestedResources +
", membership=" + membership +
@@ -392,7 +371,6 @@ public class NodeRepositoryNode {
", wantToRetire=" + wantToRetire +
", wantToDeprovision=" + wantToDeprovision +
", cost=" + cost +
- ", description='" + description + '\'' +
", history=" + Arrays.toString(history) +
", allowedToBeDown=" + allowedToBeDown +
", reports=" + reports +