You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2009/10/05 14:58:06 UTC

svn commit: r821782 - in /tuscany/java/sca/itest/jms: callbacks/src/main/resources/META-INF/ callbacks/src/main/resources/simple/ definitions/src/main/resources/META-INF/ noreplyto/src/main/resources/META-INF/ nulls/src/main/resources/ nulls/src/main/r...

Author: antelder
Date: Mon Oct  5 12:58:05 2009
New Revision: 821782

URL: http://svn.apache.org/viewvc?rev=821782&view=rev
Log:
Add sca-contribution.xml files for the JMS itests and accociated changes

Added:
    tuscany/java/sca/itest/jms/callbacks/src/main/resources/META-INF/
    tuscany/java/sca/itest/jms/callbacks/src/main/resources/META-INF/sca-contribution.xml
    tuscany/java/sca/itest/jms/definitions/src/main/resources/META-INF/
    tuscany/java/sca/itest/jms/definitions/src/main/resources/META-INF/sca-contribution.xml
    tuscany/java/sca/itest/jms/noreplyto/src/main/resources/META-INF/
    tuscany/java/sca/itest/jms/noreplyto/src/main/resources/META-INF/sca-contribution.xml
    tuscany/java/sca/itest/jms/nulls/src/main/resources/META-INF/
    tuscany/java/sca/itest/jms/nulls/src/main/resources/META-INF/sca-contribution.xml
    tuscany/java/sca/itest/jms/responsecf/src/main/resources/META-INF/
    tuscany/java/sca/itest/jms/responsecf/src/main/resources/META-INF/sca-contribution.xml
    tuscany/java/sca/itest/jms/selectors/src/main/resources/META-INF/
    tuscany/java/sca/itest/jms/selectors/src/main/resources/META-INF/sca-contribution.xml
Modified:
    tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/client.composite
    tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite
    tuscany/java/sca/itest/jms/nulls/src/main/resources/nulls.composite
    tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/client.composite
    tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/service.composite
    tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsdefault/helloworld.composite
    tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsuserprop/helloworld.composite
    tuscany/java/sca/itest/jms/selectors/src/main/resources/selectors/selectors.composite

Added: tuscany/java/sca/itest/jms/callbacks/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/callbacks/src/main/resources/META-INF/sca-contribution.xml?rev=821782&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/callbacks/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/java/sca/itest/jms/callbacks/src/main/resources/META-INF/sca-contribution.xml Mon Oct  5 12:58:05 2009
@@ -0,0 +1,24 @@
+<?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.    
+-->
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+              xmlns:itest="http://itest">
+   <deployable composite="itest:CallbackClientComposite"/>
+   <deployable composite="itest:CallbackTempQComposite"/>
+</contribution>
\ No newline at end of file

Modified: tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/client.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/client.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/client.composite (original)
+++ tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/client.composite Mon Oct  5 12:58:05 2009
@@ -18,7 +18,7 @@
  * under the License.    
  -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
-           targetNamespace="http://jms"
+           targetNamespace="http://itest"
            name="CallbackClientComposite">
 
     <component name="ClientComponent">

Modified: tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite (original)
+++ tuscany/java/sca/itest/jms/callbacks/src/main/resources/simple/tempq.composite Mon Oct  5 12:58:05 2009
@@ -18,8 +18,8 @@
  * under the License.    
  -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
-           targetNamespace="http://jms"
-           name="CallbackClientComposite">
+           targetNamespace="http://itest"
+           name="CallbackTempQComposite">
 
 <!-- 
 

Added: tuscany/java/sca/itest/jms/definitions/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/definitions/src/main/resources/META-INF/sca-contribution.xml?rev=821782&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/definitions/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/java/sca/itest/jms/definitions/src/main/resources/META-INF/sca-contribution.xml Mon Oct  5 12:58:05 2009
@@ -0,0 +1,23 @@
+<?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.    
+-->
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+              xmlns:itest="http://itest">
+   <deployable composite="itest:DefinitionsTests"/>
+</contribution>
\ No newline at end of file

Added: tuscany/java/sca/itest/jms/noreplyto/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/noreplyto/src/main/resources/META-INF/sca-contribution.xml?rev=821782&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/noreplyto/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/java/sca/itest/jms/noreplyto/src/main/resources/META-INF/sca-contribution.xml Mon Oct  5 12:58:05 2009
@@ -0,0 +1,23 @@
+<?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.    
+-->
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+              xmlns:itest="http://itest">
+   <deployable composite="itest:SimpleServiceComposite"/>
+</contribution>
\ No newline at end of file

