summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/build.xml25
-rw-r--r--sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/pom.xml48
-rw-r--r--sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/java/scatours/client/TestClient.java40
-rw-r--r--sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/META-INF/sca-contribution.xml24
-rw-r--r--sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/client.composite28
5 files changed, 165 insertions, 0 deletions
diff --git a/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/build.xml b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/build.xml
new file mode 100644
index 0000000000..94f9290854
--- /dev/null
+++ b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/build.xml
@@ -0,0 +1,25 @@
+<!--
+ * 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 name="scatours-contribution-databinding-client" default="compile">
+ <import file="../../antdefs.xml"/>
+ <path id="compile-path">
+ <pathelement path="../payment-java/target/scatours-contribution-payment-java.jar"/>
+ </path>
+</project>
diff --git a/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/pom.xml b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/pom.xml
new file mode 100644
index 0000000000..91e283d742
--- /dev/null
+++ b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/pom.xml
@@ -0,0 +1,48 @@
+<?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>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>scatours</artifactId>
+ <version>1.0</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>scatours-contribution-databinding-client</artifactId>
+ <name>Apache Tuscany SCA Tours Databinding Client Contribution</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca-api</artifactId>
+ <version>${tuscany.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>scatours-contribution-payment-java</artifactId>
+ <version>${pom.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+</project>
diff --git a/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/java/scatours/client/TestClient.java b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/java/scatours/client/TestClient.java
new file mode 100644
index 0000000000..f598a6f056
--- /dev/null
+++ b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/java/scatours/client/TestClient.java
@@ -0,0 +1,40 @@
+/*
+ * 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 scatours.client;
+
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Service;
+
+import com.tuscanyscatours.payment.Payment;
+
+@Service(Runnable.class)
+public class TestClient {
+ @Reference
+ protected Payment payment;
+
+ public TestClient() {
+ }
+
+ public void run() {
+ System.out.println("Call Payment component");
+ System.out.println(payment.makePaymentMember("c-0", 100.00f));
+ System.out.println(payment.makePaymentMember("c-1", 100.00f));
+ }
+}
diff --git a/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/META-INF/sca-contribution.xml b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/META-INF/sca-contribution.xml
new file mode 100644
index 0000000000..87e8535676
--- /dev/null
+++ b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/META-INF/sca-contribution.xml
@@ -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://www.osoa.org/xmlns/sca/1.0"
+ xmlns:client="http://client.scatours/">
+ <import.java package="com.tuscanyscatours.payment" />
+ <deployable composite="client:Client" />
+</contribution>
diff --git a/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/client.composite b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/client.composite
new file mode 100644
index 0000000000..e19697290c
--- /dev/null
+++ b/sca-java-1.x/tags/travelsample-1.0-RC2/contributions/databinding-client/src/main/resources/client.composite
@@ -0,0 +1,28 @@
+<?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.
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://client.scatours/"
+ name="Client">
+
+ <component name="TestClient">
+ <implementation.java class="scatours.client.TestClient" />
+ <reference name="payment" target="Payment" />
+ </component>
+</composite>