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/engine/constants/ActionDataConstants.java')
-rw-r--r--core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/engine/constants/ActionDataConstants.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/engine/constants/ActionDataConstants.java b/core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/engine/constants/ActionDataConstants.java
new file mode 100644
index 000000000..cf716de8a
--- /dev/null
+++ b/core/bundles/org.eclipse.wst.ws.explorer/src/org/eclipse/wst/ws/internal/explorer/platform/engine/constants/ActionDataConstants.java
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2005 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