blob: c5dda16d4827ad6c7347c9c02418eb3b6cecef17 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.admin;
import java.net.URI;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.internal.provisional.p2.core.ProvisionException;
import org.eclipse.equinox.internal.provisional.p2.ui.operations.ProvisioningUtil;
import org.eclipse.equinox.internal.provisional.p2.ui.operations.RemoveRepositoryOperation;
/**
* Operation which removes the artifact repository with the given URL.
*
* @since 3.4
*/
public class RemoveArtifactRepositoryOperation extends RemoveRepositoryOperation {
public RemoveArtifactRepositoryOperation(String label, URI[] repoLocations) {
super(label, repoLocations);
}
protected IStatus doBatchedExecute(IProgressMonitor monitor) throws ProvisionException {
SubMonitor mon = SubMonitor.convert(monitor, locations.length);
for (int i = 0; i < locations.length; i++) {
ProvisioningUtil.removeArtifactRepository(locations[i]);
mon.worked(1);
}
return okStatus();
}
}