blob: 8187288a71d0a1c82dbff36df6abf110be08c8f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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.wst.ws.internal.explorer.platform.uddi.actions;
import org.eclipse.wst.ws.internal.explorer.platform.constants.*;
import org.eclipse.wst.ws.internal.explorer.platform.datamodel.*;
import org.eclipse.wst.ws.internal.explorer.platform.perspective.*;
import org.eclipse.wst.ws.internal.explorer.platform.uddi.constants.*;
import org.eclipse.wst.ws.internal.explorer.platform.uddi.datamodel.*;
import org.eclipse.wst.ws.internal.explorer.platform.uddi.perspective.*;
import org.uddi4j.datatype.tmodel.*;
import org.uddi4j.util.*;
import java.util.*;
public class ServiceInterfaceGetBusinessesAction extends UDDINodeAction
{
private ServiceInterfaceNode siNode_;
public ServiceInterfaceGetBusinessesAction(Controller controller)
{
super(controller);
siNode_ = null;
}
// uddi/actions/ServiceInterfacGetBusinessesActionJSP.jsp?nodeId=...
public static String getActionLink(int nodeId)
{
StringBuffer actionLink = new StringBuffer("uddi/actions/ServiceInterfaceGetBusinessesActionJSP.jsp?");
actionLink.append(ActionInputs.NODEID).append('=').append(nodeId);
return actionLink.toString();
}
public final boolean validateServiceInterface()
{
int siNodeId = Integer.parseInt((String)propertyTable_.get(ActionInputs.NODEID));
siNode_ = (ServiceInterfaceNode)nodeManager_.getNode(siNodeId);
ServiceInterfaceElement siElement = (ServiceInterfaceElement)siNode_.getTreeElement();
RegFindServiceInterfaceUUIDAction verifyAction = new RegFindServiceInterfaceUUIDAction(controller_);
Hashtable propertyTable = verifyAction.getPropertyTable();
propertyTable.put(UDDIActionInputs.QUERY_INPUT_OVERRIDE_ADD_QUERY_NODE,Boolean.TRUE);
propertyTable.put(UDDIActionInputs.QUERY_INPUT_UUID_SERVICE_INTERFACE_KEY,siElement.getTModel().getTModelKey());
boolean result = verifyAction.run();
if (result)
propertyTable_.put(UDDIActionInputs.LATEST_OBJECT,propertyTable.get(UDDIActionInputs.LATEST_OBJECT));
return result;
}
public final String getActionLinkForHistory()
{
return null;
}
public final boolean run()
{
UDDIPerspective uddiPerspective = controller_.getUDDIPerspective();
TModel tModel = (TModel)propertyTable_.get(UDDIActionInputs.LATEST_OBJECT);
RegFindBusinessesAdvancedAction action = new RegFindBusinessesAdvancedAction(controller_);
Hashtable propertyTable = action.getPropertyTable();
propertyTable.put(UDDIActionInputs.QUERY_NAME,uddiPerspective.getMessage("NODE_NAME_SI_BUSINESSES",siNode_.getNodeName()));
ListElement siListElement = new ListElement(tModel);
siListElement.setTargetViewToolInfo(siNode_.getNodeId(),siNode_.getToolManager().getSelectedToolId(),siNode_.getViewId());
Vector siListVector = new Vector();
siListVector.addElement(siListElement);
propertyTable.put(UDDIActionInputs.QUERY_INPUT_ADVANCED_BUSINESS_SERVICE_INTERFACES,siListVector);
Vector tModelKeyStringVector = new Vector();
tModelKeyStringVector.addElement(tModel.getTModelKey());
TModelBag tModelBag = new TModelBag(tModelKeyStringVector);
propertyTable.put(UDDIActionInputs.QUERY_INPUT_ADVANCED_BUSINESS_TMODELBAG,tModelBag);
return action.run();
}
}