Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/wsdl/constants/WSDLActionInputs.java')
-rw-r--r--core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/wsdl/constants/WSDLActionInputs.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/wsdl/constants/WSDLActionInputs.java b/core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/wsdl/constants/WSDLActionInputs.java
new file mode 100644
index 000000000..d354b8d93
--- /dev/null
+++ b/core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/wsdl/constants/WSDLActionInputs.java
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 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
+ * yyyymmdd bug Email and other contact information
+ * -------- -------- -----------------------------------------------------------
+ * 20070305 117034 makandre@ca.ibm.com - Andrew Mak, Web Services Explorer should support SOAP Headers
+ *******************************************************************************/
+package org.eclipse.wst.ws.internal.explorer.platform.wsdl.constants;
+
+public class WSDLActionInputs
+{
+ public static final String FRAMESET_COLS_PERSPECTIVE_CONTENT = "framesetColsPerspectiveContent";
+ public static final String FRAMESET_ROWS_ACTIONS_CONTAINER = "framesetRowsActionsContainer";
+
+ public static final String SESSION_ID = "sessionID";
+ public static final String FRAGMENT_ID = "fragmentID";
+
+ public static final String SOAP_ENVELOPE_TYPE = "soapEnvelopeType";
+ public static final int SOAP_ENVELOPE_TYPE_REQUEST = 0;
+ public static final int SOAP_ENVELOPE_TYPE_RESPONSE = 1;
+ public static final String SOAP_RESPONSE_CACHED = "soapResponseCached";
+
+ public static final String SUBMISSION_ACTION = "submissionAction";
+ public static final String SUBMISSION_ACTION_FORM = "submissionActionForm";
+ public static final String SUBMISSION_ACTION_BROWSE_FILE_HEADER = "submissionActionBrowseFileHeader";
+ public static final String SUBMISSION_ACTION_BROWSE_FILE = "submissionActionBrowseFile";
+ public static final String SUBMISSION_ACTION_SAVE_AS_HEADER = "submissionActionSaveAsHeader";
+ public static final String SUBMISSION_ACTION_SAVE_AS = "submissionActionSaveAs";
+ public static final String SELECTED_FILE_HEADER = "selectedFileHeader";
+ public static final String SELECTED_FILE = "selectedFile";
+ public static final String OPERATION_ELEMENT = "operationElement";
+
+ public static final String END_POINT = "::endPoint";
+ public static final String HTTP_BASIC_AUTH_USERNAME = "httpBasicAuthUsername";
+ public static final String HTTP_BASIC_AUTH_PASSWORD = "httpBasicAuthPassword";
+}

Back to the top