package org.opennaas.extensions.powernet.capability.mgt.shell; import org.apache.felix.gogo.commands.Argument; import org.apache.felix.gogo.commands.Command; import org.opennaas.core.resources.IResource; import org.opennaas.core.resources.shell.GenericKarafCommand; import org.opennaas.extensions.powernet.capability.mgt.IPowerNetManagementCapability; @Command(scope = "gim", name = "deleteSupply", description = "Deletes a power supply") public class DeleteSupplyCommand extends GenericKarafCommand { @Argument(index = 0, name = "resourceType:resourceName", description = "The resource id", required = true, multiValued = false) private String resourceName; @Argument(index = 1, name = "supplyId", description = "The id of the supply.", required = true, multiValued = false) private String supplyId; @Override protected Object doExecute() throws Exception { printInitCommand("deleteSupply"); try { IResource resource = getResourceFromFriendlyName(resourceName); IPowerNetManagementCapability capab = (IPowerNetManagementCapability) resource .getCapabilityByInterface(IPowerNetManagementCapability.class); capab.deletePowerSupply(supplyId); printInfo("Deleted Supply " + supplyId); } catch (Exception e) { printError("Error in deleteSupply " + resourceName + " with id " + supplyId); printError(e); } finally { printEndCommand(); } printEndCommand(); return null; } }