You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2010/01/28 16:02:18 UTC

svn commit: r904113 - in /tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast: ConfigURI.java HazelcastEndpointRegistry.java

Author: antelder
Date: Thu Jan 28 15:02:18 2010
New Revision: 904113

URL: http://svn.apache.org/viewvc?rev=904113&view=rev
Log:
Update to allow the client to share this as a subclass

Modified:
    tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/ConfigURI.java
    tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/HazelcastEndpointRegistry.java

Modified: tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/ConfigURI.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/ConfigURI.java?rev=904113&r1=904112&r2=904113&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/ConfigURI.java (original)
+++ tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/ConfigURI.java Thu Jan 28 15:02:18 2010
@@ -59,6 +59,10 @@
     }
 
     private void parseURI(String uri) {
+        if (uri.startsWith("tuscanyClient:")) {
+            uri = uri.replace("tuscanyClient:", "tuscany:");    
+        }
+        
         if (!uri.startsWith("tuscany:")) {
             throw new IllegalArgumentException("Config URI must start with 'tuscany:'");
         }

Modified: tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/HazelcastEndpointRegistry.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/HazelcastEndpointRegistry.java?rev=904113&r1=904112&r2=904113&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/HazelcastEndpointRegistry.java (original)
+++ tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/HazelcastEndpointRegistry.java Thu Jan 28 15:02:18 2010
@@ -57,10 +57,10 @@
     private List<EndpointListener> listeners = new CopyOnWriteArrayList<EndpointListener>();
 
     private ExtensionPointRegistry registry;
-    private ConfigURI configURI;
+    protected ConfigURI configURI;
 
-    HazelcastInstance hazelcastInstance;
-    Map<Object, Object> map;
+    private HazelcastInstance hazelcastInstance;
+    protected Map<Object, Object> map;
     private List<String> localEndpoints = new ArrayList<String>();;
 
     public HazelcastEndpointRegistry(ExtensionPointRegistry registry,