Return-Path: Delivered-To: apmail-tuscany-commits-archive@www.apache.org Received: (qmail 15213 invoked from network); 13 May 2010 13:56:56 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 13 May 2010 13:56:56 -0000 Received: (qmail 40713 invoked by uid 500); 13 May 2010 13:56:56 -0000 Delivered-To: apmail-tuscany-commits-archive@tuscany.apache.org Received: (qmail 40693 invoked by uid 500); 13 May 2010 13:56:56 -0000 Mailing-List: contact commits-help@tuscany.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tuscany.apache.org Delivered-To: mailing list commits@tuscany.apache.org Received: (qmail 40686 invoked by uid 99); 13 May 2010 13:56:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 May 2010 13:56:56 +0000 X-ASF-Spam-Status: No, hits=-1478.5 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 May 2010 13:56:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C680723889ED; Thu, 13 May 2010 13:56:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r943887 - /tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast-client/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/client/HazelcastClientEndpointRegistry.java Date: Thu, 13 May 2010 13:56:34 -0000 To: commits@tuscany.apache.org From: antelder@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100513135634.C680723889ED@eris.apache.org> Author: antelder Date: Thu May 13 13:56:34 2010 New Revision: 943887 URL: http://svn.apache.org/viewvc?rev=943887&view=rev Log: Set the domain name frm the properties uri config Modified: tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast-client/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/client/HazelcastClientEndpointRegistry.java Modified: tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast-client/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/client/HazelcastClientEndpointRegistry.java URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast-client/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/client/HazelcastClientEndpointRegistry.java?rev=943887&r1=943886&r2=943887&view=diff ============================================================================== --- tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast-client/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/client/HazelcastClientEndpointRegistry.java (original) +++ tuscany/sca-java-2.x/trunk/modules/endpoint-hazelcast-client/src/main/java/org/apache/tuscany/sca/endpoint/hazelcast/client/HazelcastClientEndpointRegistry.java Thu May 13 13:56:34 2010 @@ -80,6 +80,7 @@ public class HazelcastClientEndpointRegi if (rc.getWKAs().size() < 1) { throw new IllegalArgumentException("Must specify remote IP address(es) for domain"); } + this.domainURI = rc.getUserid(); // TODO: update to have bothe domain and userid this.hazelcastClient = HazelcastClient.newHazelcastClient(rc.getUserid(), rc.getPassword(), rc.getWKAs().toArray(new String[0])); }