Added: tuscany/java/sca/itest/jms/nulls/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/nulls/src/main/resources/META-INF/sca-contribution.xml?rev=821782&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/nulls/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/java/sca/itest/jms/nulls/src/main/resources/META-INF/sca-contribution.xml Mon Oct  5 12:58:05 2009
@@ -0,0 +1,23 @@
+<?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.    
+-->
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+              xmlns:itest="http://itest">
+   <deployable composite="itest:Nulls"/>
+</contribution>
\ No newline at end of file

Modified: tuscany/java/sca/itest/jms/nulls/src/main/resources/nulls.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/nulls/src/main/resources/nulls.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/nulls/src/main/resources/nulls.composite (original)
+++ tuscany/java/sca/itest/jms/nulls/src/main/resources/nulls.composite Mon Oct  5 12:58:05 2009
@@ -19,8 +19,7 @@
  -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
            xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0" 
-           targetNamespace="http://jms"
-           xmlns:itest="http://jms"
+           targetNamespace="http://itest"
            name="Nulls">
 
     <component name="Client1">

Added: tuscany/java/sca/itest/jms/responsecf/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/responsecf/src/main/resources/META-INF/sca-contribution.xml?rev=821782&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/responsecf/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/java/sca/itest/jms/responsecf/src/main/resources/META-INF/sca-contribution.xml Mon Oct  5 12:58:05 2009
@@ -0,0 +1,24 @@
+<?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.    
+-->
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+              xmlns:itest="http://itest">
+   <deployable composite="itest:SimpleServiceComposite"/>
+   <deployable composite="itest:SimpleClientComposite"/>
+</contribution>
\ No newline at end of file

Modified: tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/client.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/client.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/client.composite (original)
+++ tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/client.composite Mon Oct  5 12:58:05 2009
@@ -18,6 +18,7 @@
  * under the License.    
  -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+           targetNamespace="http://itest"
            name="SimpleClientComposite">
 
     <component name="HelloWorldClient">

Modified: tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/service.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/service.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/service.composite (original)
+++ tuscany/java/sca/itest/jms/responsecf/src/main/resources/cf/service.composite Mon Oct  5 12:58:05 2009
@@ -18,6 +18,7 @@
  * under the License.    
  -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+           targetNamespace="http://itest"
            name="SimpleServiceComposite">
 
     <component name="HelloWorldService">

Added: tuscany/java/sca/itest/jms/selectors/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/selectors/src/main/resources/META-INF/sca-contribution.xml?rev=821782&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/selectors/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/java/sca/itest/jms/selectors/src/main/resources/META-INF/sca-contribution.xml Mon Oct  5 12:58:05 2009
@@ -0,0 +1,25 @@
+<?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.    
+-->
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+              xmlns:itest="http://itest">
+   <deployable composite="itest:helloworld"/>
+   <deployable composite="itest:helloworldUP"/>
+   <deployable composite="itest:Selectors"/>
+</contribution>
\ No newline at end of file

Modified: tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsdefault/helloworld.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsdefault/helloworld.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsdefault/helloworld.composite (original)
+++ tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsdefault/helloworld.composite Mon Oct  5 12:58:05 2009
@@ -18,7 +18,7 @@
     * under the License.    
 -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
-    targetNamespace="http://helloworld"
+    targetNamespace="http://itest"
     xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
     xmlns:hw="http://helloworld"
     name="helloworld">

Modified: tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsuserprop/helloworld.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsuserprop/helloworld.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsuserprop/helloworld.composite (original)
+++ tuscany/java/sca/itest/jms/selectors/src/main/resources/jmsuserprop/helloworld.composite Mon Oct  5 12:58:05 2009
@@ -18,10 +18,10 @@
     * under the License.    
 -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
-    targetNamespace="http://helloworld"
+    targetNamespace="http://itest"
     xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
     xmlns:hw="http://helloworld"
-    name="helloworld">
+    name="helloworldUP">
 
     <component name="HelloWorldReferenceComponent">
         <implementation.java class="org.apache.tuscany.sca.binding.jms.operationselector.jmsuserprop.HelloWorldReferenceImpl" />

Modified: tuscany/java/sca/itest/jms/selectors/src/main/resources/selectors/selectors.composite
URL: http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/selectors/src/main/resources/selectors/selectors.composite?rev=821782&r1=821781&r2=821782&view=diff
==============================================================================
--- tuscany/java/sca/itest/jms/selectors/src/main/resources/selectors/selectors.composite (original)
+++ tuscany/java/sca/itest/jms/selectors/src/main/resources/selectors/selectors.composite Mon Oct  5 12:58:05 2009
@@ -18,9 +18,9 @@
  * under the License.    
  -->
 <composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
-           targetNamespace="http://jms"
+           targetNamespace="http://itest"
            xmlns:itest="http://jms"
-           name="DefinitionsTests">
+           name="Selectors">
 
     <component name="Client1">
         <implementation.java class="org.apache.tuscany.sca.binding.jms.ClientImpl"/>