blob: 60ec7933abac16f07465b319167ce33417876c8e [file] [log] [blame]
package org.apache.taverna.ui.perspectives.biocatalogue.integration.menus;
/*
* 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.
*/
import java.awt.event.ActionEvent;
import java.net.URISyntaxException;
import javax.swing.AbstractAction;
import javax.swing.Action;
import org.apache.taverna.biocatalogue.model.SoapOperationIdentity;
import org.apache.taverna.ui.menu.AbstractContextualMenuAction;
import org.apache.taverna.ui.perspectives.biocatalogue.integration.Integration;
import org.apache.taverna.ui.perspectives.biocatalogue.integration.health_check.ServiceHealthChecker;
import org.apache.taverna.workflowmodel.Processor;
public class MenuActionProcessorHealthCheck extends AbstractContextualMenuAction {
public MenuActionProcessorHealthCheck() throws URISyntaxException {
super(BioCatalogueContextualMenuSection.BIOCATALOGUE_MENU_SECTION_ID, 20);
}
@SuppressWarnings("serial")
@Override
protected Action createAction()
{
Action action = new AbstractAction("Service Health Check") {
public void actionPerformed(ActionEvent e) {
SoapOperationIdentity soapOperationDetails = Integration.extractSoapOperationDetailsFromProcessorContextualSelection(getContextualSelection());
ServiceHealthChecker.checkWSDLProcessor(soapOperationDetails);
}
};
action.putValue(Action.SHORT_DESCRIPTION, "Check monitoring status of this service");
return (action);
}
@Override
public boolean isEnabled()
{
// FIXME - this will only work for SOAP processors for now..
boolean isEnabled = super.isEnabled() && getContextualSelection().getSelection() instanceof Processor;
if (isEnabled) {
SoapOperationIdentity soapOperationDetails = Integration.extractSoapOperationDetailsFromProcessorContextualSelection(getContextualSelection());
isEnabled = !soapOperationDetails.hasError();
}
return isEnabled;
}
}