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 = "deleteDeliverySource", description = "Deletes a power delivery source") public class DeleteDeliverySourceCommand extends GenericKarafCommand { @Argument(index = 0, name = "resourceType:resourceName", description = "The resource id", required = true, multiValued = false) private String resourceName; @Argument(index = 1, name = "deliveryId", description = "The id of the delivery.", required = true, multiValued = false) private String deliveryId; @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("deleteDeliverySource"); try { IResource resource = getResourceFromFriendlyName(resourceName); IPowerNetManagementCapability capab = (IPowerNetManagementCapability) resource .getCapabilityByInterface(IPowerNetManagementCapability.class); capab.removePowerDeliverySource(deliveryId, sourceId); } catch (Exception e) { printError("Error in deleteDeliverySource " + resourceName + " with id " + deliveryId); printError(e); } finally { printEndCommand(); } printEndCommand(); return null; } }