Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.ws.explorer/wsexplorer-src/org/eclipse/wst/ws/internal/explorer/platform/actions/OpenWSDLBrowserAction.java')
-rw-r--r--bundles/org.eclipse.wst.ws.explorer/wsexplorer-src/org/eclipse/wst/ws/internal/explorer/platform/actions/OpenWSDLBrowserAction.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.ws.explorer/wsexplorer-src/org/eclipse/wst/ws/internal/explorer/platform/actions/OpenWSDLBrowserAction.java b/bundles/org.eclipse.wst.ws.explorer/wsexplorer-src/org/eclipse/wst/ws/internal/explorer/platform/actions/OpenWSDLBrowserAction.java
new file mode 100644
index 000000000..f29974991
--- /dev/null
+++ b/bundles/org.eclipse.wst.ws.explorer/wsexplorer-src/org/eclipse/wst/ws/internal/explorer/platform/actions/OpenWSDLBrowserAction.java
@@ -0,0 +1,51 @@
+/*******************************************************************************
+ * 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.actions;
+
+import org.eclipse.wst.ws.internal.explorer.platform.constants.*;
+
+import javax.servlet.http.*;
+
+public class OpenWSDLBrowserAction extends Action
+{
+ public OpenWSDLBrowserAction()
+ {
+ }
+
+ public static final String getActionLink(String sessionId,int wsdlType)
+ {
+ StringBuffer actionLink = new StringBuffer("wsdl_browser.jsp?");
+ actionLink.append(ActionInputs.SESSIONID).append('=').append(sessionId);
+ actionLink.append('&').append(ActionInputs.WSDL_TYPE).append('=').append(wsdlType);
+ return actionLink.toString();
+ }
+
+ public static final String getActionLinkForService(String sessionId)
+ {
+ return getActionLink(sessionId,ActionInputs.WSDL_TYPE_SERVICE);
+ }
+
+ public static final String getActionLinkForServiceInterface(String sessionId)
+ {
+ return getActionLink(sessionId,ActionInputs.WSDL_TYPE_SERVICE_INTERFACE);
+ }
+
+ public final boolean populatePropertyTable(HttpServletRequest request)
+ {
+ return true;
+ }
+
+ public final boolean run()
+ {
+ return true;
+ }
+}

Back to the top