Author: fhanik Date: Fri May 5 16:48:52 2006 New Revision: 400210 URL: http://svn.apache.org/viewcvs?rev=400210&view=rev Log: remove domain setters
Modified: tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/membership/McastService.java Modified: tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/membership/McastService.java URL: http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/membership/McastService.java?rev=400210&r1=400209&r2=400210&view=diff ============================================================================== --- tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/membership/McastService.java (original) +++ tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/membership/McastService.java Fri May 5 16:48:52 2006 @@ -100,7 +100,6 @@ * <BR/>All are required<BR /> * 1. mcastPort - the port to listen to<BR> * 2. mcastAddress - the mcast group address<BR> - * 3. mcastClusterDomain - the mcast cluster domain<BR> * 4. bindAddress - the bind address if any - only one that can be null<BR> * 5. memberDropTime - the time a member is gone before it is considered gone.<BR> * 6. mcastFrequency - the frequency of sending messages<BR> @@ -111,7 +110,6 @@ public void setProperties(Properties properties) { hasProperty(properties,"mcastPort"); hasProperty(properties,"mcastAddress"); - hasProperty(properties,"mcastClusterDomain"); hasProperty(properties,"memberDropTime"); hasProperty(properties,"mcastFrequency"); hasProperty(properties,"tcpListenPort"); @@ -174,14 +172,6 @@ return properties.getProperty("mcastBindAddress"); } - public void setMcastClusterDomain(String clusterDomain) { - properties.setProperty("mcastClusterDomain", clusterDomain); - } - - public String getMcastClusterDomain() { - return properties.getProperty("mcastClusterDomain"); - } - public void setMcastPort(int port) { properties.setProperty("mcastPort", String.valueOf(port)); } @@ -240,7 +230,6 @@ return; } String host = getProperties().getProperty("tcpListenHost"); - String domain = getProperties().getProperty("mcastClusterDomain"); int port = Integer.parseInt(getProperties().getProperty("tcpListenPort")); if ( localMember == null ) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]