You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2009/04/25 23:34:41 UTC

svn commit: r768607 - in /incubator/openwebbeans/trunk: ./ webbeans-jms/ webbeans-jms/src/ webbeans-jms/src/main/ webbeans-jms/src/main/java/ webbeans-jms/src/main/java/org/ webbeans-jms/src/main/java/org/apache/ webbeans-jms/src/main/java/org/apache/w...

Author: gerdogdu
Date: Sat Apr 25 21:34:39 2009
New Revision: 768607

URL: http://svn.apache.org/viewvc?rev=768607&view=rev
Log:
Adding JMS Related Project

Added:
    incubator/openwebbeans/trunk/webbeans-jms/
    incubator/openwebbeans/trunk/webbeans-jms/pom.xml   (with props)
    incubator/openwebbeans/trunk/webbeans-jms/src/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/component/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/component/JmsComponentImpl.java   (with props)
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/plugin/
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/plugin/OpenWebBeansJmsPlugin.java   (with props)
    incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/util/
    incubator/openwebbeans/trunk/webbeans-jms/src/test/
    incubator/openwebbeans/trunk/webbeans-jms/src/test/java/
    incubator/openwebbeans/trunk/webbeans-jms/src/test/java/org/
    incubator/openwebbeans/trunk/webbeans-jms/src/test/java/org/apache/
Modified:
    incubator/openwebbeans/trunk/pom.xml

Modified: incubator/openwebbeans/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/pom.xml?rev=768607&r1=768606&r2=768607&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/pom.xml (original)
+++ incubator/openwebbeans/trunk/pom.xml Sat Apr 25 21:34:39 2009
@@ -316,7 +316,8 @@
         <module>samples</module>
 <!--	<module>webbeans-tck</module>-->
         <module>webbeans-ejb</module>
-    </modules>
+    <module>webbeans-jms</module>
+  </modules>
     
 	<repositories>
 		<repository>
@@ -544,4 +545,4 @@
         </profile>  
         <!-- END release profile -->
     </profiles>
-</project>
+</project>
\ No newline at end of file

Added: incubator/openwebbeans/trunk/webbeans-jms/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-jms/pom.xml?rev=768607&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-jms/pom.xml (added)
+++ incubator/openwebbeans/trunk/webbeans-jms/pom.xml Sat Apr 25 21:34:39 2009
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+	<!--
+
+		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.
+	-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.apache.openwebbeans</groupId>
+		<artifactId>openwebbeans</artifactId>
+		<version>1.0.0-incubating-SNAPSHOT</version>
+	</parent>
+	<artifactId>openwebbeans-jms</artifactId>
+	<name>OpenWebBeans :: WebBeans-Jms</name>
+	<packaging>jar</packaging>
+	<description>OpenWebBeans JMS Integration</description>
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.openwebbeans</groupId>
+			<artifactId>openwebbeans-impl</artifactId>
+			<version>1.0.0-incubating-SNAPSHOT</version>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.5</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.openwebbeans</groupId>
+			<artifactId>openwebbeans-impl</artifactId>
+			<version>1.0.0-incubating-SNAPSHOT</version>
+			<classifier>tests</classifier>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+</project>

Propchange: incubator/openwebbeans/trunk/webbeans-jms/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/component/JmsComponentImpl.java
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/component/JmsComponentImpl.java?rev=768607&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/component/JmsComponentImpl.java (added)
+++ incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/component/JmsComponentImpl.java Sat Apr 25 21:34:39 2009
@@ -0,0 +1,43 @@
+/*
+ *  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 org.apache.webbeans.jms.component;
+
+import javax.context.CreationalContext;
+
+import org.apache.webbeans.component.AbstractComponent;
+import org.apache.webbeans.component.WebBeansType;
+
+public class JmsComponentImpl<T> extends AbstractComponent<T> 
+{
+    public JmsComponentImpl()
+    {
+        super(WebBeansType.JMS);
+    }
+
+    @Override
+    protected T createInstance(CreationalContext<T> creationalContext)
+    {
+        return null;
+    }
+
+    @Override
+    protected void destroyInstance(T instance)
+    {        
+        
+    }
+
+}

Propchange: incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/component/JmsComponentImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/plugin/OpenWebBeansJmsPlugin.java
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/plugin/OpenWebBeansJmsPlugin.java?rev=768607&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/plugin/OpenWebBeansJmsPlugin.java (added)
+++ incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/plugin/OpenWebBeansJmsPlugin.java Sat Apr 25 21:34:39 2009
@@ -0,0 +1,35 @@
+/*
+ *  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 org.apache.webbeans.jms.plugin;
+
+import org.apache.webbeans.plugins.AbstractOpenWebBeansPlugin;
+
+/**
+ * JMS Plugin for JMS related components.
+ * @version $Rev$ $Date$
+ */
+public class OpenWebBeansJmsPlugin extends AbstractOpenWebBeansPlugin
+{
+
+    public OpenWebBeansJmsPlugin()
+    {
+        super();
+    }
+    
+    
+    
+}

Propchange: incubator/openwebbeans/trunk/webbeans-jms/src/main/java/org/apache/webbeans/jms/plugin/OpenWebBeansJmsPlugin.java
------------------------------------------------------------------------------
    svn:eol-style = native