From a40e527938d76ba71f211da7e327adb50384ba69 Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:26:33 +0000 Subject: Moving 1.x tags git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835157 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/services/Cart.java | 28 ------ .../src/test/java/services/Item.java | 66 -------------- .../test/java/services/ShoppingCartClientImpl.java | 57 ------------ .../src/test/java/services/ShoppingCartImpl.java | 100 --------------------- .../src/test/resources/assembly/assets.xml | 38 -------- .../src/test/resources/assembly/client.xml | 34 ------- .../src/test/resources/assembly/store.xml | 34 ------- .../resources/assets/META-INF/sca-contribution.xml | 22 ----- .../resources/client/META-INF/sca-contribution.xml | 24 ----- .../src/test/resources/client/client.composite | 35 -------- .../resources/store/META-INF/sca-contribution.xml | 24 ----- .../src/test/resources/store/store.composite | 32 ------- 12 files changed, 494 deletions(-) delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Cart.java delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Item.java delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartClientImpl.java delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartImpl.java delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/assets.xml delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/client.xml delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/store.xml delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assets/META-INF/sca-contribution.xml delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/META-INF/sca-contribution.xml delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/client.composite delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/META-INF/sca-contribution.xml delete mode 100644 tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/store.composite (limited to 'tags/java/sca/1.5-RC0/samples/domain-management/src/test') diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Cart.java b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Cart.java deleted file mode 100644 index 9e6226d963..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Cart.java +++ /dev/null @@ -1,28 +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 services; - -import org.apache.tuscany.sca.data.collection.Collection; -import org.osoa.sca.annotations.Remotable; - -@Remotable -public interface Cart extends Collection { - -} diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Item.java b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Item.java deleted file mode 100644 index 81cefcdbef..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/Item.java +++ /dev/null @@ -1,66 +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 services; - - -public class Item { - private String name; - private String price; - private String origin; - - public Item() { - } - - public Item(String name, String price, String origin) { - this.name = name; - this.price = price; - this.origin = origin; - } - - public Item(String name, String price) { - this.name = name; - this.price = price; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getPrice() { - return price; - } - - public void setPrice(String price) { - this.price = price; - } - - public String getOrigin() { - return origin; - } - - public void setOrigin(String origin) { - this.origin = origin; - } - -} diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartClientImpl.java b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartClientImpl.java deleted file mode 100644 index c32853b3a9..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartClientImpl.java +++ /dev/null @@ -1,57 +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 services; - -import org.apache.tuscany.sca.data.collection.Entry; -import org.apache.tuscany.sca.data.collection.NotFoundException; -import org.osoa.sca.annotations.Reference; -import org.osoa.sca.annotations.Scope; - -@Scope("COMPOSITE") -public class ShoppingCartClientImpl implements Cart { - - @Reference - public Cart cart; - - public Entry[] getAll() { - return cart.getAll(); - } - - public Item get(String key) throws NotFoundException { - return cart.get(key); - } - - public String post(String key, Item item) { - return cart.post(key, item); - } - - public void put(String key, Item item) throws NotFoundException { - cart.put(key, item); - } - - public void delete(String key) throws NotFoundException { - cart.delete(key); - } - - public Entry[] query(String queryString) { - return cart.query(queryString); - } - -} diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartImpl.java b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartImpl.java deleted file mode 100644 index 30abfe77a0..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/java/services/ShoppingCartImpl.java +++ /dev/null @@ -1,100 +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 services; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.UUID; - -import org.apache.tuscany.sca.data.collection.Entry; -import org.apache.tuscany.sca.data.collection.NotFoundException; -import org.osoa.sca.annotations.Init; -import org.osoa.sca.annotations.Scope; - -@Scope("COMPOSITE") -public class ShoppingCartImpl implements Cart { - - private Map cart; - - @Init - public void init() { - cart = new HashMap(); - } - - public Entry[] getAll() { - Entry[] entries = new Entry[cart.size()]; - int i = 0; - for (Map.Entry e: cart.entrySet()) { - entries[i++] = new Entry(e.getKey(), e.getValue()); - } - return entries; - } - - public Item get(String key) throws NotFoundException { - Item item = cart.get(key); - if (item == null) { - throw new NotFoundException(key); - } else { - return item; - } - } - - public String post(String key, Item item) { - if (key == null) { - key ="cart-" + UUID.randomUUID().toString(); - } - cart.put(key, item); - return key; - } - - public void put(String key, Item item) throws NotFoundException { - if (!cart.containsKey(key)) { - throw new NotFoundException(key); - } - cart.put(key, item); - } - - public void delete(String key) throws NotFoundException { - if (key == null || key.equals("")) { - cart.clear(); - } else { - Item item = cart.remove(key); - if (item == null) - throw new NotFoundException(key); - } - } - - public Entry[] query(String queryString) { - List> entries = new ArrayList>(); - if (queryString.startsWith("name=")) { - String name = queryString.substring(5); - for (Map.Entry e: cart.entrySet()) { - Item item = e.getValue(); - if (item.getName().equals(name)) { - entries.add(new Entry(e.getKey(), e.getValue())); - } - } - } - return entries.toArray(new Entry[entries.size()]); - } - -} diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/assets.xml b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/assets.xml deleted file mode 100644 index 10693a89e6..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/assets.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - assets - false - - jar - - - - - target/test-classes/assets - / - - - target/test-classes/services - /services - - - - diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/client.xml b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/client.xml deleted file mode 100644 index 5b34693bee..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/client.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - client - false - - jar - - - - - target/test-classes/client - / - - - - diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/store.xml b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/store.xml deleted file mode 100644 index d19b7eb161..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assembly/store.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - store - false - - jar - - - - - target/test-classes/store - / - - - - diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assets/META-INF/sca-contribution.xml b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assets/META-INF/sca-contribution.xml deleted file mode 100644 index 33fe814c3a..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/assets/META-INF/sca-contribution.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - \ No newline at end of file diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/META-INF/sca-contribution.xml b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/META-INF/sca-contribution.xml deleted file mode 100644 index 14e1cdb672..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/META-INF/sca-contribution.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/client.composite b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/client.composite deleted file mode 100644 index 1279b319c4..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/client/client.composite +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/META-INF/sca-contribution.xml b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/META-INF/sca-contribution.xml deleted file mode 100644 index 52348106f2..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/META-INF/sca-contribution.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/store.composite b/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/store.composite deleted file mode 100644 index d4f18771d8..0000000000 --- a/tags/java/sca/1.5-RC0/samples/domain-management/src/test/resources/store/store.composite +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - -- cgit v1.2.3