Not needed.

This commit is contained in:
Michael Lipp 2023-08-07 10:09:53 +02:00
parent fbc25d4db8
commit a2f00eb1ec

View file

@ -1,59 +0,0 @@
/*
* VM-Operator
* Copyright (C) 2023 Michael N. Lipp
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.jdrupes.vmoperator.runner.qemu.commands;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
/**
* The Class QmpSetBalloon.
*/
public class QmpSetCurrentCpus extends QmpCommand {
@SuppressWarnings({ "PMD.FieldNamingConventions",
"PMD.VariableNamingConventions" })
private static final JsonNode jsonTemplate = parseJson(
"{\"execute\":\"query-hotpluggable-cpus\",\"arguments\":{}}");
private final int cpus;
/**
* Instantiates a new sets the current ram.
*/
public QmpSetCurrentCpus(int cpus) {
this.cpus = cpus;
}
/**
* To Json.
*
* @return the json node
*/
@Override
public JsonNode toJson() {
var cmd = jsonTemplate.deepCopy();
((ObjectNode) cmd.get("arguments")).put("value", cpus);
return cmd;
}
@Override
public String toString() {
return "QmpSetCurrentCpus(" + cpus + ")";
}
}