http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/configuration-index.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/configuration-index.xml 
b/docs/user-manual/en/configuration-index.xml
index 48304ea..3d1a9ad 100644
--- a/docs/user-manual/en/configuration-index.xml
+++ b/docs/user-manual/en/configuration-index.xml
@@ -207,7 +207,7 @@
                             </entry>
                             <entry>String</entry>
                             <entry>the name of the load balancing class</entry>
-                            
<entry>org.apache.activemq6.api.core.client.loadbalance.RoundRobinConnectionLoadBalancingPolicy</entry>
+                            
<entry>org.apache.activemq.api.core.client.loadbalance.RoundRobinConnectionLoadBalancingPolicy</entry>
                         </row>
                         <row>
                             <entry 
id="configuration.connection-factory.connection-ttl">
@@ -608,7 +608,7 @@
 
 <programlisting>
 &lt;mask-password>true&lt;/mask-password>
-&lt;password-codec>org.apache.activemq6.utils.DefaultSensitiveStringCodec;key=hello
 world&lt;/password-codec></programlisting>
+&lt;password-codec>org.apache.activemq.utils.DefaultSensitiveStringCodec;key=hello
 world&lt;/password-codec></programlisting>
 
            <para>When so configured, the HornetQ security manager will 
initialize a DefaultSensitiveStringCodec with the parameters
            "key"->"hello world", then use it to decode all the masked 
passwords in this configuration file.</para>
@@ -626,12 +626,12 @@
               <section><title>The built-in Decoder</title>
 
               <para>Whenever no decoder is specified in the configuration 
file, the built-in decoder is used. The class name for the built-in
-              decoder is 
org.apache.activemq6.utils.DefaultSensitiveStringCodec. It has both encoding 
and decoding capabilities. It uses java.crypto.Cipher
+              decoder is 
org.apache.activemq.utils.DefaultSensitiveStringCodec. It has both encoding and 
decoding capabilities. It uses java.crypto.Cipher
               utilities to encrypt (encode) a plaintext password and decrypt a 
mask string using same algorithm. Using this decoder/encoder is
               pretty straightforward. To get a mask for a password, just run 
the following in command line:</para>
 
 <programlisting>
-java org.apache.activemq6.utils.DefaultSensitiveStringCodec "your plaintext 
password"</programlisting>
+java org.apache.activemq.utils.DefaultSensitiveStringCodec "your plaintext 
password"</programlisting>
 
               <para>Make sure the classpath is correct. You'll get something 
like</para>
 
@@ -668,7 +668,7 @@ Encoded password: 80cf731af62c290</programlisting>
               <section><title>Implementing your own codecs</title>
 
               <para>To use a different decoder than the built-in one, you 
either pick one from existing libraries or you implement it yourself.
-              All decoders must implement the 
<literal>org.apache.activemq6.utils.SensitiveDataCodec&lt;T></literal> 
interface:</para>
+              All decoders must implement the 
<literal>org.apache.activemq.utils.SensitiveDataCodec&lt;T></literal> 
interface:</para>
 
 <programlisting>
 public interface SensitiveDataCodec&lt;T>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/configuring-transports.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/configuring-transports.xml 
b/docs/user-manual/en/configuring-transports.xml
index bb45f01..b3919c3 100644
--- a/docs/user-manual/en/configuring-transports.xml
+++ b/docs/user-manual/en/configuring-transports.xml
@@ -38,7 +38,7 @@
 &lt;acceptors>
    &lt;acceptor name="netty">
       &lt;factory-class>
-         org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory
+         org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory
       &lt;/factory-class>
       &lt;param key="port" value="5446"/>
    &lt;/acceptor>
@@ -78,7 +78,7 @@
 &lt;connectors>
    &lt;connector name="netty">
       &lt;factory-class>
-         org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory
+         org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory
       &lt;/factory-class>
       &lt;param key="port" value="5446"/>
    &lt;/connector>
@@ -135,12 +135,12 @@
         <programlisting>
 Map&lt;String, Object> connectionParams = new HashMap&lt;String, Object>();
 
