From 09524edc27923f269ea76ae2aef8bcf703658a22 Mon Sep 17 00:00:00 2001 From: rfeng Date: Wed, 25 Mar 2009 15:48:09 +0000 Subject: Add RFC 124 sample xml documents git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@758313 13f79535-47bb-0310-9956-ffa450edef68 --- .../calculator/dosgi/test/OSGiTestBundles.java | 31 ++++++++++------ .../dosgi/OSGI-INF/blueprint/calculator-module.xml | 43 ++++++++++++++++++++++ .../calculator-service-descriptions.xml | 2 + .../OSGI-INF/blueprint/operations-module.xml | 40 ++++++++++++++++++++ 4 files changed, 105 insertions(+), 11 deletions(-) create mode 100644 java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/blueprint/calculator-module.xml create mode 100644 java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml (limited to 'java/sca') diff --git a/java/sca/modules/node-impl-osgi/src/test/java/calculator/dosgi/test/OSGiTestBundles.java b/java/sca/modules/node-impl-osgi/src/test/java/calculator/dosgi/test/OSGiTestBundles.java index 610a0473e6..69ae4cada2 100644 --- a/java/sca/modules/node-impl-osgi/src/test/java/calculator/dosgi/test/OSGiTestBundles.java +++ b/java/sca/modules/node-impl-osgi/src/test/java/calculator/dosgi/test/OSGiTestBundles.java @@ -6,15 +6,15 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations - * under the License. + * under the License. */ package calculator.dosgi.test; @@ -55,7 +55,7 @@ import calculator.dosgi.operations.SubtractService; import calculator.dosgi.operations.SubtractServiceImpl; /** - * + * * Utility class to create OSGi bundles * * @version $Rev$ $Date$ @@ -63,17 +63,17 @@ import calculator.dosgi.operations.SubtractServiceImpl; public class OSGiTestBundles { private static class InvocationHandlerImpl implements InvocationHandler { private Object instance; - + public InvocationHandlerImpl(Object instance) { super(); this.instance = instance; } - + public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { Method m = instance.getClass().getMethod(method.getName(), method.getParameterTypes()); return m.invoke(instance, args); } - + } private static String getPackageName(Class cls) { @@ -271,15 +271,15 @@ public class OSGiTestBundles { DivideService.class, DivideServiceImpl.class); } - + /** * Returns a string representation of the given bundle. - * + * * @param b * @param verbose * @return */ - static String bundleStatus(Bundle bundle, boolean verbose) { + public static String bundleStatus(Bundle bundle, boolean verbose) { StringBuffer sb = new StringBuffer(); sb.append(bundle.getBundleId()).append(" ").append(bundle.getSymbolicName()); int s = bundle.getState(); @@ -309,7 +309,16 @@ public class OSGiTestBundles { return sb.toString(); } - static T cast(Object obj, Class cls) { + /** + * A utility to cast the object to the given interface. If the class for the object + * is loaded by a different classloader, a proxy will be created. + * + * @param + * @param obj + * @param cls + * @return + */ + public static T cast(Object obj, Class cls) { if (cls.isInstance(obj)) { return cls.cast(obj); } else { diff --git a/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/blueprint/calculator-module.xml b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/blueprint/calculator-module.xml new file mode 100644 index 0000000000..c61fc295a6 --- /dev/null +++ b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/blueprint/calculator-module.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/remote-service/calculator-service-descriptions.xml b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/remote-service/calculator-service-descriptions.xml index dc456c67f1..da76d00024 100644 --- a/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/remote-service/calculator-service-descriptions.xml +++ b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/OSGI-INF/remote-service/calculator-service-descriptions.xml @@ -17,7 +17,9 @@ * specific language governing permissions and limitations * under the License. --> + + sca:SOAP sca:HTTP diff --git a/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml new file mode 100644 index 0000000000..6410b55129 --- /dev/null +++ b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3