summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/1.6/itest/osgi-implementation/src/main/java/conversation/service/ConversationalServiceFactory.java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-03-04 21:36:02 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-03-04 21:36:02 +0000
commit9440da155ff7229b7524bf72be516048535a9b43 (patch)
tree80508eaf2562fe23c04c107ab9bd51d82955e6bd /sca-java-1.x/tags/1.6/itest/osgi-implementation/src/main/java/conversation/service/ConversationalServiceFactory.java
parent76564ec53d91ba9086d7fc371b3f5b6d0b551526 (diff)
Official 1.6 release tag
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@919190 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/tags/1.6/itest/osgi-implementation/src/main/java/conversation/service/ConversationalServiceFactory.java')
-rw-r--r--sca-java-1.x/tags/1.6/itest/osgi-implementation/src/main/java/conversation/service/ConversationalServiceFactory.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/sca-java-1.x/tags/1.6/itest/osgi-implementation/src/main/java/conversation/service/ConversationalServiceFactory.java b/sca-java-1.x/tags/1.6/itest/osgi-implementation/src/main/java/conversation/service/ConversationalServiceFactory.java
new file mode 100644
index 0000000000..fe8bd23f07
--- /dev/null
+++ b/sca-java-1.x/tags/1.6/itest/osgi-implementation/src/main/java/conversation/service/ConversationalServiceFactory.java
@@ -0,0 +1,52 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * 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.
+ */
+
+package conversation.service;
+
+import org.osgi.framework.Bundle;
+import org.osgi.framework.ServiceFactory;
+import org.osgi.framework.ServiceRegistration;
+
+
+public class ConversationalServiceFactory implements ServiceFactory {
+
+ private Class<?> clazz;
+
+ public ConversationalServiceFactory(Class<?> clazz) {
+ this.clazz = clazz;
+ }
+
+ public Object getService(Bundle bundle, ServiceRegistration reg) {
+
+ try {
+ return clazz.newInstance();
+ } catch (Exception e) {
+ e.printStackTrace();
+ return null;
+ }
+
+ }
+
+ public void ungetService(Bundle bundle, ServiceRegistration reg, Object obj) {
+
+ }
+
+
+
+}