Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7d53ee26bdd8a06540a8767339bdeb0c62a61d3b (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
/*******************************************************************************
 * 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.engine.constants;

public class ActionDataConstants
{
  public static final String ATTR_ID = "id";
  public static final String ATTR_NAME = "name";
  public static final String ATTR_ATTEMPTS = "attempts";
  public static final String ATTR_STATUS_ID = "statusId";
  
  public static final String ELEMENT_SCENARIO = "scenario";
  public static final String ELEMENT_TRANSACTION = "transaction";
  public static final String ELEMENT_ACTION = "action";
  public static final String ELEMENT_PROPERTY = "property";
  public static final String ELEMENT_VALUE = "value";
  public static final String ELEMENT_STATUS = "status";
  
  public static final String VALUE_STATUS_ID_UNATTEMPTED = "unattempted";
  public static final String VALUE_STATUS_ID_PASSED = "passed";
  public static final String VALUE_STATUS_ID_FAILED = "failed";
}

Back to the top