diff --git a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java index 9fcc262ddf..a9c607ac75 100755 --- a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java +++ b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnection.java @@ -749,7 +749,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Sets the prefetch + * href="http://activemq.apache.org/what-is-the-prefetch-limit-for.html">prefetch * policy for consumers created by this connection. */ public void setPrefetchPolicy(ActiveMQPrefetchPolicy prefetchPolicy) { @@ -850,7 +850,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Enables/disables whether or not Message properties and MapMessage entries * support Nested + * href="http://activemq.apache.org/structured-message-properties-and-mapmessages.html">Nested * Structures of Map and List objects */ public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) { @@ -1293,7 +1293,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Forces the use of Async Sends + * href="http://activemq.apache.org/async-sends.html">Async Sends * which adds a massive performance boost; but means that the send() method * will return immediately whether the message has been sent or not which * could lead to message loss. @@ -1685,7 +1685,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon /** * Enables or disables the default setting of whether or not consumers have * their messages dispatched + * href="http://activemq.apache.org/consumer-dispatch-async.html">dispatched * synchronously or asynchronously by the broker. * * For non-durable topics for example we typically dispatch synchronously by diff --git a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java index 8dbc7ea814..85cf6f9c71 100755 --- a/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/ActiveMQConnectionFactory.java @@ -292,7 +292,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Sets the connection + * href="http://activemq.apache.org/configuring-transports.html">connection * URL used to connect to the ActiveMQ broker. */ public void setBrokerURL(String brokerURL) { @@ -392,7 +392,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Sets the prefetch + * href="http://activemq.apache.org/what-is-the-prefetch-limit-for.html">prefetch * policy for consumers created by this connection. */ public void setPrefetchPolicy(ActiveMQPrefetchPolicy prefetchPolicy) { @@ -417,7 +417,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Forces the use of Async Sends + * href="http://activemq.apache.org/async-sends.html">Async Sends * which adds a massive performance boost; but means that the send() method * will return immediately whether the message has been sent or not which * could lead to message loss. @@ -581,7 +581,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Enables or disables the default setting of whether or not consumers have * their messages dispatched + * href="http://activemq.apache.org/consumer-dispatch-async.html">dispatched * synchronously or asynchronously by the broker. * * For non-durable topics for example we typically dispatch synchronously by @@ -653,7 +653,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne /** * Enables/disables whether or not Message properties and MapMessage entries * support Nested + * href="http://activemq.apache.org/structured-message-properties-and-mapmessages.html">Nested * Structures of Map and List objects */ public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) { diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java b/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java index e660754760..12d9649c25 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/BrokerService.java @@ -505,7 +505,7 @@ public class BrokerService implements Service, Serializable { if (broker == null) { log.info("ActiveMQ " + ActiveMQConnectionMetaData.PROVIDER_VERSION + " JMS Message Broker (" + getBrokerName() + ") is starting"); - log.info("For help or more information please see: http://incubator.apache.org/activemq/"); + log.info("For help or more information please see: http://activemq.apache.org/"); broker = createBroker(); } return broker; @@ -961,7 +961,7 @@ public class BrokerService implements Service, Serializable { /** * Sets whether or not - * Virtual Topics + * Virtual Topics * should be supported by default if they have not been explicitly configured. */ public void setUseVirtualTopics(boolean useVirtualTopics) { diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java b/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java index df0bae9975..25229a5f0e 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/ft/MasterConnector.java @@ -48,7 +48,7 @@ import java.util.concurrent.atomic.AtomicBoolean; /** * Connects a Slave Broker to a Master when using Master Slave + * href="http://activemq.apache.org/masterslave.html">Master Slave * for High Availability of messages. * * @org.apache.xbean.XBean diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java index 80f90a90b1..3c0fa559fe 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/MessageGroupHashBucketFactory.java @@ -19,7 +19,7 @@ package org.apache.activemq.broker.region.group; /** * A factory to create instances of {@link SimpleMessageGroupMap} when * implementing the Message + * href="http://activemq.apache.org/message-groups.html">Message * Groups functionality. * * @org.apache.xbean.XBean diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java index a4a50a10d3..670fd54525 100644 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/SimpleMessageGroupMapFactory.java @@ -18,7 +18,7 @@ package org.apache.activemq.broker.region.group; /** * A factory to create instances of {@link SimpleMessageGroupMap} when implementing the - * Message Groups functionality. + * Message Groups functionality. * * @org.apache.xbean.XBean * diff --git a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html index cfb750c4c4..4271db889a 100755 --- a/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html +++ b/activemq-core/src/main/java/org/apache/activemq/broker/region/group/package.html @@ -19,7 +19,7 @@
- Classes to implement the Message Groups feature. + Classes to implement the Message Groups feature.