From 2e0a5f4c1368993c8cf71b9f4b59273a323b9aff Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 28 Jul 2011 11:07:25 +0000 Subject: Recreate 2.0-Beta3 branch from current trunk git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151792 13f79535-47bb-0310-9956-ffa450edef68 --- .../test-domains/MyDomain/domain.properties | 17 ++++++ .../helloworld-contribution.deployable.composite | 29 +++++++++++ .../MyDomain/helloworld-contribution.jar | Bin 0 -> 4788 bytes .../MyDomain/helloworld-contribution.xml | 23 ++++++++ .../resources/test-domains/MyDomain/readme.txt | 8 +++ .../resources/test-domains/NodeXMLDomain/node.xml | 27 ++++++++++ .../test-domains/NodeXMLDomain/readme.txt | 2 + .../test/resources/test-domains/default/readme.txt | 4 ++ .../test-domains/default/sample-helloworld.jar | Bin 0 -> 4808 bytes .../test-domains/dependencies/export1.jar | Bin 0 -> 2270 bytes .../test-domains/dependencies/export2.jar | Bin 0 -> 2269 bytes .../test-domains/dependencies/import1.dependencies | 19 +++++++ .../test-domains/dependencies/import1.jar | Bin 0 -> 3969 bytes .../test-domains/dependencies/import2.dependencies | 19 +++++++ .../test-domains/dependencies/import2.jar | Bin 0 -> 3969 bytes .../resources/test-domains/dependencies/readme.txt | 14 +++++ .../resources/test-domains/exploded/readme.txt | 4 ++ .../test-domains/exploded/sample-helloworld.jar | Bin 0 -> 4808 bytes .../sample-helloworld/META-INF/MANIFEST.MF | 14 +++++ .../sample-helloworld/pom.properties | 5 ++ .../sample-helloworld/pom.xml | 58 +++++++++++++++++++++ .../META-INF/sca-contribution.xml | 24 +++++++++ .../sample-helloworld/helloworld.composite | 29 +++++++++++ .../sample-helloworld/sample/Helloworld.class | Bin 0 -> 251 bytes .../sample-helloworld/sample/HelloworldImpl.class | Bin 0 -> 819 bytes 25 files changed, 296 insertions(+) create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/domain.properties create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.deployable.composite create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.jar create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.xml create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/readme.txt create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/node.xml create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/readme.txt create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/readme.txt create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/sample-helloworld.jar create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export1.jar create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export2.jar create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.dependencies create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.jar create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.dependencies create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.jar create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/readme.txt create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/readme.txt create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld.jar create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/MANIFEST.MF create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.properties create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.xml create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/helloworld.composite create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/Helloworld.class create mode 100644 sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/HelloworldImpl.class (limited to 'sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains') diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/domain.properties b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/domain.properties new file mode 100644 index 0000000000..d7ac22d6ad --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/domain.properties @@ -0,0 +1,17 @@ +# +# 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. +# +domainName=foo diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.deployable.composite b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.deployable.composite new file mode 100644 index 0000000000..8c7a789380 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.deployable.composite @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.jar b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.jar new file mode 100644 index 0000000000..5198370d85 Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.jar differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.xml b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.xml new file mode 100644 index 0000000000..2788e14022 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/helloworld-contribution.xml @@ -0,0 +1,23 @@ + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/readme.txt b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/readme.txt new file mode 100644 index 0000000000..10114926c4 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/MyDomain/readme.txt @@ -0,0 +1,8 @@ +A file named domain.properties is used to override the domain name, see in the properties file for what +other properties are supportted. + +Side files are used to modify the helloworld-contribution.jar installed contribution. +- sca-contribution.xml metaData is modified by having a metaData side file named helloworld-contribution.xml +- additional deployment composites are added with files named helloworld-contribution..composite + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/node.xml b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/node.xml new file mode 100644 index 0000000000..1fe1ccff14 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/node.xml @@ -0,0 +1,27 @@ + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/readme.txt b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/readme.txt new file mode 100644 index 0000000000..15dac7bd0c --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/NodeXMLDomain/readme.txt @@ -0,0 +1,2 @@ +The domain directory gets all its config from a config XML file named node.xml, +which may refer to contributions at another location outside of the directory. \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/readme.txt b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/readme.txt new file mode 100644 index 0000000000..34b3e347ff --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/readme.txt @@ -0,0 +1,4 @@ +The simplest domain. Just a directory of contrbutions, +the domain is named with the directory name an the contributions +are installed and all deployables are started. + \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/sample-helloworld.jar b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/sample-helloworld.jar new file mode 100644 index 0000000000..1ea85c8e63 Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/default/sample-helloworld.jar differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export1.jar b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export1.jar new file mode 100644 index 0000000000..b2755b65c5 Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export1.jar differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export2.jar b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export2.jar new file mode 100644 index 0000000000..eec5ded5ee Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/export2.jar differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.dependencies b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.dependencies new file mode 100644 index 0000000000..b7c54895d0 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.dependencies @@ -0,0 +1,19 @@ +# 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. + + export1 + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.jar b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.jar new file mode 100644 index 0000000000..8402f6e3c3 Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import1.jar differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.dependencies b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.dependencies new file mode 100644 index 0000000000..dd3052994c --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.dependencies @@ -0,0 +1,19 @@ +# 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. + +export2 + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.jar b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.jar new file mode 100644 index 0000000000..6667994eb6 Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/import2.jar differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/readme.txt b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/readme.txt new file mode 100644 index 0000000000..fc645c0682 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/dependencies/readme.txt @@ -0,0 +1,14 @@ +Uses the domain.properties file to show explicitly defining a contrbutions dependent contribution URIS. + +Contributions export1.jar and export2.jar both export the Java package "sample" and both have +a class sample.HelloworldImpl but the classes return a sayHello string "Hello 1" in export1.jar +and "Hello 2" in export2.jar. + +Contributions import1.jar and import2.jar both import the package sample and use the +sample.HelloworldImpl class in the component implementation. + +The *.dependencies files explicitly set the dependency URIs used by +Contributions import1.jar and import2.jar, without the explicit property the imports would just t +use the first contribution found that exports the sample package. + +See section 10.2.1 and 10.4 in the Assembly spec. diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/readme.txt b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/readme.txt new file mode 100644 index 0000000000..ea7af2b3f7 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/readme.txt @@ -0,0 +1,4 @@ +A domain directory showing a contribution jar exploded into a contribution directory. +In this case the contribution jar is ignored and the contribution directory is used. +Thats the same approach used for things like Tomcat with exploded webapps and it +enables more easily supporting dynamic updates to individual files in a contribution. \ No newline at end of file diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld.jar b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld.jar new file mode 100644 index 0000000000..1ea85c8e63 Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld.jar differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/MANIFEST.MF b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..c5d7d06f98 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/MANIFEST.MF @@ -0,0 +1,14 @@ +Manifest-Version: 1.0 +Archiver-Version: Plexus Archiver +Created-By: Apache Maven +Built-By: ant +Build-Jdk: 1.6.0_18 +Extension-Name: sample-helloworld +Implementation-Title: Apache Tuscany SCA Sample Helloworld +Implementation-Vendor: The Apache Software Foundation +Implementation-Vendor-Id: org.apache +Implementation-Version: 2.0-SNAPSHOT +Specification-Title: Apache Tuscany SCA Sample Helloworld +Specification-Vendor: The Apache Software Foundation +Specification-Version: 2.0-SNAPSHOT + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.properties b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.properties new file mode 100644 index 0000000000..ff83691757 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Wed May 19 10:03:09 BST 2010 +version=2.0-SNAPSHOT +groupId=org.apache.tuscany.sca +artifactId=sample-helloworld diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.xml b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.xml new file mode 100644 index 0000000000..e480d4f534 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/maven/org.apache.tuscany.sca/sample-helloworld/pom.xml @@ -0,0 +1,58 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 2.0-SNAPSHOT + ../../pom.xml + + + jar + sample-helloworld + Apache Tuscany SCA Sample Helloworld + + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + provided + + + junit + junit + 4.8.1 + test + + + + + ${artifactId} + + + org.apache.tuscany.maven.plugins + maven-tuscany-plugin + 2.0-SNAPSHOT + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/sca-contribution.xml b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..e81e94d9a1 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/helloworld.composite b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/helloworld.composite new file mode 100644 index 0000000000..324395c246 --- /dev/null +++ b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/helloworld.composite @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/Helloworld.class b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/Helloworld.class new file mode 100644 index 0000000000..19c82db88e Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/Helloworld.class differ diff --git a/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/HelloworldImpl.class b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/HelloworldImpl.class new file mode 100644 index 0000000000..575b3370c4 Binary files /dev/null and b/sca-java-2.x/branches/2.0-Beta3/modules/domain-node/src/test/resources/test-domains/exploded/sample-helloworld/sample/HelloworldImpl.class differ -- cgit v1.2.3