From 69b976291955ea264a96fe9182f3653bd8f29de2 Mon Sep 17 00:00:00 2001 From: slaws Date: Thu, 28 May 2009 09:20:08 +0000 Subject: TUSCANY-2978 - tidy contribution jee sample names and add 08 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@779500 13f79535-47bb-0310-9956-ffa450edef68 --- .../ear-appcomp-contrib-implicit/pom.xml | 8 +-- .../application/META-INF/application.composite | 11 ++-- .../ear-nonenhanced/pom.xml | 8 +-- .../java/sample/ejb3/HelloworldServiceBean.java | 5 ++ .../contribution-jee-samples/ejb-enhanced/pom.xml | 68 ++++++++++++++++++++++ .../main/java/sample/ejb3/HelloworldLocal8.java | 33 +++++++++++ .../main/java/sample/ejb3/HelloworldService8.java | 33 +++++++++++ .../java/sample/ejb3/HelloworldService8Bean.java | 46 +++++++++++++++ .../src/main/resources/META-INF/openejb-jar.xml | 32 ++++++++++ .../ejb-nonenhanced/pom.xml | 4 +- .../itest/contribution-jee-samples/pom.xml | 1 + .../src/main/resources/helloworld.composite | 2 +- .../scazip-war-appcomp/pom.xml | 4 +- .../war-appcomp-contrib-implicit/pom.xml | 4 +- .../war-nonenhanced/pom.xml | 4 +- .../sca-java-1.x/itest/contribution-jee/pom.xml | 13 ++++- .../contribution/jee/SCAZipEjbAppcompTestCase.java | 2 +- .../contribution/jee/SCAZipWarAppcompTestCase.java | 2 +- .../jee/WARAppcompContribImplicitTestCase.java | 2 +- .../test/contribution/jee/WarAppcompTestCase.java | 2 +- 20 files changed, 256 insertions(+), 28 deletions(-) create mode 100644 branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/pom.xml create mode 100644 branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldLocal8.java create mode 100644 branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8.java create mode 100644 branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8Bean.java create mode 100644 branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/resources/META-INF/openejb-jar.xml (limited to 'branches/sca-java-1.x') diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/pom.xml index 930d4f9183..32aa604cba 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/pom.xml @@ -55,7 +55,7 @@ org.apache.tuscany.sca - itest-contribution-jee-samples-7-ejb-nonenhanced + itest-contribution-jee-samples-08-ejb-enhanced 1.6-SNAPSHOT ejb provided @@ -63,7 +63,7 @@ org.apache.tuscany.sca - itest-contribution-jee-samples-1-war-nonenhanced + itest-contribution-jee-samples-01-war-nonenhanced 1.6-SNAPSHOT war provided @@ -86,12 +86,12 @@ org.apache.tuscany.sca - itest-contribution-jee-samples-7-ejb-nonenhanced + itest-contribution-jee-samples-08-ejb-enhanced / org.apache.tuscany.sca - itest-contribution-jee-samples-1-war-nonenhanced + itest-contribution-jee-samples-01-war-nonenhanced / diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/src/main/application/META-INF/application.composite b/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/src/main/application/META-INF/application.composite index 890431360b..9063702011 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/src/main/application/META-INF/application.composite +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ear-appcomp-contrib-implicit/src/main/application/META-INF/application.composite @@ -23,14 +23,17 @@ name="Calculator"> - - - + + + + - + + + diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ear-nonenhanced/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/ear-nonenhanced/pom.xml index d408db67c9..57054b4a5d 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/ear-nonenhanced/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ear-nonenhanced/pom.xml @@ -48,7 +48,7 @@ org.apache.tuscany.sca - itest-contribution-jee-samples-7-ejb-nonenhanced + itest-contribution-jee-samples-07-ejb-nonenhanced 1.6-SNAPSHOT ejb provided @@ -56,7 +56,7 @@ org.apache.tuscany.sca - itest-contribution-jee-samples-1-war-nonenhanced + itest-contribution-jee-samples-01-war-nonenhanced 1.6-SNAPSHOT war provided @@ -73,12 +73,12 @@ org.apache.tuscany.sca - itest-contribution-jee-samples-7-ejb-nonenhanced + itest-contribution-jee-samples-07-ejb-nonenhanced / org.apache.tuscany.sca - itest-contribution-jee-samples-1-war-nonenhanced + itest-contribution-jee-samples-01-war-nonenhanced / diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-appcomp-contrib-implicit/src/main/java/sample/ejb3/HelloworldServiceBean.java b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-appcomp-contrib-implicit/src/main/java/sample/ejb3/HelloworldServiceBean.java index 1bf293ec85..ad9003dc67 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-appcomp-contrib-implicit/src/main/java/sample/ejb3/HelloworldServiceBean.java +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-appcomp-contrib-implicit/src/main/java/sample/ejb3/HelloworldServiceBean.java @@ -19,12 +19,17 @@ package sample.ejb3; import javax.ejb.Stateless; +import org.osoa.sca.annotations.Reference; + /** * HelloworldService EJB implementation with no SCA enhancement */ @Stateless public class HelloworldServiceBean implements HelloworldService { + + @Reference + protected HelloworldService nextService; public String getGreetings(String name) { String greeting = "Hello " + name; diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/pom.xml new file mode 100644 index 0000000000..44a0b85dc2 --- /dev/null +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/pom.xml @@ -0,0 +1,68 @@ + + + + + 4.0.0 + + org.apache.tuscany.sca + itest-contribution-jee-samples + 1.6-SNAPSHOT + ../pom.xml + + + itest-contribution-jee-samples-08-ejb-enhanced + Apache Tuscany SCA iTest Contribution Java EE Samples 08 + ejb + + + + org.apache.tuscany.sca + tuscany-sca-api + 1.6-SNAPSHOT + provided + + + + org.apache.geronimo.specs + geronimo-ejb_3.0_spec + 1.0 + provided + + + org.apache.geronimo.specs + geronimo-annotation_1.0_spec + 1.1.1 + provided + + + + + ${artifactId} + + + org.apache.maven.plugins + maven-ejb-plugin + + 3.0 + + + + + diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldLocal8.java b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldLocal8.java new file mode 100644 index 0000000000..b5224a2319 --- /dev/null +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldLocal8.java @@ -0,0 +1,33 @@ +/* + * 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 sample.ejb3; + +import javax.ejb.Local; + +/** + * HelloworldService EJB interface. + * + * @version $Rev$ $Date$ + */ + +@Local +public interface HelloworldLocal8 { + String getGreetingsLocal(String name); +} diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8.java b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8.java new file mode 100644 index 0000000000..e5e9fe6a82 --- /dev/null +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8.java @@ -0,0 +1,33 @@ +/* + * 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 sample.ejb3; + +import javax.ejb.Remote; + +/** + * HelloworldService EJB interface. + * + * @version $Rev$ $Date$ + */ + +@Remote +public interface HelloworldService8 { + String getGreetings(String name); +} diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8Bean.java b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8Bean.java new file mode 100644 index 0000000000..6d90aaead1 --- /dev/null +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/java/sample/ejb3/HelloworldService8Bean.java @@ -0,0 +1,46 @@ +/** + * 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 sample.ejb3; + +import javax.ejb.Stateless; + +//import org.osoa.sca.annotations.Reference; + +/** + * HelloworldService EJB implementation SCA enhancement + + */ +@Stateless +public class HelloworldService8Bean implements HelloworldService8, HelloworldLocal8 { + + //@Reference + //protected HelloworldService8 hwReference; + + public String getGreetings(String name) { + String greeting = "Hello remote " + name; + System.out.println(greeting); + return greeting; + } + + public String getGreetingsLocal(String name) { + String greeting = "Hello local " + name; + System.out.println(greeting); + return greeting; + } + +} diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/resources/META-INF/openejb-jar.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/resources/META-INF/openejb-jar.xml new file mode 100644 index 0000000000..db36c4b140 --- /dev/null +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-enhanced/src/main/resources/META-INF/openejb-jar.xml @@ -0,0 +1,32 @@ + + + + + + test + itest-contribution-jee-samples-08-ejb-enhanced + 1.0 + jar + + + + + + diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-nonenhanced/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-nonenhanced/pom.xml index 74034924d3..29690543e8 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-nonenhanced/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/ejb-nonenhanced/pom.xml @@ -27,8 +27,8 @@ ../pom.xml - itest-contribution-jee-samples-7-ejb-nonenhanced - Apache Tuscany SCA iTest Contribution Java EE Samples 7 + itest-contribution-jee-samples-07-ejb-nonenhanced + Apache Tuscany SCA iTest Contribution Java EE Samples 07 ejb diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/pom.xml index 25c1caeee1..bb7194c6ba 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/pom.xml @@ -43,6 +43,7 @@ war-nonenhanced war-appcomp-contrib-implicit ejb-nonenhanced + ejb-enhanced ejb-appcomp-contrib-implicit ear-nonenhanced ear-appcomp-contrib-implicit diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/scajar-ear-nonenhanced/src/main/resources/helloworld.composite b/branches/sca-java-1.x/itest/contribution-jee-samples/scajar-ear-nonenhanced/src/main/resources/helloworld.composite index e665eb5d3e..79c9dd3243 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/scajar-ear-nonenhanced/src/main/resources/helloworld.composite +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/scajar-ear-nonenhanced/src/main/resources/helloworld.composite @@ -24,7 +24,7 @@ - + diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/scazip-war-appcomp/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/scazip-war-appcomp/pom.xml index 127bd0ee49..7ddfdb5d4e 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/scazip-war-appcomp/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/scazip-war-appcomp/pom.xml @@ -25,8 +25,8 @@ 1.6-SNAPSHOT ../../pom.xml - itest-contribution-jee-samples-4-scazip-war-appcomp - Apache Tuscany SCA iTest Contribution Java EE Samples 4 + itest-contribution-jee-samples-04-scazip-war-appcomp + Apache Tuscany SCA iTest Contribution Java EE Samples 04 diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/war-appcomp-contrib-implicit/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/war-appcomp-contrib-implicit/pom.xml index b87309fd0a..4129a0702b 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/war-appcomp-contrib-implicit/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/war-appcomp-contrib-implicit/pom.xml @@ -27,8 +27,8 @@ ../pom.xml - itest-contribution-jee-samples-6-war-appcomp-contrib-implicit - Apache Tuscany SCA iTest Contribution Java EE Samples 6 + itest-contribution-jee-samples-06-war-appcomp-contrib-implicit + Apache Tuscany SCA iTest Contribution Java EE Samples 06 war diff --git a/branches/sca-java-1.x/itest/contribution-jee-samples/war-nonenhanced/pom.xml b/branches/sca-java-1.x/itest/contribution-jee-samples/war-nonenhanced/pom.xml index 12ad438d41..26f996bd6a 100644 --- a/branches/sca-java-1.x/itest/contribution-jee-samples/war-nonenhanced/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee-samples/war-nonenhanced/pom.xml @@ -27,8 +27,8 @@ ../pom.xml - itest-contribution-jee-samples-1-war-nonenhanced - Apache Tuscany SCA iTest Contribution Java EE Samples 1 + itest-contribution-jee-samples-01-war-nonenhanced + Apache Tuscany SCA iTest Contribution Java EE Samples 01 war diff --git a/branches/sca-java-1.x/itest/contribution-jee/pom.xml b/branches/sca-java-1.x/itest/contribution-jee/pom.xml index c00792cbc5..b9751b582e 100644 --- a/branches/sca-java-1.x/itest/contribution-jee/pom.xml +++ b/branches/sca-java-1.x/itest/contribution-jee/pom.xml @@ -112,25 +112,32 @@ org.apache.tuscany.sca - itest-contribution-jee-samples-1-war-nonenhanced + itest-contribution-jee-samples-01-war-nonenhanced 1.6-SNAPSHOT war org.apache.tuscany.sca - itest-contribution-jee-samples-6-war-appcomp-contrib-implicit + itest-contribution-jee-samples-06-war-appcomp-contrib-implicit 1.6-SNAPSHOT war org.apache.tuscany.sca - itest-contribution-jee-samples-7-ejb-nonenhanced + itest-contribution-jee-samples-07-ejb-nonenhanced 1.6-SNAPSHOT ejb + + org.apache.tuscany.sca + itest-contribution-jee-samples-08-ejb-enhanced + 1.6-SNAPSHOT + ejb + + org.apache.tuscany.sca itest-contribution-jee-samples-12-ejb-appcomp-contrib-implicit diff --git a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipEjbAppcompTestCase.java b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipEjbAppcompTestCase.java index d8a49ec8a4..8ff51ca85a 100644 --- a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipEjbAppcompTestCase.java +++ b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipEjbAppcompTestCase.java @@ -82,7 +82,7 @@ public class SCAZipEjbAppcompTestCase { * */ @Test - public void testSCAJarEarNonenhanced() throws Exception { + public void testSCAZipEjbAppcomp() throws Exception { URL contributionLocation = new File("../contribution-jee-samples/scazip-ejb-appcomp/target/itest-contribution-jee-samples-10-scazip-ejb-appcomp.zip").toURL(); Contribution contribution = contributionService.contribute(CONTRIBUTION_001_ID, contributionLocation, false); diff --git a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipWarAppcompTestCase.java b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipWarAppcompTestCase.java index 216eb45bc9..211f51c9bd 100644 --- a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipWarAppcompTestCase.java +++ b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/SCAZipWarAppcompTestCase.java @@ -86,7 +86,7 @@ public class SCAZipWarAppcompTestCase { @Test public void testSCAJarEarNonenhanced() throws Exception { - URL contributionLocation = new File("../contribution-jee-samples/scazip-war-appcomp/target/itest-contribution-jee-samples-4-scazip-war-appcomp.zip").toURL(); + URL contributionLocation = new File("../contribution-jee-samples/scazip-war-appcomp/target/itest-contribution-jee-samples-04-scazip-war-appcomp.zip").toURL(); Contribution contribution = contributionService.contribute(CONTRIBUTION_001_ID, contributionLocation, false); Assert.assertNotNull(contribution); diff --git a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WARAppcompContribImplicitTestCase.java b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WARAppcompContribImplicitTestCase.java index a59c6839fe..7696b64f9c 100644 --- a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WARAppcompContribImplicitTestCase.java +++ b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WARAppcompContribImplicitTestCase.java @@ -78,7 +78,7 @@ public class WARAppcompContribImplicitTestCase { */ @Test public void testWARAppcompContribImplicit() throws Exception { - URL contributionLocation = new File("../contribution-jee-samples/war-appcomp-contrib-implicit/target/itest-contribution-jee-samples-6-war-appcomp-contrib-implicit.war").toURL(); + URL contributionLocation = new File("../contribution-jee-samples/war-appcomp-contrib-implicit/target/itest-contribution-jee-samples-06-war-appcomp-contrib-implicit.war").toURL(); contributionService.contribute(CONTRIBUTION_001_ID, contributionLocation, false); Assert.assertNotNull(contributionService.getContribution(CONTRIBUTION_001_ID)); } diff --git a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WarAppcompTestCase.java b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WarAppcompTestCase.java index 72e2b8bc2e..f54a4f98df 100644 --- a/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WarAppcompTestCase.java +++ b/branches/sca-java-1.x/itest/contribution-jee/src/test/java/org/apache/tuscany/sca/test/contribution/jee/WarAppcompTestCase.java @@ -82,7 +82,7 @@ public class WarAppcompTestCase { @Test public void testEjbAppcom() throws Exception { - URL contributionLocation = new File("../contribution-jee-samples/war-appcomp-contrib-implicit/target/itest-contribution-jee-samples-6-war-appcomp-contrib-implicit.war").toURL(); + URL contributionLocation = new File("../contribution-jee-samples/war-appcomp-contrib-implicit/target/itest-contribution-jee-samples-06-war-appcomp-contrib-implicit.war").toURL(); Contribution contribution = contributionService.contribute(CONTRIBUTION_001_ID, contributionLocation, false); Assert.assertNotNull(contribution); -- cgit v1.2.3