-connectionParams.put(org.apache.activemq6.core.remoting.impl.netty.TransportConstants.PORT_PROP_NAME,
+connectionParams.put(org.apache.activemq.core.remoting.impl.netty.TransportConstants.PORT_PROP_NAME,
                     5446);
 
 TransportConfiguration transportConfiguration =
     new TransportConfiguration(
-    "org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory",
+    "org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory",
     connectionParams);
 
 ServerLocator locator = 
HornetQClient.createServerLocatorWithoutHA(transportConfiguration);
@@ -156,11 +156,11 @@ etc</programlisting>
         <programlisting>
 Map&lt;String, Object> connectionParams = new HashMap&lt;String, Object>();
 
-connectionParams.put(org.apache.activemq6.core.remoting.impl.netty.TransportConstants.PORT_PROP_NAME,
 5446);
+connectionParams.put(org.apache.activemq.core.remoting.impl.netty.TransportConstants.PORT_PROP_NAME,
 5446);
 
 TransportConfiguration transportConfiguration =
     new TransportConfiguration(
-    "org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory",
+    "org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory",
     connectionParams);
 
 ConnectionFactory connectionFactory = 
HornetQJMSClient.createConnectionFactoryWithoutHA(JMSFactoryType.CF, 
transportConfiguration);
@@ -205,7 +205,7 @@ etc</programlisting>
                 with firewall policies that typically only allow connections 
to be initiated in one
                 direction.</para>
             <para>All the valid Netty transport keys are defined in the class 
<literal
-                    
>org.apache.activemq6.core.remoting.impl.netty.TransportConstants</literal>. 
Most
+                    
>org.apache.activemq.core.remoting.impl.netty.TransportConstants</literal>. Most
                 parameters can be used either with acceptors or connectors, 
some only work with
                 acceptors. The following parameters can be used to configure 
Netty for simple
                 TCP:</para>
@@ -342,7 +342,7 @@ buffer_size = bandwidth * RTT.</programlisting>
                         downloaded and used by the client. If the client needs 
to use a different path
                         from that set on the server then it can override the 
server-side setting by either
                         using the customary "javax.net.ssl.keyStore" system 
property or the HornetQ-specific
-                        "org.apache.activemq6.ssl.keyStore" system property. 
The HornetQ-specific system property
+                        "org.apache.activemq.ssl.keyStore" system property. 
The HornetQ-specific system property
                         is useful if another component on client is already 
making use of the standard, Java
                         system property.</para>
                 </listitem>
@@ -356,7 +356,7 @@ buffer_size = bandwidth * RTT.</programlisting>
                         be configured on the server, it is downloaded and used 
by the client.  If the client
                         needs to use a different password from that set on the 
server then it can override
                         the server-side setting by either using the customary 
"javax.net.ssl.keyStorePassword"
-                        system property or the HornetQ-specific 
"org.apache.activemq6.ssl.keyStorePassword" system
+                        system property or the HornetQ-specific 
"org.apache.activemq.ssl.keyStorePassword" system
                         property. The HornetQ-specific system property is 
useful if another component on client
                         is already making use of the standard, Java system 
property.</para>
                 </listitem>
@@ -372,7 +372,7 @@ buffer_size = bandwidth * RTT.</programlisting>
                         used by the client.  If the client needs to use a 
different path
                         from that set on the server then it can override the 
server-side setting by either
                         using the customary "javax.net.ssl.trustStore" system 
property or the HornetQ-specific
-                        "org.apache.activemq6.ssl.trustStore" system property. 
The HornetQ-specific system property
+                        "org.apache.activemq.ssl.trustStore" system property. 
The HornetQ-specific system property
                         is useful if another component on client is already 
making use of the standard, Java
                         system property.</para>
                 </listitem>
@@ -386,7 +386,7 @@ buffer_size = bandwidth * RTT.</programlisting>
                         downloaded and used by the client.   If the client
                         needs to use a different password from that set on the 
server then it can override
                         the server-side setting by either using the customary 
"javax.net.ssl.trustStorePassword"
-                        system property or the HornetQ-specific 
"org.apache.activemq6.ssl.trustStorePassword" system
+                        system property or the HornetQ-specific 
"org.apache.activemq.ssl.trustStorePassword" system
                         property. The HornetQ-specific system property is 
useful if another component on client
                         is already making use of the standard, Java system 
property.</para>
                 </listitem>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/connection-ttl.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/connection-ttl.xml 
b/docs/user-manual/en/connection-ttl.xml
index 3102792..42359e6 100644
--- a/docs/user-manual/en/connection-ttl.xml
+++ b/docs/user-manual/en/connection-ttl.xml
@@ -128,11 +128,11 @@ finally
                 a warning similar to the following in the logs (If you are 
using JMS the warning
                 will involve a JMS connection not a client session):</para>
             <programlisting>
-[Finalizer] 20:14:43,244 WARNING 
[org.apache.activemq6.core.client.impl.DelegatingSession]  I'm closing a 
ClientSession you left open. Please make sure you close all ClientSessions 
explicitly before let
+[Finalizer] 20:14:43,244 WARNING 
[org.apache.activemq.core.client.impl.DelegatingSession]  I'm closing a 
ClientSession you left open. Please make sure you close all ClientSessions 
explicitly before let
 ting them go out of scope!
-[Finalizer] 20:14:43,244 WARNING 
[org.apache.activemq6.core.client.impl.DelegatingSession]  The session you 
didn't close was created here:
+[Finalizer] 20:14:43,244 WARNING 
[org.apache.activemq.core.client.impl.DelegatingSession]  The session you 
didn't close was created here:
 java.lang.Exception
-   at 
org.apache.activemq6.core.client.impl.DelegatingSession.&lt;init>(DelegatingSession.java:83)
+   at 
org.apache.activemq.core.client.impl.DelegatingSession.&lt;init>(DelegatingSession.java:83)
    at org.acme.yourproject.YourClass (YourClass.java:666)</programlisting>
             <para>HornetQ will then close the connection / client session for 
you.</para>
             <para>Note that the log will also tell you the exact line of your 
user code where you
@@ -177,22 +177,22 @@ java.lang.Exception
             are:</para>
         <itemizedlist>
             <listitem>
-                
<para><literal>org.apache.activemq6.core.protocol.core.impl.wireformat.RollbackMessage</literal></para>
+                
<para><literal>org.apache.activemq.core.protocol.core.impl.wireformat.RollbackMessage</literal></para>
             </listitem>
             <listitem>
-               
<para><literal>org.apache.activemq6.core.protocol.core.impl.wireformat.SessionCloseMessage</literal></para>
+               
<para><literal>org.apache.activemq.core.protocol.core.impl.wireformat.SessionCloseMessage</literal></para>
             </listitem>
             <listitem>
-               
<para><literal>org.apache.activemq6.core.protocol.core.impl.wireformat.SessionCommitMessage</literal></para>
+               
<para><literal>org.apache.activemq.core.protocol.core.impl.wireformat.SessionCommitMessage</literal></para>
             </listitem>
             <listitem>
-               
<para><literal>org.apache.activemq6.core.protocol.core.impl.wireformat.SessionXACommitMessage</literal></para>
+               
<para><literal>org.apache.activemq.core.protocol.core.impl.wireformat.SessionXACommitMessage</literal></para>
             </listitem>
             <listitem>
-                
<para><literal>org.apache.activemq6.core.protocol.core.impl.wireformat.SessionXAPrepareMessage</literal></para>
+                
<para><literal>org.apache.activemq.core.protocol.core.impl.wireformat.SessionXAPrepareMessage</literal></para>
             </listitem>
             <listitem>
-               
<para><literal>org.apache.activemq6.core.protocol.core.impl.wireformat.SessionXARollbackMessage</literal></para>
+               
<para><literal>org.apache.activemq.core.protocol.core.impl.wireformat.SessionXARollbackMessage</literal></para>
             </listitem>
         </itemizedlist>
         <para>To disable asynchronous connection execution, set the parameter

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/core-bridges.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/core-bridges.xml 
b/docs/user-manual/en/core-bridges.xml
index c18416a..408de02 100644
--- a/docs/user-manual/en/core-bridges.xml
+++ b/docs/user-manual/en/core-bridges.xml
@@ -57,7 +57,7 @@
    &lt;forwarding-address>jms.queue.mincing-machine&lt;/forwarding-address>
    &lt;filter-string="name='aardvark'"/>
    &lt;transformer-class-name>
-      org.apache.activemq6.jms.example.HatColourChangeTransformer
+      org.apache.activemq.jms.example.HatColourChangeTransformer
    &lt;/transformer-class-name>
    &lt;retry-interval>1000&lt;/retry-interval>
    &lt;ha>true&lt;/ha>
@@ -114,7 +114,7 @@
             <listitem>
                 <para><literal>transformer-class-name</literal>. An optional 
transformer-class-name
                     can be specified. This is the name of a user-defined class 
which implements the
-                        
<literal>org.apache.activemq6.core.server.cluster.Transformer</literal>
+                        
<literal>org.apache.activemq.core.server.cluster.Transformer</literal>
                     interface.</para>
                 <para>If this is specified then the transformer's 
<literal>transform()</literal>
                     method will be invoked with the message before it is 
forwarded. This gives you

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/diverts.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/diverts.xml b/docs/user-manual/en/diverts.xml
index 9e407e9..8d81568 100644
--- a/docs/user-manual/en/diverts.xml
+++ b/docs/user-manual/en/diverts.xml
@@ -67,7 +67,7 @@
    &lt;forwarding-address>jms.queue.priceForwarding&lt;/forwarding-address>
    &lt;filter string="office='New York'"/>
    &lt;transformer-class-name>
-      org.apache.activemq6.jms.example.AddForwardingTimeTransformer
+      org.apache.activemq.jms.example.AddForwardingTimeTransformer
    &lt;/transformer-class-name>
    &lt;exclusive>true&lt;/exclusive>
 &lt;/divert></programlisting>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/duplicate-detection.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/duplicate-detection.xml 
b/docs/user-manual/en/duplicate-detection.xml
index cbed3df..97c7a64 100644
--- a/docs/user-manual/en/duplicate-detection.xml
+++ b/docs/user-manual/en/duplicate-detection.xml
@@ -69,7 +69,7 @@
             set it once in the transaction. If the server detects a duplicate 
message for any
             message in the transaction, then it will ignore the entire 
transaction.</para>
         <para>The name of the property that you set is given by the value of 
<literal
-                
>org.apache.activemq6.api.core.Message.HDR_DUPLICATE_DETECTION_ID</literal>, 
which
+                
>org.apache.activemq.api.core.Message.HDR_DUPLICATE_DETECTION_ID</literal>, 
which
             is <literal>_HQ_DUPL_ID</literal></para>
         <para>The value of the property can be of type 
<literal>byte[]</literal> or <literal
                 >SimpleString</literal> if you're using the core API. If 
you're using JMS it must be
@@ -101,7 +101,7 @@ 
message.setStringProperty(HDR_DUPLICATE_DETECTION_ID.toString(), myUniqueID);
     <section id="duplicate.id.cache">
         <title>Configuring the Duplicate ID Cache</title>
         <para>The server maintains caches of received values of the <literal
-                
>org.apache.activemq6.core.message.impl.HDR_DUPLICATE_DETECTION_ID</literal> 
property
+                
>org.apache.activemq.core.message.impl.HDR_DUPLICATE_DETECTION_ID</literal> 
property
             sent to each address. Each address has its own distinct 
cache.</para>
         <para>The cache is a circular fixed size cache. If the cache has a 
maximum size of <literal
                 >n</literal> elements, then the <literal>n + 1</literal>th id 
stored will overwrite

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/embedding-hornetq.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/embedding-hornetq.xml 
b/docs/user-manual/en/embedding-hornetq.xml
index 5852885..3b8e421 100644
--- a/docs/user-manual/en/embedding-hornetq.xml
+++ b/docs/user-manual/en/embedding-hornetq.xml
@@ -58,7 +58,7 @@
       <literal>hornetq-configuration.xml</literal> in your
       classpath:</para>
         <programlisting>
-import org.apache.activemq6.core.server.embedded.EmbeddedHornetQ;
+import org.apache.activemq.core.server.embedded.EmbeddedHornetQ;
 
 ...
 
@@ -109,7 +109,7 @@ session.close();</programlisting>
       <literal>hornetq-jms.xml</literal> config file.</para>
 
       <programlisting>
-import org.apache.activemq6.jms.server.embedded.EmbeddedJMS;
+import org.apache.activemq.jms.server.embedded.EmbeddedJMS;
 
 ...
 
@@ -149,8 +149,8 @@ Destination destination = jms.lookup("/example/queue");
     would through the main configuration file.</para>
 
     <programlisting>
-import org.apache.activemq6.core.config.Configuration;
-import org.apache.activemq6.core.config.impl.ConfigurationImpl;
+import org.apache.activemq.core.config.Configuration;
+import org.apache.activemq.core.config.impl.ConfigurationImpl;
 
 ...
 
@@ -163,12 +163,12 @@ transports.add(new 
TransportConfiguration(InVMAcceptorFactory.class.getName()));
 config.setAcceptorConfigurations(transports);</programlisting>
 
     <para>You need to instantiate an instance of
-    
<literal>org.apache.activemq6.api.core.server.embedded.EmbeddedHornetQ</literal>
+    
<literal>org.apache.activemq.api.core.server.embedded.EmbeddedHornetQ</literal>
     and add the configuration object to it.</para>
 
     <programlisting>
-import org.apache.activemq6.api.core.server.HornetQ;
-import org.apache.activemq6.core.server.embedded.EmbeddedHornetQ;
+import org.apache.activemq.api.core.server.HornetQ;
+import org.apache.activemq.core.server.embedded.EmbeddedHornetQ;
 
 ...
 
@@ -247,12 +247,12 @@ jmsServer.start();</programlisting>
 &lt;deployment xmlns="urn:jboss:bean-deployer:2.0">
    &lt;!-- The core configuration -->
    &lt;bean name="Configuration" 
-         class="org.apache.activemq6.core.config.impl.FileConfiguration">
+         class="org.apache.activemq.core.config.impl.FileConfiguration">
    &lt;/bean>
 
      &lt;!-- The core server -->
    &lt;bean name="HornetQServer" 
-         class="org.apache.activemq6.core.server.impl.HornetQServerImpl">
+         class="org.apache.activemq.core.server.impl.HornetQServerImpl">
       &lt;constructor>
          &lt;parameter>
             &lt;inject bean="Configuration"/>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/intercepting-operations.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/intercepting-operations.xml 
b/docs/user-manual/en/intercepting-operations.xml
index 5e182cb..e09cd3c 100644
--- a/docs/user-manual/en/intercepting-operations.xml
+++ b/docs/user-manual/en/intercepting-operations.xml
@@ -35,7 +35,7 @@
       <title>Implementing The Interceptors</title>
       <para>An interceptor must implement the <literal>Interceptor 
interface</literal>:</para>
       <programlisting>
-package org.apache.activemq6.api.core.interceptor;
+package org.apache.activemq.api.core.interceptor;
 
 public interface Interceptor
 {   
@@ -58,13 +58,13 @@ public interface Interceptor
           <literal>hornetq-configuration.xml</literal>:</para>
       <programlisting>
 &lt;remoting-incoming-interceptors>
-   
&lt;class-name>org.apache.activemq6.jms.example.LoginInterceptor&lt;/class-name>
-   
&lt;class-name>org.apache.activemq6.jms.example.AdditionalPropertyInterceptor&lt;/class-name>
+   
&lt;class-name>org.apache.activemq.jms.example.LoginInterceptor&lt;/class-name>
+   
&lt;class-name>org.apache.activemq.jms.example.AdditionalPropertyInterceptor&lt;/class-name>
 &lt;/remoting-incoming-interceptors></programlisting>
       <programlisting>
 &lt;remoting-outgoing-interceptors>
-   
&lt;class-name>org.apache.activemq6.jms.example.LogoutInterceptor&lt;/class-name>
-   
&lt;class-name>org.apache.activemq6.jms.example.AdditionalPropertyInterceptor&lt;/class-name>
+   
&lt;class-name>org.apache.activemq.jms.example.LogoutInterceptor&lt;/class-name>
+   
&lt;class-name>org.apache.activemq.jms.example.AdditionalPropertyInterceptor&lt;/class-name>
 &lt;/remoting-outgoing-interceptors></programlisting>
       <para>The interceptors classes (and their dependencies) must be added to 
the server classpath
          to be properly instantiated and called.</para>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/interoperability.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/interoperability.xml 
b/docs/user-manual/en/interoperability.xml
index 6d0f53f..86dadc1 100644
--- a/docs/user-manual/en/interoperability.xml
+++ b/docs/user-manual/en/interoperability.xml
@@ -36,7 +36,7 @@
             parameter set to have <literal>stomp</literal>:</para>
 <programlisting>
 &lt;acceptor name="stomp-acceptor">
-   
&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
+   
&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
    &lt;param key="protocols"  value="STOMP"/>
    &lt;param key="port"  value="61613"/>
 &lt;/acceptor></programlisting>
@@ -90,7 +90,7 @@
         </para>
 <programlisting>
 &lt;acceptor name="stomp-acceptor">
-   
&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
+   
&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
    &lt;param key="protocols"  value="STOMP"/>
    &lt;param key="port"  value="61613"/>
    &lt;param key="connection-ttl"  value="20000"/>
@@ -156,7 +156,7 @@ destination:jms.topic.stocks
             just set the <literal>stomp-enable-message-id</literal> to true. 
For example:</para>
 <programlisting>
 &lt;acceptor name="stomp-acceptor">
-   
&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
+   
&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
    &lt;param key="protocols" value="STOMP"/>
    &lt;param key="port" value="61613"/>
    &lt;param key="stomp-enable-message-id" value="true"/>
@@ -178,7 +178,7 @@ hq-message-id : STOMP12345</programlisting>
             This attribute can be configured inside a stomp acceptor, as a 
parameter. For example: </para>
 <programlisting>
    &lt;acceptor name="stomp-acceptor">
-   
&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
+   
&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
    &lt;param key="protocols" value="STOMP"/>
    &lt;param key="port" value="61613"/>
    &lt;param key="stomp-min-large-message-size" value="10240"/>
@@ -203,7 +203,7 @@ hq-message-id : STOMP12345</programlisting>
             parameter set to <literal>stomp_ws</literal>:</para>
          <programlisting>
 &lt;acceptor name="stomp-ws-acceptor">
-   
&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
+   
&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
    &lt;param key="protocols" value="STOMP_WS"/>
    &lt;param key="port" value="61614"/>
 &lt;/acceptor></programlisting>
@@ -248,7 +248,7 @@ 
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces</programlisting
         specification. To enable AMQP you must configure a Netty Acceptor to 
receive AMQP clients, like so:</para>
         <programlisting>
 &lt;acceptor name="stomp-acceptor">
-&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
+&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
 &lt;param key="protocols"  value="AMQP"/>
 &lt;param key="port"  value="5672"/>
 &lt;/acceptor>
@@ -292,7 +292,7 @@ 
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces</programlisting
         you must configure a Netty Acceptor, like so:</para>
         <programlisting>
 &lt;acceptor name="openwire-acceptor">
-&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
+&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyAcceptorFactory&lt;/factory-class>
 &lt;param key="protocols"  value="OPENWIRE"/>
 &lt;param key="port"  value="61616"/>
 &lt;/acceptor>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/jms-bridge.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/jms-bridge.xml 
b/docs/user-manual/en/jms-bridge.xml
index c31ec70..13d5fb3 100644
--- a/docs/user-manual/en/jms-bridge.xml
+++ b/docs/user-manual/en/jms-bridge.xml
@@ -55,7 +55,7 @@
         <programlisting>
 &lt;?xml version="1.0" encoding="UTF-8"?>
 &lt;deployment xmlns="urn:jboss:bean-deployer:2.0">
-   &lt;bean name="JMSBridge" 
class="org.apache.activemq6.api.jms.bridge.impl.JMSBridgeImpl">
+   &lt;bean name="JMSBridge" 
class="org.apache.activemq.api.jms.bridge.impl.JMSBridgeImpl">
       &lt;!-- HornetQ must be started before the bridge -->
       &lt;depends>HornetQServer&lt;/depends>
       &lt;constructor>
@@ -105,7 +105,7 @@
          &lt;parameter>
             &lt;inject bean="MBeanServer"/>
          &lt;/parameter>
-         &lt;parameter>org.apache.activemq6:service=JMSBridge&lt;/parameter>
+         &lt;parameter>org.apache.activemq:service=JMSBridge&lt;/parameter>
       &lt;/constructor>
       &lt;property name="transactionManager">
          &lt;inject bean="RealTransactionManager"/>
@@ -114,7 +114,7 @@
 
    &lt;!-- SourceCFF describes the ConnectionFactory used to connect to the 
source destination -->
    &lt;bean name="SourceCFF"
-       
class="org.apache.activemq6.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
+       
class="org.apache.activemq.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
       &lt;constructor>
          &lt;parameter>
             &lt;inject bean="JNDI" />
@@ -125,7 +125,7 @@
 
    &lt;!-- TargetCFF describes the ConnectionFactory used to connect to the 
target destination -->
    &lt;bean name="TargetCFF"
-       
class="org.apache.activemq6.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
+       
class="org.apache.activemq.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
       &lt;constructor>
          &lt;parameter>
             &lt;inject bean="JNDI" />
@@ -135,7 +135,7 @@
    &lt;/bean>
 
    &lt;!-- SourceDestinationFactory describes the Destination used as the 
source -->
-   &lt;bean name="SourceDestinationFactory" 
class="org.apache.activemq6.api.jms.bridge.impl.JNDIDestinationFactory">
+   &lt;bean name="SourceDestinationFactory" 
class="org.apache.activemq.api.jms.bridge.impl.JNDIDestinationFactory">
       &lt;constructor>
          &lt;parameter>
             &lt;inject bean="JNDI" />
@@ -145,7 +145,7 @@
    &lt;/bean>
 
    &lt;!-- TargetDestinationFactory describes the Destination used as the 
target -->
-   &lt;bean name="TargetDestinationFactory" 
class="org.apache.activemq6.api.jms.bridge.impl.JNDIDestinationFactory">
+   &lt;bean name="TargetDestinationFactory" 
class="org.apache.activemq.api.jms.bridge.impl.JNDIDestinationFactory">
       &lt;constructor>
          &lt;parameter>
             &lt;inject bean="JNDI" />
@@ -359,7 +359,7 @@
                 HornetQ that looks up the connection factory using JNDI. For 
other Application
                 Servers or JMS providers a new implementation may have to be 
provided. This can
                 easily be done by implementing the interface <literal
-                    
>org.apache.activemq6.jms.bridge.ConnectionFactoryFactory</literal>.</para>
+                    
>org.apache.activemq.jms.bridge.ConnectionFactoryFactory</literal>.</para>
         </section>
         <section>
             <title>Source and Target Destination Factories</title>
@@ -367,7 +367,7 @@
             <para>In the configuration example above, we have used the default 
provided by HornetQ
                 that looks up the destination using JNDI.</para>
             <para>A new implementation can be provided by implementing <literal
-                    
>org.apache.activemq6.jms.bridge.DestinationFactory</literal> interface.</para>
+                    
>org.apache.activemq.jms.bridge.DestinationFactory</literal> interface.</para>
         </section>
         <section id="quality-of-service">
             <title>Quality Of Service</title>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/large-messages.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/large-messages.xml 
b/docs/user-manual/en/large-messages.xml
index d04bcf2..5346c41 100644
--- a/docs/user-manual/en/large-messages.xml
+++ b/docs/user-manual/en/large-messages.xml
@@ -160,7 +160,7 @@ ClientSessionFactory factory = 
HornetQClient.createClientSessionFactory();</prog
                     >ClientMessage</literal> which are also available through 
JMS by the use of
                 object properties.</para>
             <table frame="topbot" id="large-messages.ClientMessageAPI">
-                <title>org.apache.activemq6.api.core.client.ClientMessage 
API</title>
+                <title>org.apache.activemq.api.core.client.ClientMessage 
API</title>
                 <tgroup cols="3">
                     <colspec colname="Name" colnum="1"/>
                     <colspec colname="Descr" colnum="2"/>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/logging.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/logging.xml b/docs/user-manual/en/logging.xml
index 400362f..c65f3e8 100644
--- a/docs/user-manual/en/logging.xml
+++ b/docs/user-manual/en/logging.xml
@@ -43,23 +43,23 @@
                    <entry>Logs any calls not handled by the HornetQ 
loggers</entry>
                </row>
                <row>
-                   <entry>org.apache.activemq6.core.server</entry>
+                   <entry>org.apache.activemq.core.server</entry>
                    <entry>Logs the core server</entry>
                </row>
                <row>
-                   <entry>org.apache.activemq6.utils</entry>
+                   <entry>org.apache.activemq.utils</entry>
                    <entry>Logs utility calls</entry>
                </row>
                <row>
-                   <entry>org.apache.activemq6.journal</entry>
+                   <entry>org.apache.activemq.journal</entry>
                    <entry>Logs Journal calls</entry>
                </row>
                <row>
-                   <entry>org.apache.activemq6.jms</entry>
+                   <entry>org.apache.activemq.jms</entry>
                    <entry>Logs JMS calls</entry>
                </row>
                <row>
-                   <entry>org.apache.activemq6.integration.bootstrap</entry>
+                   <entry>org.apache.activemq.integration.bootstrap</entry>
                    <entry>Logs bootstrap calls</entry>
                </row>
             </tbody>
@@ -91,7 +91,7 @@
    &lt;version>1.3.1.Final&lt;/version>
 &lt;/dependency>
 &lt;dependency>
-   &lt;groupId>org.apache.activemq6&lt;/groupId>
+   &lt;groupId>org.apache.activemq&lt;/groupId>
    &lt;artifactId>hornetq-core-client&lt;/artifactId>
    &lt;version>2.3.0.Final&lt;/version>
 &lt;/dependency></programlisting>
@@ -112,14 +112,14 @@
          The following is a typical <literal>logging.properties for a 
client</literal>
          <programlisting>
 # Root logger option
-loggers=org.jboss.logging,org.apache.activemq6.core.server,org.apache.activemq6.utils,org.apache.activemq6.journal,org.apache.activemq6.jms,org.apache.activemq6.ra
+loggers=org.jboss.logging,org.apache.activemq.core.server,org.apache.activemq.utils,org.apache.activemq.journal,org.apache.activemq.jms,org.apache.activemq.ra
 
 # Root logger level
 logger.level=INFO
 # HornetQ logger levels
-logger.org.apache.activemq6.core.server.level=INFO
-logger.org.apache.activemq6.utils.level=INFO
-logger.org.apache.activemq6.jms.level=DEBUG
+logger.org.apache.activemq.core.server.level=INFO
+logger.org.apache.activemq.utils.level=INFO
+logger.org.apache.activemq.jms.level=DEBUG
 
 # Root logger handlers
 logger.handlers=FILE,CONSOLE

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/management.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/management.xml 
b/docs/user-manual/en/management.xml
index 6403623..b9576a0 100644
--- a/docs/user-manual/en/management.xml
+++ b/docs/user-manual/en/management.xml
@@ -57,11 +57,11 @@
       <itemizedlist>
          <listitem>
             <para><emphasis>Core</emphasis> resources are located in the 
<literal
-                  >org.apache.activemq6.api.core.management</literal> 
package</para>
+                  >org.apache.activemq.api.core.management</literal> 
package</para>
          </listitem>
          <listitem>
             <para><emphasis>JMS</emphasis> resources are located in the 
<literal
-                  >org.apache.activemq6.api.jms.management</literal> 
package</para>
+                  >org.apache.activemq.api.jms.management</literal> 
package</para>
          </listitem>
       </itemizedlist>
       <para>The way to invoke a <emphasis>management operations</emphasis> 
depends whether JMX, core
@@ -87,7 +87,7 @@
                         <literal>createQueue()</literal> or 
<literal>deployQueue()</literal> or
                         <literal>destroyQueue()</literal>)on the <literal
                         >HornetQServerControl</literal> (with the ObjectName 
<literal
-                        
>org.apache.activemq6:module=Core,type=Server</literal> or the resource name 
<literal
+                        >org.apache.activemq:module=Core,type=Server</literal> 
or the resource name <literal
                         >core.server</literal>)</para>
                   <para><literal>createQueue</literal> will fail if the queue 
already exists while
                         <literal>deployQueue</literal> will do nothing.</para>
@@ -144,14 +144,14 @@
                         <literal>createBridge()</literal> and 
<literal>destroyBridge()</literal> 
                         (resp. <literal>createDivert()</literal> and 
<literal>destroyDivert()</literal>) on the <literal
                         >HornetQServerControl</literal> (with the ObjectName 
<literal
-                        
>org.apache.activemq6:module=Core,type=Server</literal> or the resource name 
<literal
+                        >org.apache.activemq:module=Core,type=Server</literal> 
or the resource name <literal
                         >core.server</literal>).</para>
                </listitem>
                <listitem>
                   <para>It is possible to stop the server and force failover 
to occur with any currently attached clients.</para>
                   <para>to do this use the <literal>forceFailover()</literal> 
on the <literal
                         >HornetQServerControl</literal> (with the ObjectName 
<literal
-                        
>org.apache.activemq6:module=Core,type=Server</literal> or the resource name 
<literal
+                        >org.apache.activemq:module=Core,type=Server</literal> 
or the resource name <literal
                         >core.server</literal>) </para>
                   <note>
                      <para>Since this method actually stops the server you 
will probably receive some sort of error
@@ -164,7 +164,7 @@
          <section>
             <title>Core Address Management</title>
             <para>Core addresses can be managed using the 
<literal>AddressControl</literal> class
-               (with the ObjectName 
<literal>org.apache.activemq6:module=Core,type=Address,name="&lt;the
+               (with the ObjectName 
<literal>org.apache.activemq:module=Core,type=Address,name="&lt;the
                   address name>"</literal> or the resource name 
<literal>core.address.&lt;the
                   address name></literal>). </para>
             <itemizedlist>
@@ -181,7 +181,7 @@
             <title>Core Queue Management</title>
             <para>The bulk of the core management API deals with core queues. 
The <literal
                   >QueueControl</literal> class defines the Core queue 
management operations (with
-               the ObjectName 
<literal>org.apache.activemq6:module=Core,type=Queue,address="&lt;the bound
+               the ObjectName 
<literal>org.apache.activemq:module=Core,type=Queue,address="&lt;the bound
                   address>",name="&lt;the queue name>"</literal> or the 
resource name <literal
                   >core.queue.&lt;the queue name></literal>).</para>
             <para>Most of the management operations on queues take either a 
single message ID (e.g.
@@ -268,7 +268,7 @@
                   <para>They can be started or stopped using the 
<literal>start()</literal> or.
                         <literal>stop()</literal> method on the 
<literal>AcceptorControl</literal>
                      class (with the ObjectName <literal
-                        
>org.apache.activemq6:module=Core,type=Acceptor,name="&lt;the acceptor
+                        
>org.apache.activemq:module=Core,type=Acceptor,name="&lt;the acceptor
                         name>"</literal> or the resource name 
<literal>core.acceptor.&lt;the
                         address name></literal>). The acceptors parameters can 
be retrieved using
                      the <literal>AcceptorControl</literal> attributes (see 
<xref
@@ -279,7 +279,7 @@
                   <para>They can be started or stopped using the 
<literal>start()</literal> or
                         <literal>stop()</literal> method on the 
<literal>DivertControl</literal>
                      class (with the ObjectName <literal
-                        
>org.apache.activemq6:module=Core,type=Divert,name=&lt;the divert 
name></literal>
+                        
>org.apache.activemq:module=Core,type=Divert,name=&lt;the divert name></literal>
                      or the resource name <literal>core.divert.&lt;the divert 
name></literal>).
                      Diverts parameters can be retrieved using the 
<literal>DivertControl</literal>
                      attributes (see <xref linkend="diverts"/>)</para>
@@ -289,7 +289,7 @@
                   <para>They can be started or stopped using the 
<literal>start()</literal> (resp.
                         <literal>stop()</literal>) method on the 
<literal>BridgeControl</literal>
                      class (with the ObjectName <literal
-                        
>org.apache.activemq6:module=Core,type=Bridge,name="&lt;the bridge
+                        
>org.apache.activemq:module=Core,type=Bridge,name="&lt;the bridge
                         name>"</literal> or the resource name 
<literal>core.bridge.&lt;the bridge
                         name></literal>). Bridges parameters can be retrieved 
using the <literal
                         >BridgeControl</literal> attributes (see <xref 
linkend="core-bridges"
@@ -300,7 +300,7 @@
                   <para>They can be started or stopped using the 
<literal>start()</literal> or
                         <literal>stop()</literal> method on the <literal
                         >BroadcastGroupControl</literal> class (with the 
ObjectName <literal
-                        
>org.apache.activemq6:module=Core,type=BroadcastGroup,name="&lt;the broadcast 
group
+                        
>org.apache.activemq:module=Core,type=BroadcastGroup,name="&lt;the broadcast 
group
                         name>"</literal> or the resource name <literal
                         >core.broadcastgroup.&lt;the broadcast group 
name></literal>). Broadcast
                      groups parameters can be retrieved using the <literal
@@ -312,7 +312,7 @@
                   <para>They can be started or stopped using the 
<literal>start()</literal> or
                         <literal>stop()</literal> method on the <literal
                         >DiscoveryGroupControl</literal> class (with the 
ObjectName <literal
-                        
>org.apache.activemq6:module=Core,type=DiscoveryGroup,name="&lt;the discovery 
group
+                        
>org.apache.activemq:module=Core,type=DiscoveryGroup,name="&lt;the discovery 
group
                         name>"</literal> or the resource name 
<literal>core.discovery.&lt;the
                         discovery group name></literal>). Discovery groups 
parameters can be
                      retrieved using the 
<literal>DiscoveryGroupControl</literal> attributes (see
@@ -323,7 +323,7 @@
                   <para>They can be started or stopped using the 
<literal>start()</literal> or
                         <literal>stop()</literal> method on the <literal
                         >ClusterConnectionControl</literal> class (with the 
ObjectName <literal
-                        
>org.apache.activemq6:module=Core,type=ClusterConnection,name="&lt;the cluster
+                        
>org.apache.activemq:module=Core,type=ClusterConnection,name="&lt;the cluster
                         connection name>"</literal> or the resource name 
<literal
                         >core.clusterconnection.&lt;the cluster connection 
name></literal>).
                      Cluster connections parameters can be retrieved using the 
<literal
@@ -341,7 +341,7 @@
             <title>JMS Server Management</title>
             <para>JMS Resources (connection factories and destinations) can be 
created using the
                   <literal>JMSServerControl</literal> class (with the 
ObjectName <literal
-                  >org.apache.activemq6:module=JMS,type=Server</literal> or 
the resource name <literal
+                  >org.apache.activemq:module=JMS,type=Server</literal> or the 
resource name <literal
                   >jms.server</literal>).</para>
             <itemizedlist>
                <listitem>
@@ -395,7 +395,7 @@
             <title>JMS ConnectionFactory Management</title>
             <para>JMS Connection Factories can be managed using the <literal
                   >ConnectionFactoryControl</literal> class (with the 
ObjectName <literal
-                  
>org.apache.activemq6:module=JMS,type=ConnectionFactory,name="&lt;the 
connection factory
+                  
>org.apache.activemq:module=JMS,type=ConnectionFactory,name="&lt;the connection 
factory
                   name>"</literal> or the resource name 
<literal>jms.connectionfactory.&lt;the
                   connection factory name></literal>).</para>
             <itemizedlist>
@@ -413,7 +413,7 @@
          <section>
             <title>JMS Queue Management</title>
             <para>JMS queues can be managed using the 
<literal>JMSQueueControl</literal> class (with
-               the ObjectName 
<literal>org.apache.activemq6:module=JMS,type=Queue,name="&lt;the queue
+               the ObjectName 
<literal>org.apache.activemq:module=JMS,type=Queue,name="&lt;the queue
                   name>"</literal> or the resource name 
<literal>jms.queue.&lt;the queue
                   name></literal>). </para>
             <para><emphasis>The management operations on a JMS queue are very 
similar to the
@@ -488,7 +488,7 @@
          <section>
             <title>JMS Topic Management</title>
             <para>JMS Topics can be managed using the 
<literal>TopicControl</literal> class (with
-               the ObjectName 
<literal>org.apache.activemq6:module=JMS,type=Topic,name="&lt;the topic
+               the ObjectName 
<literal>org.apache.activemq:module=JMS,type=Topic,name="&lt;the topic
                   name>"</literal> or the resource name 
<literal>jms.topic.&lt;the topic
                   name></literal>).</para>
             <itemizedlist>
@@ -524,16 +524,16 @@
             
url="http://www.oracle.com/technetwork/java/javase/tech/javamanagement-140525.html";
          >JMX</ulink>. </para>
       <para>The management API is exposed by HornetQ using MBeans interfaces. 
HornetQ registers its
-         resources with the domain 
<literal>org.apache.activemq6</literal>.</para>
+         resources with the domain 
<literal>org.apache.activemq</literal>.</para>
       <para>For example, the <literal>ObjectName</literal> to manage a JMS 
Queue <literal
             >exampleQueue</literal> is:</para>
       <programlisting>
-org.apache.activemq6:module=JMS,type=Queue,name="exampleQueue"</programlisting>
+org.apache.activemq:module=JMS,type=Queue,name="exampleQueue"</programlisting>
       <para>and the MBean is:</para>
       <programlisting>
-org.apache.activemq6.api.jms.management.JMSQueueControl</programlisting>
+org.apache.activemq.api.jms.management.JMSQueueControl</programlisting>
       <para>The MBean's <literal>ObjectName</literal> are built using the 
helper class <literal
-            
>org.apache.activemq6.api.core.management.ObjectNameBuilder</literal>. You can 
also use <literal
+            
>org.apache.activemq.api.core.management.ObjectNameBuilder</literal>. You can 
also use <literal
             >jconsole</literal> to find the <literal>ObjectName</literal> of 
the MBeans you want to
          manage. </para>
       <para>Managing HornetQ using JMX is identical to management of any Java 
Applications using
@@ -554,13 +554,13 @@ 
org.apache.activemq6.api.jms.management.JMSQueueControl</programlisting>
             properties must be set in <literal>run.sh</literal> or 
<literal>run.bat</literal>
             scripts).</para>
          </note>
-         <para>By default, HornetQ server uses the JMX domain 
"org.apache.activemq6". To manage several
+         <para>By default, HornetQ server uses the JMX domain 
"org.apache.activemq". To manage several
             HornetQ servers from the <emphasis>same</emphasis> MBeanServer, 
the JMX domain can be
             configured for each individual HornetQ server by setting 
<literal>jmx-domain</literal>
             in <literal>hornetq-configuration.xml</literal>: </para>
          <programlisting>
 &lt;!-- use a specific JMX domain for HornetQ MBeans -->
-&lt;jmx-domain>my.org.apache.activemq6&lt;/jmx-domain></programlisting>
+&lt;jmx-domain>my.org.apache.activemq&lt;/jmx-domain></programlisting>
          <section>
             <title>MBeanServer configuration</title>
             <para>When HornetQ is run in standalone, it uses the Java Virtual 
Machine's <literal
@@ -613,7 +613,7 @@ 
org.apache.activemq6.api.jms.management.JMSQueueControl</programlisting>
       <para>A <literal>ClientConsumer</literal> can be used to consume the 
management reply and
          retrieve the result of the operation (if any) stored in the reply's 
body. For portability,
          results are returned as a <ulink url="http://json.org";>JSON</ulink> 
String rather than Java
-         Serialization (the 
<literal>org.apache.activemq6.api.core.management.ManagementHelper</literal> can
+         Serialization (the 
<literal>org.apache.activemq.api.core.management.ManagementHelper</literal> can
          be used to convert the JSON string to Java objects).</para>
       <para>These steps can be simplified to make it easier to invoke 
management operations using
          Core messages:</para>
@@ -627,7 +627,7 @@ 
org.apache.activemq6.api.jms.management.JMSQueueControl</programlisting>
          </listitem>
          <listitem>
             <para>Use the helper class <literal
-                  
>org.apache.activemq6.api.core.management.ManagementHelper</literal> to fill 
the message
+                  
>org.apache.activemq.api.core.management.ManagementHelper</literal> to fill the 
message
                with the management properties</para>
          </listitem>
          <listitem>
@@ -635,7 +635,7 @@ 
org.apache.activemq6.api.jms.management.JMSQueueControl</programlisting>
          </listitem>
          <listitem>
             <para>Use the helper class <literal
-                  
>org.apache.activemq6.api.core.management.ManagementHelper</literal> to 
retrieve the
+                  
>org.apache.activemq.api.core.management.ManagementHelper</literal> to retrieve 
the
                operation result from the management reply</para>
          </listitem>
       </orderedlist>
@@ -653,7 +653,7 @@ System.out.println("There are " + count + " messages in 
exampleQueue");</program
       <para>Management operation name and parameters must conform to the Java 
interfaces defined in
          the <literal>management</literal> packages.</para>
       <para>Names of the resources are built using the helper class <literal
-            >org.apache.activemq6.api.core.management.ResourceNames</literal> 
and are straightforward
+            >org.apache.activemq.api.core.management.ResourceNames</literal> 
and are straightforward
             (<literal>core.queue.exampleQueue</literal> for the Core Queue 
<literal
             >exampleQueue</literal>, <literal>jms.topic.exampleTopic</literal> 
for the JMS Topic
             <literal>exampleTopic</literal>, etc.).</para>
@@ -697,7 +697,7 @@ Queue managementQueue = 
HornetQJMSClient.createQueue("hornetq.management");</pro
          </listitem>
          <listitem>
             <para>use the helper class <literal
-                  
>org.apache.activemq6.api.jms.management.JMSManagementHelper</literal> to fill 
the message
+                  
>org.apache.activemq.api.jms.management.JMSManagementHelper</literal> to fill 
the message
                with the management properties</para>
          </listitem>
          <listitem>
@@ -705,7 +705,7 @@ Queue managementQueue = 
HornetQJMSClient.createQueue("hornetq.management");</pro
          </listitem>
          <listitem>
             <para>use the helper class <literal
-                  
>org.apache.activemq6.api.jms.management.JMSManagementHelper</literal> to 
retrieve the
+                  
>org.apache.activemq.api.jms.management.JMSManagementHelper</literal> to 
retrieve the
                operation result from the management reply</para>
          </listitem>
       </orderedlist>
@@ -756,11 +756,11 @@ System.out.println("There are " + count + " messages in 
exampleQueue");</program
             notifications can be received by subscribing to 2 MBeans:</para>
          <itemizedlist>
             <listitem>
-               
<para><literal>org.apache.activemq6:module=Core,type=Server</literal> for 
notifications on
+               
<para><literal>org.apache.activemq:module=Core,type=Server</literal> for 
notifications on
                      <emphasis>Core</emphasis> resources</para>
             </listitem>
             <listitem>
-               
<para><literal>org.apache.activemq6:module=JMS,type=Server</literal> for 
notifications on
+               
<para><literal>org.apache.activemq:module=JMS,type=Server</literal> for 
notifications on
                      <emphasis>JMS</emphasis> resources</para>
             </listitem>
          </itemizedlist>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/persistence.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/persistence.xml 
b/docs/user-manual/en/persistence.xml
index e512bae..14d1078 100644
--- a/docs/user-manual/en/persistence.xml
+++ b/docs/user-manual/en/persistence.xml
@@ -324,12 +324,12 @@
             HornetQ, and you can use the export/import tool for that purpose. 
The export/import are
             classes located at the hornetq-core.jar, you can export the 
journal as a text file by
             using this command:</para>
-        <para><literal>java -cp hornetq-core.jar 
org.apache.activemq6.core.journal.impl.ExportJournal
+        <para><literal>java -cp hornetq-core.jar 
org.apache.activemq.core.journal.impl.ExportJournal
                 &lt;JournalDirectory> &lt;JournalPrefix> &lt;FileExtension> 
&lt;FileSize>
                 &lt;FileOutput></literal></para>
         <para>To import the file as binary data on the journal (Notice you 
also require
             netty.jar):</para>
-        <para><literal>java -cp hornetq-core.jar:netty.jar 
org.apache.activemq6.core.journal.impl.ImportJournal
+        <para><literal>java -cp hornetq-core.jar:netty.jar 
org.apache.activemq.core.journal.impl.ImportJournal
                 &lt;JournalDirectory> &lt;JournalPrefix> &lt;FileExtension> 
&lt;FileSize>
                 &lt;FileInput></literal></para>
         <itemizedlist>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/project-info.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/project-info.xml 
b/docs/user-manual/en/project-info.xml
index e3d50f5..7e3ca97 100644
--- a/docs/user-manual/en/project-info.xml
+++ b/docs/user-manual/en/project-info.xml
@@ -86,6 +86,6 @@
          </itemizedlist></para>
       <para> And many thanks to all our contributors, both old and new who 
helped create HornetQ,
          for a full list of the people who made it happen, take a look at our 
<ulink
-            url="http://jboss.org.apache.activemq6/community/team.html";>team 
page</ulink>. </para>
+            url="http://jboss.org.apache.activemq/community/team.html";>team 
page</ulink>. </para>
    </section>
 </chapter>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/queue-attributes.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/queue-attributes.xml 
b/docs/user-manual/en/queue-attributes.xml
index 46f82ed..1c12bef 100644
--- a/docs/user-manual/en/queue-attributes.xml
+++ b/docs/user-manual/en/queue-attributes.xml
@@ -83,7 +83,7 @@
         <title>Using the API</title>
         <para>Queues can also be created using the core API or the management 
API.</para>
         <para>For the core API, queues can be created via the <literal
-                >org.apache.activemq6.api.core.client.ClientSession</literal> 
interface. There are multiple
+                >org.apache.activemq.api.core.client.ClientSession</literal> 
interface. There are multiple
                 <literal>createQueue</literal> methods that support setting 
all of the previously
             mentioned attributes. There is one extra attribute that can be set 
via this API which is
                 <literal>temporary</literal>. setting this to true means that 
the queue will be

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/rest.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/rest.xml b/docs/user-manual/en/rest.xml
index 3da87b5..712cfcd 100644
--- a/docs/user-manual/en/rest.xml
+++ b/docs/user-manual/en/rest.xml
@@ -128,7 +128,7 @@ Content-Type: application/xml
 
    &lt;listener>
       &lt;listener-class>
-         org.apache.activemq6.rest.integration.RestMessagingBootstrapListener
+         org.apache.activemq.rest.integration.RestMessagingBootstrapListener
       &lt;/listener-class>
    &lt;/listener>
 
@@ -185,7 +185,7 @@ Content-Type: application/xml
 
    &lt;dependencies>
       &lt;dependency>
-         &lt;groupId>org.apache.activemq6.rest&lt;/groupId>
+         &lt;groupId>org.apache.activemq.rest&lt;/groupId>
          &lt;artifactId>hornetq-rest&lt;/artifactId>
          &lt;version>2.3.0-SNAPSHOT&lt;/version>
       &lt;/dependency>
@@ -196,7 +196,7 @@ Content-Type: application/xml
                 <para>JBoss AS 7 loads classes differently than previous 
versions.
                     To work properly in AS 7 the WAR will need this in its 
MANIFEST.MF:
                 </para>
-                <programlisting>Dependencies: org.apache.activemq6, 
org.jboss.netty</programlisting>
+                <programlisting>Dependencies: org.apache.activemq, 
org.jboss.netty</programlisting>
                 <para>You can add this to the<literal>&lt;plugins></literal>
                     section of the pom.xml to create this entry automatically:
                 </para>
@@ -207,7 +207,7 @@ Content-Type: application/xml
    &lt;configuration>
       &lt;archive>
          &lt;manifestEntries>
-            &lt;Dependencies>org.apache.activemq6, 
org.jboss.netty&lt;/Dependencies>
+            &lt;Dependencies>org.apache.activemq, 
org.jboss.netty&lt;/Dependencies>
          &lt;/manifestEntries>
       &lt;/archive>
    &lt;/configuration>
@@ -252,13 +252,13 @@ Content-Type: application/xml
 
    &lt;listener>
       &lt;listener-class>
-         org.apache.activemq6.rest.integration.HornetqBootstrapListener
+         org.apache.activemq.rest.integration.HornetqBootstrapListener
       &lt;/listener-class>
    &lt;/listener>
 
    &lt;listener>
       &lt;listener-class>
-         org.apache.activemq6.rest.integration.RestMessagingBootstrapListener
+         org.apache.activemq.rest.integration.RestMessagingBootstrapListener
       &lt;/listener-class>
    &lt;/listener>
 
@@ -312,7 +312,7 @@ Content-Type: application/xml
    &lt;/build>
    &lt;dependencies>
       &lt;dependency>
-         &lt;groupId>org.apache.activemq6&lt;/groupId>
+         &lt;groupId>org.apache.activemq&lt;/groupId>
          &lt;artifactId>hornetq-core&lt;/artifactId>
          &lt;version>2.3.0-SNAPSHOT&lt;/version>
       &lt;/dependency>
@@ -322,7 +322,7 @@ Content-Type: application/xml
          &lt;version>3.4.5.Final&lt;/version>
       &lt;/dependency>
       &lt;dependency>
-         &lt;groupId>org.apache.activemq6&lt;/groupId>
+         &lt;groupId>org.apache.activemq&lt;/groupId>
          &lt;artifactId>hornetq-jms&lt;/artifactId>
          &lt;version>2.3.0-SNAPSHOT&lt;/version>
       &lt;/dependency>
@@ -332,7 +332,7 @@ Content-Type: application/xml
          &lt;version>1.0.0.Final&lt;/version>
       &lt;/dependency>
       &lt;dependency>
-         &lt;groupId>org.apache.activemq6.rest&lt;/groupId>
+         &lt;groupId>org.apache.activemq.rest&lt;/groupId>
          &lt;artifactId>hornetq-rest&lt;/artifactId>
          &lt;version>2.3.0-SNAPSHOT&lt;/version>
       &lt;/dependency>
@@ -844,7 +844,7 @@ msg-create-next: 
http://example.com/queues/jms.queue.bar/create/13582001787374</
                 like this on the server:
             </para>
             <programlisting>
-WARN  [org.apache.activemq6.core.server] (Thread-3 
(HornetQ-remoting-threads-HornetQServerImpl::serverUUID=8d6be6f8-5e8b-11e2-80db-51bbde66f473-26319292-267207))
 HQ112098: Duplicate message detected - message will not be routed. Message 
information:
+WARN  [org.apache.activemq.core.server] (Thread-3 
(HornetQ-remoting-threads-HornetQServerImpl::serverUUID=8d6be6f8-5e8b-11e2-80db-51bbde66f473-26319292-267207))
 HQ112098: Duplicate message detected - message will not be routed. Message 
information:
 ServerMessage[messageID=20,priority=4, bodySize=1500,expiration=0, 
durable=true, 
address=jms.queue.bar,properties=TypedProperties[{http_content$type=application/x-www-form-urlencoded,
 http_content$length=3, postedAsHttpMessage=true, 
_HQ_DUPL_ID=42}]]@12835058</programlisting>
 
             <para>An alternative to this approach is to use the 
<literal>msg-create-with-id</literal>
@@ -2113,7 +2113,7 @@ Location: 
http://example.com/topics/jms.topic.testTopic</programlisting>
 
             <programlisting>
 ObjectMessage message = session.createObjectMessage();
-message.setStringProperty(org.apache.activemq6.rest.HttpHeaderProperty.CONTENT_TYPE,
 "application/xml");</programlisting>
+message.setStringProperty(org.apache.activemq.rest.HttpHeaderProperty.CONTENT_TYPE,
 "application/xml");</programlisting>
 
             <para>If the JMS producer does not set the content-type, then this
                 information must be obtained from the REST consumer. If it is 
a pull
@@ -2136,7 +2136,7 @@ 
message.setStringProperty(org.apache.activemq6.rest.HttpHeaderProperty.CONTENT_T
             <programlisting>
 public void onMessage(Message message)
 {
-   MyType obj = org.apache.activemq6.rest.Jms.getEntity(message, MyType.class);
+   MyType obj = org.apache.activemq.rest.Jms.getEntity(message, MyType.class);
 }</programlisting>
 
             <para>The way the <literal>getEntity()</literal> method works is 
that if

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/security.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/security.xml b/docs/user-manual/en/security.xml
index b5fe4e0..4680c3c 100644
--- a/docs/user-manual/en/security.xml
+++ b/docs/user-manual/en/security.xml
@@ -190,16 +190,16 @@
             changing the class for the 
<literal>HornetQSecurityManager</literal> bean.</para>
         <para>Let's take a look at a snippet from the default beans 
file:</para>
         <programlisting>           
-&lt;bean name="HornetQSecurityManager" 
class="org.apache.activemq6.spi.core.security.HornetQSecurityManagerImpl">
+&lt;bean name="HornetQSecurityManager" 
class="org.apache.activemq.spi.core.security.HornetQSecurityManagerImpl">
    &lt;start ignored="true"/>
    &lt;stop ignored="true"/>
 &lt;/bean></programlisting>
-        <para>The class 
<literal>org.apache.activemq6.spi.core.security.HornetQSecurityManagerImpl</literal>
+        <para>The class 
<literal>org.apache.activemq.spi.core.security.HornetQSecurityManagerImpl</literal>
             is the default security manager that is used by the standalone 
server.</para>
         <para>HornetQ ships with two other security manager implementations 
you can use
             off-the-shelf; one a JAAS security manager and another for 
integrating with JBoss
             Application Sever security, alternatively you could write your own 
implementation by
-            implementing the 
<literal>org.apache.activemq6.spi.core.security.HornetQSecurityManager</literal>
+            implementing the 
<literal>org.apache.activemq.spi.core.security.HornetQSecurityManager</literal>
             interface, and specifying the classname of your implementation in 
the file <literal
             >hornetq-beans.xml</literal> (or 
<literal>hornetq-jboss-beans.xml</literal> if
             you're running JBoss Application Server).</para>
@@ -214,11 +214,11 @@
             you need to specify the security manager as a 
<literal>JAASSecurityManager</literal> in
             the beans file. Here's an example:</para>
         <programlisting>
-&lt;bean name="HornetQSecurityManager" 
class="org.apache.activemq6.integration.jboss.security.JAASSecurityManager">
+&lt;bean name="HornetQSecurityManager" 
class="org.apache.activemq.integration.jboss.security.JAASSecurityManager">
    &lt;start ignored="true"/>
    &lt;stop ignored="true"/>
 
-   &lt;property 
name="ConfigurationName">org.apache.activemq6.jms.example.ExampleLoginModule&lt;/property>
+   &lt;property 
name="ConfigurationName">org.apache.activemq.jms.example.ExampleLoginModule&lt;/property>
    &lt;property name="Configuration">
       &lt;inject bean="ExampleConfiguration"/>
    &lt;/property>
@@ -253,7 +253,7 @@
             Application server. This allows tight integration with the JBoss 
Application Server's
             security model.</para>
         <para>The class name of this security manager is <literal
-                
>org.apache.activemq6.integration.jboss.security.JBossASSecurityManager</literal></para>
+                
>org.apache.activemq.integration.jboss.security.JBossASSecurityManager</literal></para>
         <para>Take a look at one of the default 
<literal>hornetq-jboss-beans.xml</literal> files for
             JBoss Application Server that are bundled in the distribution for 
an example of how this
             is configured.</para>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/send-guarantees.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/send-guarantees.xml 
b/docs/user-manual/en/send-guarantees.xml
index 051bf35..a89d646 100644
--- a/docs/user-manual/en/send-guarantees.xml
+++ b/docs/user-manual/en/send-guarantees.xml
@@ -137,7 +137,7 @@
         <section>
             <title>Asynchronous Send Acknowledgements</title>
             <para>To use the feature using the core API, you implement the 
interface <literal
-                    
>org.apache.activemq6.api.core.client.SendAcknowledgementHandler</literal> and 
set a handler
+                    
>org.apache.activemq.api.core.client.SendAcknowledgementHandler</literal> and 
set a handler
                 instance on your <literal>ClientSession</literal>.</para>
             <para>Then, you just send messages as normal using your <literal
                 >ClientSession</literal>, and as messages reach the server, 
the server will send

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/spring-integration.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/spring-integration.xml 
b/docs/user-manual/en/spring-integration.xml
index 1e6018b..900c975 100644
--- a/docs/user-manual/en/spring-integration.xml
+++ b/docs/user-manual/en/spring-integration.xml
@@ -27,7 +27,7 @@
   <title>Spring Integration</title>
 
   <para>HornetQ provides a simple bootstrap class,
-  
<literal>org.apache.activemq6.integration.spring.SpringJmsBootstrap</literal>, 
for
+  
<literal>org.apache.activemq.integration.spring.SpringJmsBootstrap</literal>, 
for
   integration with Spring. To use it, you configure HornetQ as you always
   would, through its various configuration files like
   <literal>hornetq-configuration.xml</literal>,
@@ -70,9 +70,9 @@
     xsi:schemaLocation="http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd";>
 
-   &lt;bean id="EmbeddedJms" 
class="org.apache.activemq6.integration.spring.SpringJmsBootstrap" 
init-method="start"/>
+   &lt;bean id="EmbeddedJms" 
class="org.apache.activemq.integration.spring.SpringJmsBootstrap" 
init-method="start"/>
 
-   &lt;bean id="listener" 
class="org.apache.activemq6.tests.integration.spring.ExampleListener"/>
+   &lt;bean id="listener" 
class="org.apache.activemq.tests.integration.spring.ExampleListener"/>
     
    &lt;bean id="listenerContainer" 
class="org.springframework.jms.listener.DefaultMessageListenerContainer">
       &lt;property name="connectionFactory" ref="ConnectionFactory"/>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/using-jms.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/using-jms.xml 
b/docs/user-manual/en/using-jms.xml
index dfe9d5d..b7414fb 100644
--- a/docs/user-manual/en/using-jms.xml
+++ b/docs/user-manual/en/using-jms.xml
@@ -187,7 +187,7 @@ 
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces</programlisting
                 <literal>hornetq-beans.xml</literal> by setting properties on 
the <literal
                 >JNDIServer</literal> bean:</para>
         <programlisting>
-&lt;bean name="StandaloneServer" 
class="org.apache.activemq6.jms.server.impl.StandaloneNamingServer">
+&lt;bean name="StandaloneServer" 
class="org.apache.activemq.jms.server.impl.StandaloneNamingServer">
    &lt;constructor>
       &lt;parameter>
          &lt;inject bean="HornetQServer"/>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/using-server.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/using-server.xml 
b/docs/user-manual/en/using-server.xml
index 673283d..4f202bc 100644
--- a/docs/user-manual/en/using-server.xml
+++ b/docs/user-manual/en/using-server.xml
@@ -143,7 +143,7 @@
             this with a connector configuration:</para>
         <programlisting>
 &lt;connector name="netty">
-   
&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory&lt;/factory-class>
+   
&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory&lt;/factory-class>
    &lt;param key="host" value="${hornetq.remoting.netty.host:localhost}"/>
    &lt;param key="port" value="${hornetq.remoting.netty.port:5445}"/>
 &lt;/connector></programlisting>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/en/vertx-integration.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/vertx-integration.xml 
b/docs/user-manual/en/vertx-integration.xml
index 92fd8ac..5a9ef9a 100644
--- a/docs/user-manual/en/vertx-integration.xml
+++ b/docs/user-manual/en/vertx-integration.xml
@@ -36,7 +36,7 @@
     Such a service can be configured as follows:</para>
     <programlisting>
     &lt;connector-service name="vertx-incoming-connector">
-    
&lt;factory-class>org.apache.activemq6.integration.vertx.VertxIncomingConnectorServiceFactory&lt;/factory-class>
+    
&lt;factory-class>org.apache.activemq.integration.vertx.VertxIncomingConnectorServiceFactory&lt;/factory-class>
     &lt;param key="host" value="127.0.0.1"/>
     &lt;param key="port" value="0"/>
     &lt;param key="queue" value="jms.queue.vertxQueue"/>
@@ -64,7 +64,7 @@
                 <para><literal>ha-group</literal>. The name of the ha-group of 
target vertx instance. Default is <literal>hornetq</literal>.</para>
             </listitem>
             <listitem>
-                <para><literal>vertx-address</literal>. The vertx address to 
listen to. default is org.apache.activemq6.</para>
+                <para><literal>vertx-address</literal>. The vertx address to 
listen to. default is org.apache.activemq.</para>
             </listitem>
         </itemizedlist>
     </section>
@@ -75,7 +75,7 @@
     Such a service can be configured as follows:</para>
     <programlisting>
     &lt;connector-service name="vertx-outgoing-connector">
-    
&lt;factory-class>org.apache.activemq6.integration.vertx.VertxOutgoingConnectorServiceFactory&lt;/factory-class>
+    
&lt;factory-class>org.apache.activemq.integration.vertx.VertxOutgoingConnectorServiceFactory&lt;/factory-class>
     &lt;param key="host" value="127.0.0.1"/>
     &lt;param key="port" value="0"/>
     &lt;param key="queue" value="jms.queue.vertxQueue"/>
@@ -104,7 +104,7 @@
                 <para><literal>ha-group</literal>. The name of the ha-group of 
target vertx instance. Default is <literal>hornetq</literal>.</para>
             </listitem>
             <listitem>
-                <para><literal>vertx-address</literal>. The vertx address to 
put messages to. default is org.apache.activemq6.</para>
+                <para><literal>vertx-address</literal>. The vertx address to 
put messages to. default is org.apache.activemq.</para>
             </listitem>
             <listitem>
                 <para><literal>publish</literal>. How messages is sent to 
vertx event bus. "true" means using publish style.

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/pom.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/pom.xml b/docs/user-manual/pom.xml
index 5cba1f9..070ab32 100644
--- a/docs/user-manual/pom.xml
+++ b/docs/user-manual/pom.xml
@@ -19,12 +19,12 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <groupId>org.apache.activemq6.docs</groupId>
-        <artifactId>activemq6-docs</artifactId>
+        <groupId>org.apache.activemq.docs</groupId>
+        <artifactId>activemq-docs</artifactId>
         <version>6.0.0-SNAPSHOT</version>
     </parent>
 
-    <groupId>org.apache.activemq6.docs</groupId>
+    <groupId>org.apache.activemq.docs</groupId>
     <artifactId>user-manual</artifactId>
     <version>1.0</version>
     <packaging>jdocbook</packaging>
@@ -275,7 +275,7 @@
               
<transformerFactory>net.sf.saxon.TransformerFactoryImpl</transformerFactory>
               <transformationSets>
                 <transformationSet>
-                  <dir>../../activemq6-server/src/main/resources/schema</dir>
+                  <dir>../../activemq-server/src/main/resources/schema</dir>
                   
<stylesheet>./src/main/resources/schemaToTable.xsl</stylesheet>
                   <includes>
                     <include>hornetq-configuration.xsd</include>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/src/main/resources/schemaToTable.xsl
----------------------------------------------------------------------
diff --git a/docs/user-manual/src/main/resources/schemaToTable.xsl 
b/docs/user-manual/src/main/resources/schemaToTable.xsl
index dfdea65..a49cfb3 100644
--- a/docs/user-manual/src/main/resources/schemaToTable.xsl
+++ b/docs/user-manual/src/main/resources/schemaToTable.xsl
@@ -3,7 +3,7 @@
 <xsl:stylesheet version="2.0"
                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                 xmlns:xsd="http://www.w3.org/2001/XMLSchema";
-                xmlns:hq="urn:org.apache.activemq6"
+                xmlns:hq="urn:org.apache.activemq"
                 xmlns:fn="http://www.w3.org/2005/xpath-functions";>
 
    <!--

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/zh/appserver-integration.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/zh/appserver-integration.xml 
b/docs/user-manual/zh/appserver-integration.xml
index edacef3..7d28305 100644
--- a/docs/user-manual/zh/appserver-integration.xml
+++ b/docs/user-manual/zh/appserver-integration.xml
@@ -275,12 +275,12 @@ public class MyMDB implements MessageListener
               <literal>META-INF/ra.xml</literal>。</para>
         <para>下面是它的具体配置内容:</para>
         <programlisting>&lt;resourceadapter>
-      
&lt;resourceadapter-class>org.apache.activemq6.ra.HornetQResourceAdapter&lt;/resourceadapter-class>
+      
&lt;resourceadapter-class>org.apache.activemq.ra.HornetQResourceAdapter&lt;/resourceadapter-class>
       &lt;config-property>
          &lt;description>The transport type&lt;/description>
          &lt;config-property-name>ConnectorClassName&lt;/config-property-name>
          &lt;config-property-type>java.lang.String&lt;/config-property-type>
-         
&lt;config-property-value>org.apache.activemq6.core.remoting.impl.invm.InVMConnectorF
+         
&lt;config-property-value>org.apache.activemq.core.remoting.impl.invm.InVMConnectorF
          actory&lt;/config-property-value>
       &lt;/config-property>
       &lt;config-property>
@@ -292,7 +292,7 @@ public class MyMDB implements MessageListener
 
       &lt;outbound-resourceadapter>
          &lt;connection-definition>
-            
&lt;managedconnectionfactory-class>org.apache.activemq6.ra.HornetQRAManagedConnection
+            
&lt;managedconnectionfactory-class>org.apache.activemq.ra.HornetQRAManagedConnection
             Factory&lt;/managedconnectionfactory-class>
 
             &lt;config-property>
@@ -309,12 +309,12 @@ public class MyMDB implements MessageListener
                &lt;config-property-value>0&lt;/config-property-value>
             &lt;/config-property>
 
-            
&lt;connectionfactory-interface>org.apache.activemq6.ra.HornetQRAConnectionFactory
+            
&lt;connectionfactory-interface>org.apache.activemq.ra.HornetQRAConnectionFactory
             &lt;/connectionfactory-interface>
-            
&lt;connectionfactororg.apache.activemq6.ra.HornetQConnectionFactoryImplonFactoryImpl
+            
&lt;connectionfactororg.apache.activemq.ra.HornetQConnectionFactoryImplonFactoryImpl
             &lt;/connectionfactory-impl-class>
             
&lt;connection-interface>javax.jms.Session&lt;/connection-interface>
-            &lt;connection-impl-class>org.apache.activemq6.ra.HornetQRASession
+            &lt;connection-impl-class>org.apache.activemq.ra.HornetQRASession
             &lt;/connection-impl-class>
          &lt;/connection-definition>
          &lt;transaction-support>XATransaction&lt;/transaction-support>
@@ -332,7 +332,7 @@ public class MyMDB implements MessageListener
             &lt;messagelistener>
                
&lt;messagelistener-type>javax.jms.MessageListener&lt;/messagelistener-type>
                &lt;activationspec>
-                  
&lt;activationspec-class>org.apache.activemq6.ra.inflow.HornetQActivationSpec
+                  
&lt;activationspec-class>org.apache.activemq.ra.inflow.HornetQActivationSpec
                   &lt;/activationspec-class>
                   &lt;required-config-property>
                       
&lt;config-property-name>destination&lt;/config-property-name>
@@ -657,12 +657,12 @@ public class MyMDB implements MessageListener
       &lt;jndi-name>RemoteJmsXA&lt;/jndi-name>
       &lt;xa-transaction/>
       &lt;rar-name>jms-ra.rar&lt;/rar-name>
-      
&lt;connection-definition>org.apache.activemq6.ra.HornetQRAConnectionFactory
+      
&lt;connection-definition>org.apache.activemq.ra.HornetQRAConnectionFactory
 &lt;/connection-definition>
       &lt;config-property name="SessionDefaultType" 
type="String">javax.jms.Topic
       &lt;/config-property>
       &lt;config-property name="ConnectorClassName" type="String">
-        org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory
+        org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory
       &lt;/config-property>
       &lt;config-property name="ConnectionParameters" type="String">
           port=5445&lt;/config-property>
@@ -806,12 +806,12 @@ private ConnectionFactory 
connectionFactory;</programlisting>
                 </para>
 
           <programlisting>
-            
&lt;resourceadapter-class&gt;org.apache.activemq6.ra.HornetQResourceAdapter&lt;/resourceadapter-class&gt;
+            
&lt;resourceadapter-class&gt;org.apache.activemq.ra.HornetQResourceAdapter&lt;/resourceadapter-class&gt;
               &lt;config-property&gt;
                  &lt;description&gt;The transport type&lt;/description&gt;
                  
&lt;config-property-name&gt;ConnectorClassName&lt;/config-property-name&gt;
                  
&lt;config-property-type&gt;java.lang.String&lt;/config-property-type&gt;
-                 
&lt;config-property-value&gt;org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory&lt;/config-property-value&gt;
+                 
&lt;config-property-value&gt;org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory&lt;/config-property-value&gt;
               &lt;/config-property&gt;
               &lt;config-property&gt;
                  &lt;description&gt;The transport configuration. These values 
must be in the form of key=val;key=val;&lt;/description&gt;
@@ -836,9 +836,9 @@ private ConnectionFactory 
connectionFactory;</programlisting>
               &lt;jndi-name&gt;RemoteJmsXA&lt;/jndi-name&gt;
               &lt;xa-transaction/&gt;
               &lt;rar-name&gt;hornetq-ra.rar&lt;/rar-name&gt;
-              
&lt;connection-definition&gt;org.apache.activemq6.ra.HornetQRAConnectionFactory&lt;/connection-definition&gt;
+              
&lt;connection-definition&gt;org.apache.activemq.ra.HornetQRAConnectionFactory&lt;/connection-definition&gt;
               &lt;config-property name="SessionDefaultType" 
type="java.lang.String"&gt;javax.jms.Topic&lt;/config-property&gt;
-              &lt;config-property name="ConnectorClassName" 
type="java.lang.String"&gt;org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory&lt;/config-property&gt;
+              &lt;config-property name="ConnectorClassName" 
type="java.lang.String"&gt;org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory&lt;/config-property&gt;
               &lt;config-property name="ConnectionParameters" 
type="java.lang.String"&gt;host=127.0.0.1;port=5446&lt;/config-property&gt;
               &lt;max-pool-size&gt;20&lt;/max-pool-size&gt;
            &lt;/tx-connection-factory&gt;
@@ -926,7 +926,7 @@ initialContext = new 
InitialContext(jndiParameters);</programlisting>
    ...
                      
    &lt;property name="com.arjuna.ats.jta.recovery.XAResourceRecovery.HornetQ1"
-                
value="org.apache.activemq6.jms.server.recovery.HornetQXAResourceRecovery;[连接é
…ç½®]"/&gt;
+                
value="org.apache.activemq.jms.server.recovery.HornetQXAResourceRecovery;[连接é
…ç½®]"/&gt;
 &lt;/properties&gt;
             </programlisting>
             <para>其中<literal>[连接配置]</literal>包
括连接HornetQ节点所必需的信息。
@@ -935,9 +935,9 @@ initialContext = new 
InitialContext(jndiParameters);</programlisting>
                 <listitem>
                     
<para><literal>[连接工厂类名]</literal>指的是<literal>ConnectorFactory</literal>
                         的类名,用来连接HornetQ服务器。å…
¶å€¼å¯ä»¥æ˜¯<literal
-                            
>org.apache.activemq6.core.remoting.impl.invm.InVMConnectorFactory</literal> 或
+                            
>org.apache.activemq.core.remoting.impl.invm.InVMConnectorFactory</literal> 或
                             <literal
-                            
>org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory</literal></para>
+                            
>org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory</literal></para>
                 </listitem>
                 <listitem>
                     
<para><literal>[用户名]</literal>是用于创建客户会话的用户名。是可选项。</para>
@@ -958,19 +958,19 @@ initialContext = new 
InitialContext(jndiParameters);</programlisting>
                 <para>如果HornetQé…
ç½®äº†ä¸€ä¸ªé»˜è®¤çš„in-vm接受器:</para>
                 <programlisting>
 &lt;acceptor name="in-vm">
-    
&lt;factory-class>org.apache.activemq6.core.remoting.impl.invm.InVMAcceptorFactory&lt;/factory-class>
+    
&lt;factory-class>org.apache.activemq.core.remoting.impl.invm.InVMAcceptorFactory&lt;/factory-class>
 &lt;/acceptor>
                 </programlisting>
                 <para>相应地在 <literal
                         
>conf/jbossts-properties.xml</literal>文件中:</para>
                 <programlisting>
 &lt;property name="com.arjuna.ats.jta.recovery.XAResourceRecovery.HORNETQ1"
-   
value="org.apache.activemq6.jms.server.recovery.HornetQXAResourceRecovery;org.apache.activemq6.core.remoting.impl.invm.InVMConnectorFactory"/>
                              
+   
value="org.apache.activemq.jms.server.recovery.HornetQXAResourceRecovery;org.apache.activemq.core.remoting.impl.invm.InVMConnectorFactory"/>
                 </programlisting>
                 <para>如果é…
ç½®äº†ä¸€ä¸ªnetty接受器,并且端口不是默认的:</para>
                 <programlisting>
 &lt;acceptor name="netty">
-    
&lt;factory-class>org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory&lt;/factory-class>
+    
&lt;factory-class>org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory&lt;/factory-class>
     &lt;param key="port" value="8888"/>
 &lt;/acceptor>
                 </programlisting>
@@ -978,7 +978,7 @@ initialContext = new 
InitialContext(jndiParameters);</programlisting>
                         
>conf/jbossts-properties.xml</literal>文件中:</para>
                 <programlisting>
 &lt;property name="com.arjuna.ats.jta.recovery.XAResourceRecovery.HORNETQ1"
-       
value="org.apache.activemq6.jms.server.recovery.HornetQXAResourceRecovery;org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory,
 , , port=8888"/>                                             
+       
value="org.apache.activemq.jms.server.recovery.HornetQXAResourceRecovery;org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory,
 , , port=8888"/>
                 </programlisting>
                 <note>
                     <para>注意在没有用户名和密ç 
æ—¶ï¼Œé€—号是不能省略的。</para>
@@ -987,7 +987,7 @@ initialContext = new 
InitialContext(jndiParameters);</programlisting>
                     应为如下所示:</para>
                 <programlisting>
                     &lt;property 
name="com.arjuna.ats.jta.recovery.XAResourceRecovery.HORNETQ1"
-                           
value="org.apache.activemq6.jms.server.recovery.HornetQXAResourceRecovery;org.apache.activemq6.core.remoting.impl.netty.NettyConnectorFactory,
 admin, adminpass, port=8888"/>                                                 
  
+                           
value="org.apache.activemq.jms.server.recovery.HornetQXAResourceRecovery;org.apache.activemq.core.remoting.impl.netty.NettyConnectorFactory,
 admin, adminpass, port=8888"/>
                 </programlisting>
                 <para>推荐在XA恢复中,将HornetQé…
ç½®ä¸€ä¸ªinvm接受器,并配置恢复管理器使用invm连接器。</para>
             </section>

http://git-wip-us.apache.org/repos/asf/activemq-6/blob/9a587c56/docs/user-manual/zh/clusters.xml
----------------------------------------------------------------------
diff --git a/docs/user-manual/zh/clusters.xml b/docs/user-manual/zh/clusters.xml
index 356ed0b..32367a8 100644
--- a/docs/user-manual/zh/clusters.xml
+++ b/docs/user-manual/zh/clusters.xml
@@ -340,9 +340,9 @@ Connection jmsConnection2 = 
jmsConnectionFactory.createConnection();</programlis
             </listitem>
         </itemizedlist>
         <para>你可以实现自己的策略。只需要实现接口<literal
-                
>org.apache.activemq6.api.core.client.loadbalance.ConnectionLoadBalancingPolicy</literal>即可。</para>
+                
>org.apache.activemq.api.core.client.loadbalance.ConnectionLoadBalancingPolicy</literal>即可。</para>
         <para>根据你使用的是JMS还是æ 
¸å¿ƒæŽ¥å£ï¼ŒæŒ‡å®šè´Ÿè½½å‡è¡¡çš„æ–¹æ³•是有所不同的。如果你
不指定策略,默认的策略是<literal
-                
>org.apache.activemq6.api.core.client.loadbalance.RoundRobinConnectionLoadBalancingPolicy</literal>.</para>
+                
>org.apache.activemq.api.core.client.loadbalance.RoundRobinConnectionLoadBalancingPolicy</literal>.</para>
         
<para>如果使用的是JMS,并且JMS连接工厂注册到JNDI,则你
需要在<literal>hornetq-jms.xml</literal>文件中定义策略,如:
             <programlisting>
 &lt;connection-factory name="ConnectionFactory"&gt;
@@ -351,7 +351,7 @@ Connection jmsConnection2 = 
jmsConnectionFactory.createConnection();</programlis
         &lt;entry name="ConnectionFactory"/&gt;
     &lt;/entries&gt;
     &lt;connection-load-balancing-policy-class-name&gt;
-    
org.apache.activemq6.api.core.client.loadbalance.RandomConnectionLoadBalancingPolicy
+    
org.apache.activemq.api.core.client.loadbalance.RandomConnectionLoadBalancingPolicy
     &lt;/connection-load-balancing-policy-class-name&gt;
 &lt;/connection-factory&gt;            
         </programlisting>上面的é…
ç½®å°†éƒ¨ç½²ä¸€ä¸ªè¿žæŽ¥å·¥åŽ‚ï¼Œå®ƒçš„è¿žæŽ¥è´Ÿè½½å‡è¡¡ç­–ç•¥æ˜¯éšæœºç­–ç•¥ã€‚</para>

Reply via email to