[jboss-cvs] JBoss Messaging SVN: r1983 - trunk/src/main/org/jboss/jms/client/plugin.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Jan 18 13:41:54 EST 2007
Author: timfox
Date: 2007-01-18 13:41:53 -0500 (Thu, 18 Jan 2007)
New Revision: 1983
Added:
trunk/src/main/org/jboss/jms/client/plugin/RoundRobinLoadBalancingFactory.java
Removed:
trunk/src/main/org/jboss/jms/client/plugin/RoundRobbinLoadBalancingFactory.java
Modified:
trunk/src/main/org/jboss/jms/client/plugin/LoadBalancingFactory.java
Log:
Incorrect spelling
Modified: trunk/src/main/org/jboss/jms/client/plugin/LoadBalancingFactory.java
===================================================================
--- trunk/src/main/org/jboss/jms/client/plugin/LoadBalancingFactory.java 2007-01-18 18:13:54 UTC (rev 1982)
+++ trunk/src/main/org/jboss/jms/client/plugin/LoadBalancingFactory.java 2007-01-18 18:41:53 UTC (rev 1983)
@@ -41,7 +41,7 @@
// Static ---------------------------------------------------------------------------------------
- static LoadBalancingFactory theInstance = new RoundRobbinLoadBalancingFactory();
+ static LoadBalancingFactory theInstance = new RoundRobinLoadBalancingFactory();
// Constructors ---------------------------------------------------------------------------------
Deleted: trunk/src/main/org/jboss/jms/client/plugin/RoundRobbinLoadBalancingFactory.java
===================================================================
--- trunk/src/main/org/jboss/jms/client/plugin/RoundRobbinLoadBalancingFactory.java 2007-01-18 18:13:54 UTC (rev 1982)
+++ trunk/src/main/org/jboss/jms/client/plugin/RoundRobbinLoadBalancingFactory.java 2007-01-18 18:41:53 UTC (rev 1983)
@@ -1,61 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-
-package org.jboss.jms.client.plugin;
-
-import org.jboss.jms.delegate.ConnectionFactoryDelegate;
-
-/**
- * @author <a href="mailto:clebert.suconic at jboss.org">Clebert Suconic</a>
- * @version <tt>$Revision$</tt>
- * <p/>
- * $Id$
- */
-public class RoundRobbinLoadBalancingFactory extends LoadBalancingFactory
-{
-
- // Constants ------------------------------------------------------------------------------------
-
- private static final long serialVersionUID = -6304457304470491564L;
-
- // Attributes -----------------------------------------------------------------------------------
-
- // Static ---------------------------------------------------------------------------------------
-
- // Constructors ---------------------------------------------------------------------------------
-
- // Public ---------------------------------------------------------------------------------------
-
- public LoadBalancingPolicy createLoadBalancingPolicy(ConnectionFactoryDelegate[] view)
- {
- return new RoundRobinLoadBalancingPolicy(view);
- }
-
- // Package protected ----------------------------------------------------------------------------
-
- // Protected ------------------------------------------------------------------------------------
-
- // Private --------------------------------------------------------------------------------------
-
- // Inner classes --------------------------------------------------------------------------------
-
-}
Copied: trunk/src/main/org/jboss/jms/client/plugin/RoundRobinLoadBalancingFactory.java (from rev 1982, trunk/src/main/org/jboss/jms/client/plugin/RoundRobbinLoadBalancingFactory.java)
===================================================================
--- trunk/src/main/org/jboss/jms/client/plugin/RoundRobinLoadBalancingFactory.java (rev 0)
+++ trunk/src/main/org/jboss/jms/client/plugin/RoundRobinLoadBalancingFactory.java 2007-01-18 18:41:53 UTC (rev 1983)
@@ -0,0 +1,61 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.jms.client.plugin;
+
+import org.jboss.jms.delegate.ConnectionFactoryDelegate;
+
+/**
+ * @author <a href="mailto:clebert.suconic at jboss.org">Clebert Suconic</a>
+ * @version <tt>$Revision$</tt>
+ * <p/>
+ * $Id$
+ */
+public class RoundRobinLoadBalancingFactory extends LoadBalancingFactory
+{
+
+ // Constants ------------------------------------------------------------------------------------
+
+ private static final long serialVersionUID = -6304457304470491564L;
+
+ // Attributes -----------------------------------------------------------------------------------
+
+ // Static ---------------------------------------------------------------------------------------
+
+ // Constructors ---------------------------------------------------------------------------------
+
+ // Public ---------------------------------------------------------------------------------------
+
+ public LoadBalancingPolicy createLoadBalancingPolicy(ConnectionFactoryDelegate[] view)
+ {
+ return new RoundRobinLoadBalancingPolicy(view);
+ }
+
+ // Package protected ----------------------------------------------------------------------------
+
+ // Protected ------------------------------------------------------------------------------------
+
+ // Private --------------------------------------------------------------------------------------
+
+ // Inner classes --------------------------------------------------------------------------------
+
+}
More information about the jboss-cvs-commits
mailing list