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 = "deleteSupplySource", description = "Deletes a power supply source") public class DeleteSupplySourceCommand 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; @Argument(index = 2, name = "sourceId", description = "The id of the source.", required = true, multiValued = false) private String sourceId; @Override protected Object doExecute() throws Exception { printInitCommand("deleteSupplySource"); try { IResource resource = getResourceFromFriendlyName(resourceName); IPowerNetManagementCapability capab = (IPowerNetManagementCapability) resource .getCapabilityByInterface(IPowerNetManagementCapability.class); capab.removePowerSupplySource(supplyId, sourceId); } catch (Exception e) { printError("Error in deleteSupplySource " + resourceName + " with id " + supplyId); printError(e); } finally { printEndCommand(); } printEndCommand(); return null; } }