updated wiki links in source code to point to the graduated site

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@511784 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-02-26 11:04:18 +00:00
parent 6c57f721c2
commit 3013c2020b
13 changed files with 26 additions and 26 deletions

View File

@ -749,7 +749,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon
/** /**
* Sets the <a * Sets the <a
* href="http://incubator.apache.org/activemq/what-is-the-prefetch-limit-for.html">prefetch * href="http://activemq.apache.org/what-is-the-prefetch-limit-for.html">prefetch
* policy</a> for consumers created by this connection. * policy</a> for consumers created by this connection.
*/ */
public void setPrefetchPolicy(ActiveMQPrefetchPolicy prefetchPolicy) { 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 * Enables/disables whether or not Message properties and MapMessage entries
* support <a * support <a
* href="http://incubator.apache.org/activemq/structured-message-properties-and-mapmessages.html">Nested * href="http://activemq.apache.org/structured-message-properties-and-mapmessages.html">Nested
* Structures</a> of Map and List objects * Structures</a> of Map and List objects
*/ */
public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) { public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) {
@ -1293,7 +1293,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon
/** /**
* Forces the use of <a * Forces the use of <a
* href="http://incubator.apache.org/activemq/async-sends.html">Async Sends</a> * href="http://activemq.apache.org/async-sends.html">Async Sends</a>
* which adds a massive performance boost; but means that the send() method * which adds a massive performance boost; but means that the send() method
* will return immediately whether the message has been sent or not which * will return immediately whether the message has been sent or not which
* could lead to message loss. * 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 * Enables or disables the default setting of whether or not consumers have
* their messages <a * their messages <a
* href="http://incubator.apache.org/activemq/consumer-dispatch-async.html">dispatched * href="http://activemq.apache.org/consumer-dispatch-async.html">dispatched
* synchronously or asynchronously by the broker</a>. * synchronously or asynchronously by the broker</a>.
* *
* For non-durable topics for example we typically dispatch synchronously by * For non-durable topics for example we typically dispatch synchronously by

View File

@ -292,7 +292,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne
/** /**
* Sets the <a * Sets the <a
* href="http://incubator.apache.org/activemq/configuring-transports.html">connection * href="http://activemq.apache.org/configuring-transports.html">connection
* URL</a> used to connect to the ActiveMQ broker. * URL</a> used to connect to the ActiveMQ broker.
*/ */
public void setBrokerURL(String brokerURL) { public void setBrokerURL(String brokerURL) {
@ -392,7 +392,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne
/** /**
* Sets the <a * Sets the <a
* href="http://incubator.apache.org/activemq/what-is-the-prefetch-limit-for.html">prefetch * href="http://activemq.apache.org/what-is-the-prefetch-limit-for.html">prefetch
* policy</a> for consumers created by this connection. * policy</a> for consumers created by this connection.
*/ */
public void setPrefetchPolicy(ActiveMQPrefetchPolicy prefetchPolicy) { public void setPrefetchPolicy(ActiveMQPrefetchPolicy prefetchPolicy) {
@ -417,7 +417,7 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne
/** /**
* Forces the use of <a * Forces the use of <a
* href="http://incubator.apache.org/activemq/async-sends.html">Async Sends</a> * href="http://activemq.apache.org/async-sends.html">Async Sends</a>
* which adds a massive performance boost; but means that the send() method * which adds a massive performance boost; but means that the send() method
* will return immediately whether the message has been sent or not which * will return immediately whether the message has been sent or not which
* could lead to message loss. * 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 * Enables or disables the default setting of whether or not consumers have
* their messages <a * their messages <a
* href="http://incubator.apache.org/activemq/consumer-dispatch-async.html">dispatched * href="http://activemq.apache.org/consumer-dispatch-async.html">dispatched
* synchronously or asynchronously by the broker</a>. * synchronously or asynchronously by the broker</a>.
* *
* For non-durable topics for example we typically dispatch synchronously by * 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 * Enables/disables whether or not Message properties and MapMessage entries
* support <a * support <a
* href="http://incubator.apache.org/activemq/structured-message-properties-and-mapmessages.html">Nested * href="http://activemq.apache.org/structured-message-properties-and-mapmessages.html">Nested
* Structures</a> of Map and List objects * Structures</a> of Map and List objects
*/ */
public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) { public void setNestedMapAndListEnabled(boolean structuredMapsEnabled) {

View File

@ -505,7 +505,7 @@ public class BrokerService implements Service, Serializable {
if (broker == null) { if (broker == null) {
log.info("ActiveMQ " + ActiveMQConnectionMetaData.PROVIDER_VERSION + " JMS Message Broker (" log.info("ActiveMQ " + ActiveMQConnectionMetaData.PROVIDER_VERSION + " JMS Message Broker ("
+ getBrokerName() + ") is starting"); + 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(); broker = createBroker();
} }
return broker; return broker;
@ -961,7 +961,7 @@ public class BrokerService implements Service, Serializable {
/** /**
* Sets whether or not * Sets whether or not
* <a href="http://incubator.apache.org/activemq/virtual-destinations.html">Virtual Topics</a> * <a href="http://activemq.apache.org/virtual-destinations.html">Virtual Topics</a>
* should be supported by default if they have not been explicitly configured. * should be supported by default if they have not been explicitly configured.
*/ */
public void setUseVirtualTopics(boolean useVirtualTopics) { public void setUseVirtualTopics(boolean useVirtualTopics) {

View File

@ -48,7 +48,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
/** /**
* Connects a Slave Broker to a Master when using <a * Connects a Slave Broker to a Master when using <a
* href="http://incubator.apache.org/activemq/masterslave.html">Master Slave</a> * href="http://activemq.apache.org/masterslave.html">Master Slave</a>
* for High Availability of messages. * for High Availability of messages.
* *
* @org.apache.xbean.XBean * @org.apache.xbean.XBean

View File

@ -19,7 +19,7 @@ package org.apache.activemq.broker.region.group;
/** /**
* A factory to create instances of {@link SimpleMessageGroupMap} when * A factory to create instances of {@link SimpleMessageGroupMap} when
* implementing the <a * implementing the <a
* href="http://incubator.apache.org/activemq/message-groups.html">Message * href="http://activemq.apache.org/message-groups.html">Message
* Groups</a> functionality. * Groups</a> functionality.
* *
* @org.apache.xbean.XBean * @org.apache.xbean.XBean

View File

@ -18,7 +18,7 @@ package org.apache.activemq.broker.region.group;
/** /**
* A factory to create instances of {@link SimpleMessageGroupMap} when implementing the * A factory to create instances of {@link SimpleMessageGroupMap} when implementing the
* <a href="http://incubator.apache.org/activemq/message-groups.html">Message Groups</a> functionality. * <a href="http://activemq.apache.org/message-groups.html">Message Groups</a> functionality.
* *
* @org.apache.xbean.XBean * @org.apache.xbean.XBean
* *

View File

@ -19,7 +19,7 @@
</head> </head>
<body> <body>
Classes to implement the <a href="http://incubator.apache.org/activemq/message-groups.html">Message Groups</a> feature. Classes to implement the <a href="http://activemq.apache.org/message-groups.html">Message Groups</a> feature.
</body> </body>
</html> </html>

View File

@ -210,7 +210,7 @@ public class PolicyEntry extends DestinationMapEntry{
/** /**
* Sets the factory used to create new instances of {MessageGroupMap} used to implement the <a * Sets the factory used to create new instances of {MessageGroupMap} used to implement the <a
* href="http://incubator.apache.org/activemq/message-groups.html">Message Groups</a> functionality. * href="http://activemq.apache.org/message-groups.html">Message Groups</a> functionality.
*/ */
public void setMessageGroupMapFactory(MessageGroupMapFactory messageGroupMapFactory){ public void setMessageGroupMapFactory(MessageGroupMapFactory messageGroupMapFactory){
this.messageGroupMapFactory=messageGroupMapFactory; this.messageGroupMapFactory=messageGroupMapFactory;

View File

@ -30,7 +30,7 @@ import java.util.Set;
/** /**
* Implements <a * Implements <a
* href="http://incubator.apache.org/activemq/virtual-destinations.html">Virtual * href="http://activemq.apache.org/virtual-destinations.html">Virtual
* Topics</a>. * Topics</a>.
* *
* @org.apache.xbean.XBean * @org.apache.xbean.XBean

View File

@ -23,7 +23,7 @@ import org.springframework.beans.factory.InitializingBean;
* A <a href="http://www.springframework.org/">Spring</a> enhanced connection * A <a href="http://www.springframework.org/">Spring</a> enhanced connection
* factory which will automatically use the Spring bean name as the clientIDPrefix property * factory which will automatically use the Spring bean name as the clientIDPrefix property
* so that connections created have client IDs related to your Spring.xml file for * so that connections created have client IDs related to your Spring.xml file for
* easier comprehension from <a href="http://incubator.apache.org/activemq/jmx.html">JMX</a>. * easier comprehension from <a href="http://activemq.apache.org/jmx.html">JMX</a>.
* *
* @org.apache.xbean.XBean element="connectionFactory" * @org.apache.xbean.XBean element="connectionFactory"
* *

View File

@ -23,7 +23,7 @@ import org.springframework.beans.factory.InitializingBean;
* A <a href="http://www.springframework.org/">Spring</a> enhanced XA connection * A <a href="http://www.springframework.org/">Spring</a> enhanced XA connection
* factory which will automatically use the Spring bean name as the clientIDPrefix property * factory which will automatically use the Spring bean name as the clientIDPrefix property
* so that connections created have client IDs related to your Spring.xml file for * so that connections created have client IDs related to your Spring.xml file for
* easier comprehension from <a href="http://incubator.apache.org/activemq/jmx.html">JMX</a>. * easier comprehension from <a href="http://activemq.apache.org/jmx.html">JMX</a>.
* *
* @org.apache.xbean.XBean element="xaConnectionFactory" * @org.apache.xbean.XBean element="xaConnectionFactory"
* *

View File

@ -27,7 +27,7 @@ Welcome to the ActiveMQ Console
</p> </p>
<p> <p>
You can find more information about ActiveMQ on the <a href="http://incubator.apache.org/activemq/">Apache ActiveMQ Site</a> You can find more information about ActiveMQ on the <a href="http://activemq.apache.org/">Apache ActiveMQ Site</a>
</p> </p>
</body> </body>
</html> </html>

View File

@ -8,20 +8,20 @@ Getting Started
To help you get started, try the following links:- To help you get started, try the following links:-
Getting Started Getting Started
http://incubator.apache.org/activemq/getting-started.html http://activemq.apache.org/getting-started.html
Building Building
http://incubator.apache.org/activemq/getting-started.html#GettingStarted-WindowsSourceInstallation http://activemq.apache.org/getting-started.html#GettingStarted-WindowsSourceInstallation
http://incubator.apache.org/activemq/getting-started.html#GettingStarted-UnixSourceInstallation http://activemq.apache.org/getting-started.html#GettingStarted-UnixSourceInstallation
Examples Examples
http://incubator.apache.org/activemq/examples.html http://activemq.apache.org/examples.html
We welcome contributions of all kinds, for details of how you can help We welcome contributions of all kinds, for details of how you can help
http://incubator.apache.org/activemq/contributing.html http://activemq.apache.org/contributing.html
Please refer to the website for details of finding the issue tracker, email lists, wiki or IRC channel Please refer to the website for details of finding the issue tracker, email lists, wiki or IRC channel
http://incubator.apache.org/activemq/ http://activemq.apache.org/
Please help us make Apache ActiveMQ better - we appreciate any feedback you may have. Please help us make Apache ActiveMQ better - we appreciate any feedback you may have.
Enjoy! Enjoy!