Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2017-01-20 21:29:06 +0000
committerMarkus Keller2017-01-23 16:54:47 +0000
commit3222530685459254c76e866cc6ecfc88fd44974f (patch)
tree971bd4015e2ce6f7de25e3540d51d9614dc51c98
parentc7ddbdee1796b57ef64239ca52c86ad204f73a06 (diff)
downloadrt.equinox.bundles-3222530685459254c76e866cc6ecfc88fd44974f.tar.gz
rt.equinox.bundles-3222530685459254c76e866cc6ecfc88fd44974f.tar.xz
rt.equinox.bundles-3222530685459254c76e866cc6ecfc88fd44974f.zip
-rw-r--r--bundles/org.eclipse.equinox.ds/.settings/.api_filters27
-rw-r--r--bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java3
-rw-r--r--bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java1
3 files changed, 3 insertions, 28 deletions
diff --git a/bundles/org.eclipse.equinox.ds/.settings/.api_filters b/bundles/org.eclipse.equinox.ds/.settings/.api_filters
deleted file mode 100644
index 338103571..000000000
--- a/bundles/org.eclipse.equinox.ds/.settings/.api_filters
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<component id="org.eclipse.equinox.ds" version="2">
- <resource path="META-INF/MANIFEST.MF" type="org.apache.felix.scr.Component">
- <filter id="305324134">
- <message_arguments>
- <message_argument value="org.apache.felix.scr.Component"/>
- <message_argument value="org.eclipse.equinox.ds_1.5.0"/>
- </message_arguments>
- </filter>
- </resource>
- <resource path="META-INF/MANIFEST.MF" type="org.apache.felix.scr.Reference">
- <filter id="305324134">
- <message_arguments>
- <message_argument value="org.apache.felix.scr.Reference"/>
- <message_argument value="org.eclipse.equinox.ds_1.5.0"/>
- </message_arguments>
- </filter>
- </resource>
- <resource path="META-INF/MANIFEST.MF" type="org.apache.felix.scr.ScrService">
- <filter id="305324134">
- <message_arguments>
- <message_argument value="org.apache.felix.scr.ScrService"/>
- <message_argument value="org.eclipse.equinox.ds_1.5.0"/>
- </message_arguments>
- </filter>
- </resource>
-</component>
diff --git a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java
index ba7165cfd..f91c6b80f 100644
--- a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java
+++ b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Component.java
@@ -26,7 +26,7 @@ import org.osgi.service.component.ComponentInstance;
* The <code>Component</code> interface represents a single component managed
* by the Service Component Runtime. Management agents may access the Component
* instances through the {@link ScrService}.
- * @deprecated * @deprecated clients should use {@link org.osgi.service.component.runtime.dto.ComponentDescriptionDTO} instead.
+ * @deprecated clients should use {@link org.osgi.service.component.runtime.dto.ComponentDescriptionDTO} instead.
*/
@Deprecated
public interface Component {
@@ -207,6 +207,7 @@ public interface Component {
* are used to register the Component as a service and are returned by
* the <code>ComponentContext.getProperties()</code> method.
*/
+ @SuppressWarnings("rawtypes")
Dictionary getProperties();
/**
diff --git a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java
index 6decd81df..11dfe8e18 100644
--- a/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java
+++ b/bundles/org.eclipse.equinox.ds/src/org/apache/felix/scr/Reference.java
@@ -45,6 +45,7 @@ public interface Reference {
* Returns an array of references to the services bound to this Reference
* or <code>null</code> if no services are currently bound.
*/
+ @SuppressWarnings("rawtypes")
ServiceReference[] getServiceReferences();
/**

Back to the top