Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Chong2018-02-12 17:54:09 +0000
committerKeith Chong2018-02-12 18:27:29 +0000
commit361ac714bed1ede277d95c304de7471f03d5ed66 (patch)
tree578b82cdc153c2fad319f57d972da0d1d31ddb4f
parent969bc4585c64635ca7cc832c92381a2cffc97ebf (diff)
downloadwebtools.webservices-R3_9_3.tar.gz
webtools.webservices-R3_9_3.tar.xz
webtools.webservices-R3_9_3.zip
[531063] Add 2.1 constant to IJAXRSCoreConstantR3_9_3
-rw-r--r--bundles/org.eclipse.jst.ws.jaxrs.core/src/org/eclipse/jst/ws/jaxrs/core/internal/IJAXRSCoreConstants.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/bundles/org.eclipse.jst.ws.jaxrs.core/src/org/eclipse/jst/ws/jaxrs/core/internal/IJAXRSCoreConstants.java b/bundles/org.eclipse.jst.ws.jaxrs.core/src/org/eclipse/jst/ws/jaxrs/core/internal/IJAXRSCoreConstants.java
index 137db212e..a6bbe13d7 100644
--- a/bundles/org.eclipse.jst.ws.jaxrs.core/src/org/eclipse/jst/ws/jaxrs/core/internal/IJAXRSCoreConstants.java
+++ b/bundles/org.eclipse.jst.ws.jaxrs.core/src/org/eclipse/jst/ws/jaxrs/core/internal/IJAXRSCoreConstants.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2010 IBM Corporation and others.
+ * Copyright (c) 2009, 2018 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
@@ -42,6 +42,15 @@ public final class IJAXRSCoreConstants {
*/
public final static String FACET_VERSION_1_1 = "1.1"; //$NON-NLS-1$
/**
+ * The facet version for a JAX-RS 2.0 project
+ */
+ public final static String FACET_VERSION_2_0 = "2.0"; //$NON-NLS-1$
+ /**
+ * The facet version for a JAX-RS 2.1 project
+ */
+ public final static String FACET_VERSION_2_1 = "2.1"; //$NON-NLS-1$
+
+ /**
* The constant id for a JAXRS 1.1 project
*/
public final static String JAXRS_VERSION_1_1 = FACET_VERSION_1_1;

Back to the top