summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-08-24 19:38:12 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-08-24 19:38:12 +0000
commit1dd5d7fb7e6f91b81cb3c771a5e83be5e1e65e2a (patch)
tree3d49f9301fa9c1942692205036c567808c14c17d /sca-java-1.x
parent00f574ed6c10359933ec1ba19e6a56df175041fe (diff)
Merge revision 942356 from trunk into the 1.6.1 branch
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@988686 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/JavaCustomerComponentImpl.java4
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerComponentImpl.java4
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerImpl.java4
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryComponentImpl.java4
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java4
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiVersionedCustomerImpl.java4
6 files changed, 18 insertions, 6 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/JavaCustomerComponentImpl.java b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/JavaCustomerComponentImpl.java
index 80346311b1..28353267aa 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/JavaCustomerComponentImpl.java
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/JavaCustomerComponentImpl.java
@@ -19,6 +19,8 @@
package supplychain.customer;
import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
import org.osoa.sca.annotations.Reference;
import org.osoa.sca.annotations.Scope;
@@ -39,7 +41,7 @@ public class JavaCustomerComponentImpl implements Customer {
private Retailer retailer3;
- private static ArrayList<String> outstandingOrders = new ArrayList<String>();
+ private static List<String> outstandingOrders = Collections.synchronizedList(new ArrayList<String>());
@Reference
public void setRetailer1(Retailer retailer1) {
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerComponentImpl.java b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerComponentImpl.java
index a879505610..c273f7b174 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerComponentImpl.java
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerComponentImpl.java
@@ -20,6 +20,8 @@ package supplychain.customer;
import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
import org.osgi.service.component.ComponentContext;
@@ -36,7 +38,7 @@ public class OSGiCustomerComponentImpl implements Customer {
private Retailer retailer2;
private Retailer retailer3;
- private static ArrayList<String> outstandingOrders = new ArrayList<String>();
+ private static List<String> outstandingOrders = Collections.synchronizedList(new ArrayList<String>());
public OSGiCustomerComponentImpl() {
System.out.println("Created OSGiCustomerComponentImpl " + this);
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerImpl.java b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerImpl.java
index 546971860e..6d9b03a94d 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerImpl.java
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerImpl.java
@@ -20,6 +20,8 @@ package supplychain.customer;
import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
import org.osoa.sca.annotations.AllowsPassByReference;
@@ -32,7 +34,7 @@ import supplychain.retailer.Retailer;
@AllowsPassByReference
public class OSGiCustomerImpl extends OSGiBundleImpl implements Customer {
- private ArrayList<String> outstandingOrders = new ArrayList<String>();
+ private List<String> outstandingOrders = Collections.synchronizedList(new ArrayList<String>());
private Retailer retailer1;
private Retailer retailer2;
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryComponentImpl.java b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryComponentImpl.java
index 593e55f3f5..606f6b9684 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryComponentImpl.java
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryComponentImpl.java
@@ -20,6 +20,8 @@ package supplychain.customer;
import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
import org.osgi.service.component.ComponentContext;
@@ -36,7 +38,7 @@ public class OSGiCustomerWithQueryComponentImpl implements Customer {
private Retailer retailer;
private RetailerQuery retailerQuery;
- private static ArrayList<String> outstandingOrders = new ArrayList<String>();
+ private static List<String> outstandingOrders = Collections.synchronizedList(new ArrayList<String>());
public OSGiCustomerWithQueryComponentImpl() {
System.out.println("Created OSGiCustomerWithQueryComponentImpl " + this);
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
index 18483817ad..ef9dc8c16a 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
@@ -20,6 +20,8 @@ package supplychain.customer;
import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
import supplychain.OSGiBundleImpl;
import supplychain.retailer.Retailer;
@@ -30,7 +32,7 @@ import supplychain.retailer.RetailerQuery;
*/
public class OSGiCustomerWithQueryImpl extends OSGiBundleImpl implements Customer {
- private static ArrayList<String> outstandingOrders = new ArrayList<String>();
+ private static List<String> outstandingOrders = Collections.synchronizedList(new ArrayList<String>());
private Retailer retailer;
private RetailerQuery retailerQuery;
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiVersionedCustomerImpl.java b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiVersionedCustomerImpl.java
index 599ab51a50..ebb9bc56ef 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiVersionedCustomerImpl.java
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiVersionedCustomerImpl.java
@@ -20,7 +20,9 @@ package supplychain.customer;
import java.util.ArrayList;
+import java.util.Collections;
import java.util.Hashtable;
+import java.util.List;
import org.osgi.framework.BundleContext;
@@ -32,7 +34,7 @@ import supplychain.retailer.Retailer;
*/
public class OSGiVersionedCustomerImpl extends OSGiBundleImpl implements Customer {
- private static ArrayList<String> outstandingOrders = new ArrayList<String>();
+ private static List<String> outstandingOrders = Collections.synchronizedList(new ArrayList<String>());
private Retailer retailer1;
private Retailer retailer2;