blob: dab8bc75792d0d5f1358492f6d7403dc61ecbaaa [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
*******************************************************************************/
%>
<%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.perspective.*,
org.eclipse.wst.ws.internal.explorer.platform.constants.*,
org.eclipse.wst.ws.internal.explorer.platform.datamodel.*,
org.eclipse.wst.ws.internal.explorer.platform.wsil.constants.*,
org.eclipse.wst.ws.internal.explorer.platform.wsil.datamodel.*,
org.eclipse.wst.ws.internal.explorer.platform.wsil.actions.AddToFavoritesAction,
org.eclipse.wst.ws.internal.explorer.platform.wsil.actions.AddToUDDIPerspectiveAction,
org.eclipse.wst.ws.internal.explorer.platform.wsil.actions.RefreshAction,
org.eclipse.wst.ws.internal.explorer.platform.wsil.perspective.WSILPerspective" %>
<jsp:useBean id="controller" class="org.eclipse.wst.ws.internal.explorer.platform.perspective.Controller" scope="session"/>
<jsp:useBean id="abstractLangs" class="java.util.Vector" scope="request"/>
<jsp:useBean id="abstracts" class="java.util.Vector" scope="request"/>
<%
WSILPerspective wsilPerspective = controller.getWSILPerspective();
NodeManager nodeManager = wsilPerspective.getNodeManager();
Node selectedNode = nodeManager.getSelectedNode();
ToolManager currentToolManager = selectedNode.getCurrentToolManager();
int viewID = selectedNode.getViewId();
TreeElement selectedElement = selectedNode.getTreeElement();
String inquiryAPI = null;
String businessKey = null;
String discoveryURL = null;
WsilUddiBusinessElement link = null;
if (selectedElement instanceof WsilElement) {
ListElement le = ((WsilElement)selectedElement).getAllUDDILinks().getElementWithViewId(viewID);
link = (WsilUddiBusinessElement)le.getObject();
if (link != null) {
abstracts.addAll(link.getLinkAbstracts());
abstractLangs.addAll(link.getLinkAbstractLangs());
inquiryAPI = link.getUDDILinkInquiryAPI();
businessKey = link.getUDDILinkBusinessKey();
discoveryURL = link.getUDDILinkDiscoveryURL();
}
}
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=wsilPerspective.getMessage("FORM_TITLE_UDDI_BUSINESS_DETAILS")%></title>
<link rel="stylesheet" type="text/css" href="<%=response.encodeURL(controller.getPathWithContext("css/windows.css"))%>">
<jsp:include page="/wsil/scripts/wsilFormSubmit.jsp" flush="true"/>
</head>
<body dir="<%=org.eclipse.wst.ws.internal.explorer.platform.util.DirUtils.getDir()%>" class="contentbodymargin">
<div id="contentborder">
<form action="<%=response.encodeURL(controller.getPathWithContext(AddToFavoritesAction.getBaseActionLink()))%>" method="post" target="<%=FrameNames.PERSPECTIVE_WORKAREA%>">
<%
String titleImagePath = "images/details_highlighted.gif";
String title = wsilPerspective.getMessage("ALT_UDDI_LINK_DETAILS");
%>
<%@ include file = "/forms/formheader.inc" %>
<%
if (selectedElement instanceof WsilElement && link != null) {
%>
<input type="hidden" name="<%=ActionInputs.NODEID%>" value="<%=selectedNode.getNodeId()%>">
<input type="hidden" name="<%=ActionInputs.VIEWID%>" value="<%=viewID%>">
<table width="95%" border=0 cellpadding=3 cellspacing=0 class="tableborder">
<tr>
<th class="singleheadercolor" height=20 valign="bottom" align="left">
<%=wsilPerspective.getMessage("FORM_LABEL_INQUIRY_API")%>
</th>
</tr>
<tr>
<td class="tablecells">
<%=((inquiryAPI != null) ? inquiryAPI : wsilPerspective.getMessage("FORM_LABEL_NA"))%>
</td>
</tr>
</table>
<br>
<table width="95%" border=0 cellpadding=3 cellspacing=0 class="tableborder">
<tr>
<th class="singleheadercolor" height=20 valign="bottom" align="left">
<%=wsilPerspective.getMessage("FORM_LABEL_BUSINESS_KEY")%>
</th>
</tr>
<tr>
<td class="tablecells">
<%=((businessKey != null) ? businessKey : wsilPerspective.getMessage("FORM_LABEL_NA"))%>
</td>
</tr>
</table>
<br>
<table width="95%" border=0 cellpadding=3 cellspacing=0 class="tableborder">
<tr>
<th class="singleheadercolor" height=20 valign="bottom" align="left">
<%=wsilPerspective.getMessage("FORM_LABEL_DISCOVERY_URL")%>
</th>
</tr>
<tr>
<td class="tablecells">
<%=((discoveryURL != null) ? discoveryURL : wsilPerspective.getMessage("FORM_LABEL_NA"))%>
</td>
</tr>
</table>
<jsp:include page="/wsil/scripts/wsilAbstractTable.jsp" flush="true"/>
<jsp:useBean id="currentToolManagerHash" class="java.util.Hashtable" scope="request">
<%
currentToolManagerHash.put(ActionInputs.CURRENT_TOOL_MANAGER,currentToolManager);
%>
</jsp:useBean>
<jsp:include page="/forms/otherActions.jsp" flush="true"/>
<%
}
%>
</div>
</body>
</html>