summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2012-02-16 15:38:02 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2012-02-16 15:38:02 +0000
commit6a5618b2741471546e0b0885e1758c391837dff6 (patch)
tree4ce17155a4e4e9046d4cc1355042ac35d96209a2 /sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client
parent498901ee4d30917ba1fd696e75b61ce3aea79c29 (diff)
Rename beta3 tag to final name
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1245031 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client')
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/pom.xml49
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/client/impl/ClientImpl.java119
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/intf/ServiceIntf.java42
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/types/Name.java42
-rw-r--r--sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/resources/helloworld-client.composite44
5 files changed, 0 insertions, 296 deletions
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/pom.xml b/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/pom.xml
deleted file mode 100644
index 0791af8c0c..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/pom.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?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>itest-data-copy</artifactId>
- <version>2.0-Beta3</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>itest-data-copy-client</artifactId>
- <name>Apache Tuscany SCA iTest Data-Copy Client</name>
-
- <dependencies>
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>itest-data-copy-common</artifactId>
- <version>2.0-Beta3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-sca-api</artifactId>
- <version>2.0-Beta3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-databinding</artifactId>
- <version>2.0-Beta3</version>
- </dependency>
- </dependencies>
-</project>
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/client/impl/ClientImpl.java b/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/client/impl/ClientImpl.java
deleted file mode 100644
index 5ae417b845..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/client/impl/ClientImpl.java
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * 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 itest.client.impl;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNotSame;
-import static org.junit.Assert.assertTrue;
-
-import java.io.StringReader;
-
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-
-import itest.common.intf.ClientIntf;
-import itest.privatecopy.intf.ServiceIntf;
-import itest.privatecopy.types.Name;
-
-import org.oasisopen.sca.annotation.Reference;
-import org.w3c.dom.Document;
-import org.w3c.dom.Node;
-import org.xml.sax.InputSource;
-
-public class ClientImpl implements ClientIntf {
-
- @Reference
- public ServiceIntf service;
-
- @Override
- public void callJAXBCrossContribution() {
- Name name = new Name();
- name.setFirstName("Leora");
- name.setLastName("Mayora");
- Name retVal = service.greet(name);
- assertEquals("Hi Leora", retVal.getFirstName());
- assertEquals("Ms. Mayora", retVal.getLastName());
- }
-
- @Override
- public void callObjectGraphCheck(int caseNumber) {
- switch (caseNumber) {
- case 1:
- Name name1 = new Name();
- name1.setFirstName("First");
- name1.setLastName("Last");
- boolean retVal1 = service.areNamesTheSameObjects(name1, name1);
- assertTrue(retVal1);
- break;
- case 2:
- Name name2a = new Name();
- name2a.setFirstName("First");
- name2a.setLastName("Last");
- Name name2b = new Name();
- name2b.setFirstName("First");
- name2b.setLastName("Last");
- boolean retVal2 = service.areNamesTheSameObjects(name2a, name2b);
- assertFalse(retVal2);
- break;
-
- }
- }
-
- @Override
- public void callJSON() {
- Name name = new Name();
- name.setFirstName("Jason");
- name.setLastName("Nosaj");
- String retVal = service.greetJSON(name);
- assertEquals("good", retVal);
- }
-
- @Override
- public void callSDO() {
- Name name = new Name();
- name.setFirstName("SDO");
- name.setLastName("ODS");
- service.greetSDO(name);
- //assertEquals("good", retVal);
- }
-
- @Override
- public void testRoundTripDOMIdentity() {
- try {
- DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
- factory.setNamespaceAware(true);
- DocumentBuilder builder = factory.newDocumentBuilder();
-
- String nameString = "<?xml version=\"1.0\" ?>" +
- "<name>BOB</name>";
- InputSource is = new InputSource( new StringReader(nameString) );
- Document doc = builder.parse(is);
- Node name = doc.getDocumentElement();
- Node retVal = service.greetDOM(name);
- assertNotSame("PBV should result in different object", name, retVal);
- } catch (Exception e) {
- throw new RuntimeException(e);
- }
-
- }
-
-
-}
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/intf/ServiceIntf.java b/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/intf/ServiceIntf.java
deleted file mode 100644
index a554461f26..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/intf/ServiceIntf.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * 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 itest.privatecopy.intf;
-
-import javax.xml.ws.RequestWrapper;
-import javax.xml.ws.ResponseWrapper;
-
-import org.apache.tuscany.sca.databinding.annotation.DataBinding;
-import org.oasisopen.sca.annotation.Remotable;
-import org.w3c.dom.Node;
-
-import itest.privatecopy.types.Name;
-
-@Remotable
-public interface ServiceIntf {
- Name greet(Name name);
- boolean areNamesTheSameObjects(Name name1, Name name2);
- String greetJSON(Name name);
- void greetSDO(Name name);
-
-// @RequestWrapper(localName = "greetDOM", targetNamespace = "http://intf/internal/itest/", className = "org.w3c.dom.Node")
-// @ResponseWrapper(localName = "greetDOMResponse", targetNamespace = "http://intf/internal/itest/", className = "org.w3c.dom.Node")
-// @DataBinding("org.w3c.dom.Node")
- Node greetDOM(Node name);
-}
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/types/Name.java b/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/types/Name.java
deleted file mode 100644
index b8ef3e0305..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/java/itest/privatecopy/types/Name.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * 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 itest.privatecopy.types;
-
-public class Name implements java.io.Serializable {
-
- public Name() {
- super();
- }
- private String firstName;
- private String lastName;
-
- public void setLastName(String lastName) {
- this.lastName = lastName;
- }
- public String getLastName() {
- return lastName;
- }
- public void setFirstName(String firstName) {
- this.firstName = firstName;
- }
- public String getFirstName() {
- return firstName;
- }
-}
-
diff --git a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/resources/helloworld-client.composite b/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/resources/helloworld-client.composite
deleted file mode 100644
index 461ec33c89..0000000000
--- a/sca-java-2.x/tags/2.0-Beta3-RC2/testing/itest/data-copy/client/src/main/resources/helloworld-client.composite
+++ /dev/null
@@ -1,44 +0,0 @@
-<?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://docs.oasis-open.org/ns/opencsa/sca/200912"
-xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
- targetNamespace="http://itest"
- name="ClientComposite">
-
- <component name="ClientSCA">
- <implementation.java class="itest.client.impl.ClientImpl"/>
- <reference name="service" target="Service"/>
- </component>
-
- <component name="ClientWS">
- <implementation.java class="itest.client.impl.ClientImpl"/>
- <reference name="service">
- <binding.ws uri="http://localhost:8085/Service/ServiceIntf"/>
- </reference>
- </component>
-
- <component name="ClientRMI">
- <implementation.java class="itest.client.impl.ClientImpl"/>
- <reference name="service">
- <tuscany:binding.rmi name="rmi" uri="rmi://localhost:8099/Service"/>
- </reference>
- </component>
-
-</composite>