From a2f00eb1ecccb221eae28f73dde8d67b1c8aaacd Mon Sep 17 00:00:00 2001 From: "Michael N. Lipp" Date: Mon, 7 Aug 2023 10:09:53 +0200 Subject: [PATCH] Not needed. --- .../qemu/commands/QmpSetCurrentCpus.java | 59 ------------------- 1 file changed, 59 deletions(-) delete mode 100644 org.jdrupes.vmoperator.runner.qemu/src/org/jdrupes/vmoperator/runner/qemu/commands/QmpSetCurrentCpus.java diff --git a/org.jdrupes.vmoperator.runner.qemu/src/org/jdrupes/vmoperator/runner/qemu/commands/QmpSetCurrentCpus.java b/org.jdrupes.vmoperator.runner.qemu/src/org/jdrupes/vmoperator/runner/qemu/commands/QmpSetCurrentCpus.java deleted file mode 100644 index 8430c78..0000000 --- a/org.jdrupes.vmoperator.runner.qemu/src/org/jdrupes/vmoperator/runner/qemu/commands/QmpSetCurrentCpus.java +++ /dev/null @@ -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 . - */ - -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 + ")"; - } - -}