blob: 2f8cfcd63fff8663a2f98afcd47a454c70ebe27a [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.perspective;
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.actions.*;
import org.eclipse.wst.ws.internal.explorer.platform.uddi.constants.*;
import org.eclipse.wst.ws.internal.explorer.platform.uddi.datamodel.*;
import java.util.*;
public class DetailsTool extends FormTool
{
private String formLink_;
public DetailsTool(ToolManager toolManager,String alt,String formLink)
{
super(toolManager,"images/details_enabled.gif","images/details_highlighted.gif",alt);
formLink_ = formLink;
}
public void initDefaultProperties()
{
}
public String getSelectToolActionHref(boolean forHistory)
{
Node node = toolManager_.getNode();
return SelectPropertiesToolAction.getActionLink(node.getNodeId(),toolId_,node.getViewId(),node.getViewToolId(),forHistory);
}
public String getFormLink()
{
return formLink_;
}
protected final void copyIndexVector(Vector source,Vector destination)
{
destination.removeAllElements();
for (int i=0;i<source.size();i++)
{
ListElement listElement = new ListElement(source.elementAt(i));
listElement.setViewId(i);
// The next item indicates that this element is to be in non-edit state.
listElement.setTargetViewToolInfo(-1,-1,i);
destination.addElement(listElement);
}
}
public void addAuthenticationProperties(RegistryElement regElement)
{
String publishURL = regElement.getPublishURL();
String userId = regElement.getUserId();
String password = regElement.getCred();
if (publishURL == null)
publishURL = "";
if (userId == null)
userId = "";
if (password == null)
password = "";
setProperty(UDDIActionInputs.QUERY_INPUT_ADVANCED_PUBLISH_URL,publishURL);
setProperty(UDDIActionInputs.QUERY_INPUT_ADVANCED_USERID,userId);
setProperty(UDDIActionInputs.QUERY_INPUT_ADVANCED_PASSWORD,password);
}
}