blob: 7d53ee26bdd8a06540a8767339bdeb0c62a61d3b [file] [log] [blame]
/*******************************************************************************
* 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";
}