Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2019-01-04 15:19:27 +0000
committerThomas Watson2019-01-04 15:19:27 +0000
commit6e46f2e63d5db3f5bf017e22c9449d42bfbdbb3f (patch)
treea2088001edb72c6febd6abe2805664e291cb51fc
parent5fdc1f89197f05037197a9115dd1114b40ceeedf (diff)
downloadrt.equinox.bundles-I20190115-1800.tar.gz
rt.equinox.bundles-I20190115-1800.tar.xz
rt.equinox.bundles-I20190115-1800.zip
Other APIs in this package use the package version so I had to add a problem filter to allow the package version to be used in @since Change-Id: I45f7ad973098c56c501b12516689737604d0441d Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.equinox.http.jetty/.settings/.api_filters12
-rw-r--r--bundles/org.eclipse.equinox.http.jetty/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/JettyConstants.java1
3 files changed, 14 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.http.jetty/.settings/.api_filters b/bundles/org.eclipse.equinox.http.jetty/.settings/.api_filters
new file mode 100644
index 000000000..8c66a0355
--- /dev/null
+++ b/bundles/org.eclipse.equinox.http.jetty/.settings/.api_filters
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<component id="org.eclipse.equinox.http.jetty" version="2">
+ <resource path="src/org/eclipse/equinox/http/jetty/JettyConstants.java" type="org.eclipse.equinox.http.jetty.JettyConstants">
+ <filter id="1209008130">
+ <message_arguments>
+ <message_argument value="1.5"/>
+ <message_argument value="3.7"/>
+ <message_argument value="HOUSEKEEPER_INTERVAL"/>
+ </message_arguments>
+ </filter>
+ </resource>
+</component>
diff --git a/bundles/org.eclipse.equinox.http.jetty/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.http.jetty/META-INF/MANIFEST.MF
index 71d2dfdda..aa515c8e9 100644
--- a/bundles/org.eclipse.equinox.http.jetty/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.http.jetty/META-INF/MANIFEST.MF
@@ -25,7 +25,7 @@ Import-Package: javax.servlet;version="[2.6.0,4.0.0)",
org.osgi.framework.wiring;version="1.2.0",
org.osgi.service.cm;version="1.2.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
-Export-Package: org.eclipse.equinox.http.jetty;version="1.4.0"
+Export-Package: org.eclipse.equinox.http.jetty;version="1.5.0"
Comment-Header: Both Eclipse-LazyStart and Bundle-ActivationPolicy are specified for compatibility with 3.2
Eclipse-LazyStart: true
Bundle-ActivationPolicy: lazy
diff --git a/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/JettyConstants.java b/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/JettyConstants.java
index e8664d59b..ca30b5463 100644
--- a/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/JettyConstants.java
+++ b/bundles/org.eclipse.equinox.http.jetty/src/org/eclipse/equinox/http/jetty/JettyConstants.java
@@ -152,6 +152,7 @@ public interface JettyConstants {
/**
* name="housekeeper.interval" type="Integer"
+ * @since 1.5
*/
public static final String HOUSEKEEPER_INTERVAL = "housekeeper.interval"; //$NON-NLS-1$

Back to the top