Make tests compiled on KF

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1479811 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCCallback.java b/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCCallback.java
index 8a3cfd3..2574099 100644
--- a/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCCallback.java
+++ b/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCCallback.java
@@ -115,7 +115,8 @@
     }

 

     private Element getManipulationForComponent() {

-        String header = getTestBundle().getHeaders().get("iPOJO-Components");

+        // On KF we must cast the result.

+        String header = (String) getTestBundle().getHeaders().get("iPOJO-Components");

         Element elem = null;

         try {

             elem = ManifestMetadataParser.parseHeaderMetadata(header);

diff --git a/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCController.java b/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCController.java
index 0d335e9..814c882 100644
--- a/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCController.java
+++ b/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadLFCController.java
@@ -53,7 +53,8 @@
     }

 

     private Element getManipulationForComponent(String comp_name) {

-        String header = getTestBundle().getHeaders().get("iPOJO-Components");

+        // On KF we must cast the result

+        String header = (String) getTestBundle().getHeaders().get("iPOJO-Components");

         Element elem = null;

         try {

             elem = ManifestMetadataParser.parseHeaderMetadata(header);

diff --git a/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadServiceDependencies.java b/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadServiceDependencies.java
index f0c4e6d..ae5a1eb 100644
--- a/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadServiceDependencies.java
+++ b/ipojo/runtime/core-it/src/it/ipojo-core-bad-configuration-test/src/test/java/org/apache/felix/ipojo/runtime/bad/test/TestBadServiceDependencies.java
@@ -132,7 +132,8 @@
     }

 

     private Element getManipulationForComponent() {

-        String header = getTestBundle().getHeaders().get("iPOJO-Components");

+        // On KF we must cast the result.

+        String header = (String) getTestBundle().getHeaders().get("iPOJO-Components");

         Element elem = null;

         try {

             elem = ManifestMetadataParser.parse(header);

diff --git a/ipojo/runtime/core-it/src/it/ipojo-core-factory-version-test/src/test/java/org/apache/felix/ipojo/tests/core/VersionConflictTest.java b/ipojo/runtime/core-it/src/it/ipojo-core-factory-version-test/src/test/java/org/apache/felix/ipojo/tests/core/VersionConflictTest.java
index 715781a..7471e67 100644
--- a/ipojo/runtime/core-it/src/it/ipojo-core-factory-version-test/src/test/java/org/apache/felix/ipojo/tests/core/VersionConflictTest.java
+++ b/ipojo/runtime/core-it/src/it/ipojo-core-factory-version-test/src/test/java/org/apache/felix/ipojo/tests/core/VersionConflictTest.java
@@ -37,8 +37,6 @@
 import org.ops4j.pax.exam.spi.reactors.PerMethod;
 import org.ops4j.pax.tinybundles.core.TinyBundles;
 import org.osgi.framework.*;
-import org.osgi.framework.wiring.BundleWire;
-import org.osgi.framework.wiring.BundleWiring;
 import org.ow2.chameleon.testing.helpers.Stability;
 import org.ow2.chameleon.testing.tinybundles.ipojo.IPOJOStrategy;
 
@@ -189,11 +187,11 @@
         }
 
         Bundle consBundle = osgiHelper.getBundle("MyCons");
-        BundleWiring wiring = consBundle.adapt(BundleWiring.class);
-        System.out.println("Bundle Wiring req: ");
-        for (BundleWire wire : wiring.getRequiredWires(null)) {
-            System.out.println(wire.getCapability().getAttributes() + " - " + wire.getCapability().getDirectives());
-        }
+//        BundleWiring wiring = consBundle.adapt(BundleWiring.class);
+//        System.out.println("Bundle Wiring req: ");
+//        for (BundleWire wire : wiring.getRequiredWires(null)) {
+//            System.out.println(wire.getCapability().getAttributes() + " - " + wire.getCapability().getDirectives());
+//        }
 
         osgiHelper.waitForService(Architecture.class.getName(), "(architecture.instance=mycons)", 2000);