Skip to main content
summaryrefslogtreecommitdiffstats
blob: 341de91050b152711b343e90245de663fd70e086 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*******************************************************************************
 * Copyright (c) 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.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 = "submissionActionBrowseFile";
  public static final String SUBMISSION_ACTION_SAVE_AS = "submissionActionSaveAs";
  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