blob: 43a43bada66d0fccd3dbc6a30cc1da0a66233609 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.taverna.workbench.ui.servicepanel.actions;
import static javax.swing.JOptionPane.YES_NO_OPTION;
import static javax.swing.JOptionPane.YES_OPTION;
import static javax.swing.JOptionPane.showConfirmDialog;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.JLabel;
import org.apache.taverna.servicedescriptions.ServiceDescriptionProvider;
import org.apache.taverna.servicedescriptions.ServiceDescriptionRegistry;
@SuppressWarnings("serial")
public class RemoveUserServicesAction extends AbstractAction {
private static final String CONFIRM_MESSAGE = "You are about to remove all services you have added. <br>"
+ "Are you <b>really</b> sure you want to do this?";
private final ServiceDescriptionRegistry serviceDescriptionRegistry;
public RemoveUserServicesAction(
ServiceDescriptionRegistry serviceDescriptionRegistry) {
super("Remove all user added service providers");
this.serviceDescriptionRegistry = serviceDescriptionRegistry;
}
@Override
public void actionPerformed(ActionEvent e) {
int option = showConfirmDialog(null, new JLabel("<html><body>"
+ CONFIRM_MESSAGE + "</body></html>"),
"Confirm service deletion", YES_NO_OPTION);
if (option == YES_OPTION)
for (ServiceDescriptionProvider provider : serviceDescriptionRegistry
.getUserAddedServiceProviders())
serviceDescriptionRegistry
.removeServiceDescriptionProvider(provider);
}
}