Author: jjankovi
Date: 2012-01-04 08:55:20 -0500 (Wed, 04 Jan 2012)
New Revision: 37639
Added:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/explorer/RESTFulAnnotations.java
Log:
Annotations in RESTful services environment added
Added:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/explorer/RESTFulAnnotations.java
===================================================================
---
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/explorer/RESTFulAnnotations.java
(rev 0)
+++
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/explorer/RESTFulAnnotations.java 2012-01-04
13:55:20 UTC (rev 37639)
@@ -0,0 +1,25 @@
+package org.jboss.tools.ws.ui.bot.test.rest.explorer;
+
+public enum RESTFulAnnotations {
+
+ CONFIGURE_MENU_LABEL("Configure"),
+ REST_SUPPORT_MENU_LABEL_ADD("Add JAX-RS 1.1 support..."),
+ REST_SUPPORT_MENU_LABEL_REMOVE("Remove JAX-RS 1.1 support..."),
+ REST_EXPLORER_LABEL("JAX-RS REST Web Services"),
+ REST_EXPLORER_LABEL_BUILD("Building RESTful Web Services..."),
+ GET("GET"),
+ POST("POST"),
+ PUT("PUT"),
+ DELETE("DELETE");
+
+ private String label;
+
+ private RESTFulAnnotations(String label) {
+ this.label = label;
+ }
+
+ public String getLabel() {
+ return label;
+ }
+
+}