You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2013/05/17 18:27:38 UTC

svn commit: r1483902 [5/5] - in /activemq/trunk: activemq-client/ activemq-client/src/main/java/org/apache/activemq/command/ activemq-client/src/main/java/org/apache/activemq/openwire/v10/ activemq-client/src/main/java/org/apache/activemq/openwire/v8/ ...

Added: activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/ShutdownInfoMarshaller.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/ShutdownInfoMarshaller.java?rev=1483902&view=auto
==============================================================================
--- activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/ShutdownInfoMarshaller.java (added)
+++ activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/ShutdownInfoMarshaller.java Fri May 17 16:27:35 2013
@@ -0,0 +1,114 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.openwire.v10;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+
+import org.apache.activemq.openwire.*;
+import org.apache.activemq.command.*;
+
+
+
+/**
+ * Marshalling code for Open Wire Format for ShutdownInfoMarshaller
+ *
+ *
+ * NOTE!: This file is auto generated - do not modify!
+ *        if you need to make a change, please see the modify the groovy scripts in the
+ *        under src/gram/script and then use maven openwire:generate to regenerate 
+ *        this file.
+ *
+ * 
+ */
+public class ShutdownInfoMarshaller extends BaseCommandMarshaller {
+
+    /**
+     * Return the type of Data Structure we marshal
+     * @return short representation of the type data structure
+     */
+    public byte getDataStructureType() {
+        return ShutdownInfo.DATA_STRUCTURE_TYPE;
+    }
+    
+    /**
+     * @return a new object instance
+     */
+    public DataStructure createObject() {
+        return new ShutdownInfo();
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
+        super.tightUnmarshal(wireFormat, o, dataIn, bs);
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
+
+        int rc = super.tightMarshal1(wireFormat, o, bs);
+
+        return rc + 0;
+    }
+
+    /**
+     * Write a object instance to data output stream
+     *
+     * @param o the instance to be marshaled
+     * @param dataOut the output stream
+     * @throws IOException thrown if an error occurs
+     */
+    public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
+        super.tightMarshal2(wireFormat, o, dataOut, bs);
+
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
+        super.looseUnmarshal(wireFormat, o, dataIn);
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
+
+        super.looseMarshal(wireFormat, o, dataOut);
+
+    }
+}

Added: activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/SubscriptionInfoMarshaller.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/SubscriptionInfoMarshaller.java?rev=1483902&view=auto
==============================================================================
--- activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/SubscriptionInfoMarshaller.java (added)
+++ activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/SubscriptionInfoMarshaller.java Fri May 17 16:27:35 2013
@@ -0,0 +1,149 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.openwire.v10;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+
+import org.apache.activemq.openwire.*;
+import org.apache.activemq.command.*;
+
+
+
+/**
+ * Marshalling code for Open Wire Format for SubscriptionInfoMarshaller
+ *
+ *
+ * NOTE!: This file is auto generated - do not modify!
+ *        if you need to make a change, please see the modify the groovy scripts in the
+ *        under src/gram/script and then use maven openwire:generate to regenerate 
+ *        this file.
+ *
+ * 
+ */
+public class SubscriptionInfoMarshaller extends BaseDataStreamMarshaller {
+
+    /**
+     * Return the type of Data Structure we marshal
+     * @return short representation of the type data structure
+     */
+    public byte getDataStructureType() {
+        return SubscriptionInfo.DATA_STRUCTURE_TYPE;
+    }
+    
+    /**
+     * @return a new object instance
+     */
+    public DataStructure createObject() {
+        return new SubscriptionInfo();
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
+        super.tightUnmarshal(wireFormat, o, dataIn, bs);
+
+        SubscriptionInfo info = (SubscriptionInfo)o;
+        info.setClientId(tightUnmarshalString(dataIn, bs));
+        info.setDestination((org.apache.activemq.command.ActiveMQDestination) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
+        info.setSelector(tightUnmarshalString(dataIn, bs));
+        info.setSubcriptionName(tightUnmarshalString(dataIn, bs));
+        info.setSubscribedDestination((org.apache.activemq.command.ActiveMQDestination) tightUnmarsalNestedObject(wireFormat, dataIn, bs));
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
+
+        SubscriptionInfo info = (SubscriptionInfo)o;
+
+        int rc = super.tightMarshal1(wireFormat, o, bs);
+        rc += tightMarshalString1(info.getClientId(), bs);
+        rc += tightMarshalCachedObject1(wireFormat, (DataStructure)info.getDestination(), bs);
+        rc += tightMarshalString1(info.getSelector(), bs);
+        rc += tightMarshalString1(info.getSubcriptionName(), bs);
+        rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getSubscribedDestination(), bs);
+
+        return rc + 0;
+    }
+
+    /**
+     * Write a object instance to data output stream
+     *
+     * @param o the instance to be marshaled
+     * @param dataOut the output stream
+     * @throws IOException thrown if an error occurs
+     */
+    public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
+        super.tightMarshal2(wireFormat, o, dataOut, bs);
+
+        SubscriptionInfo info = (SubscriptionInfo)o;
+        tightMarshalString2(info.getClientId(), dataOut, bs);
+        tightMarshalCachedObject2(wireFormat, (DataStructure)info.getDestination(), dataOut, bs);
+        tightMarshalString2(info.getSelector(), dataOut, bs);
+        tightMarshalString2(info.getSubcriptionName(), dataOut, bs);
+        tightMarshalNestedObject2(wireFormat, (DataStructure)info.getSubscribedDestination(), dataOut, bs);
+
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
+        super.looseUnmarshal(wireFormat, o, dataIn);
+
+        SubscriptionInfo info = (SubscriptionInfo)o;
+        info.setClientId(looseUnmarshalString(dataIn));
+        info.setDestination((org.apache.activemq.command.ActiveMQDestination) looseUnmarsalCachedObject(wireFormat, dataIn));
+        info.setSelector(looseUnmarshalString(dataIn));
+        info.setSubcriptionName(looseUnmarshalString(dataIn));
+        info.setSubscribedDestination((org.apache.activemq.command.ActiveMQDestination) looseUnmarsalNestedObject(wireFormat, dataIn));
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
+
+        SubscriptionInfo info = (SubscriptionInfo)o;
+
+        super.looseMarshal(wireFormat, o, dataOut);
+        looseMarshalString(info.getClientId(), dataOut);
+        looseMarshalCachedObject(wireFormat, (DataStructure)info.getDestination(), dataOut);
+        looseMarshalString(info.getSelector(), dataOut);
+        looseMarshalString(info.getSubcriptionName(), dataOut);
+        looseMarshalNestedObject(wireFormat, (DataStructure)info.getSubscribedDestination(), dataOut);
+
+    }
+}

Added: activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionIdMarshaller.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionIdMarshaller.java?rev=1483902&view=auto
==============================================================================
--- activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionIdMarshaller.java (added)
+++ activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionIdMarshaller.java Fri May 17 16:27:35 2013
@@ -0,0 +1,99 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.openwire.v10;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+
+import org.apache.activemq.openwire.*;
+import org.apache.activemq.command.*;
+
+
+
+/**
+ * Marshalling code for Open Wire Format for TransactionIdMarshaller
+ *
+ *
+ * NOTE!: This file is auto generated - do not modify!
+ *        if you need to make a change, please see the modify the groovy scripts in the
+ *        under src/gram/script and then use maven openwire:generate to regenerate 
+ *        this file.
+ *
+ * 
+ */
+public abstract class TransactionIdMarshaller extends BaseDataStreamMarshaller {
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
+        super.tightUnmarshal(wireFormat, o, dataIn, bs);
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
+
+        int rc = super.tightMarshal1(wireFormat, o, bs);
+
+        return rc + 0;
+    }
+
+    /**
+     * Write a object instance to data output stream
+     *
+     * @param o the instance to be marshaled
+     * @param dataOut the output stream
+     * @throws IOException thrown if an error occurs
+     */
+    public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
+        super.tightMarshal2(wireFormat, o, dataOut, bs);
+
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
+        super.looseUnmarshal(wireFormat, o, dataIn);
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
+
+        super.looseMarshal(wireFormat, o, dataOut);
+
+    }
+}

Added: activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionInfoMarshaller.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionInfoMarshaller.java?rev=1483902&view=auto
==============================================================================
--- activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionInfoMarshaller.java (added)
+++ activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/TransactionInfoMarshaller.java Fri May 17 16:27:35 2013
@@ -0,0 +1,138 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.openwire.v10;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+
+import org.apache.activemq.openwire.*;
+import org.apache.activemq.command.*;
+
+
+
+/**
+ * Marshalling code for Open Wire Format for TransactionInfoMarshaller
+ *
+ *
+ * NOTE!: This file is auto generated - do not modify!
+ *        if you need to make a change, please see the modify the groovy scripts in the
+ *        under src/gram/script and then use maven openwire:generate to regenerate 
+ *        this file.
+ *
+ * 
+ */
+public class TransactionInfoMarshaller extends BaseCommandMarshaller {
+
+    /**
+     * Return the type of Data Structure we marshal
+     * @return short representation of the type data structure
+     */
+    public byte getDataStructureType() {
+        return TransactionInfo.DATA_STRUCTURE_TYPE;
+    }
+    
+    /**
+     * @return a new object instance
+     */
+    public DataStructure createObject() {
+        return new TransactionInfo();
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
+        super.tightUnmarshal(wireFormat, o, dataIn, bs);
+
+        TransactionInfo info = (TransactionInfo)o;
+        info.setConnectionId((org.apache.activemq.command.ConnectionId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
+        info.setTransactionId((org.apache.activemq.command.TransactionId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
+        info.setType(dataIn.readByte());
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
+
+        TransactionInfo info = (TransactionInfo)o;
+
+        int rc = super.tightMarshal1(wireFormat, o, bs);
+        rc += tightMarshalCachedObject1(wireFormat, (DataStructure)info.getConnectionId(), bs);
+        rc += tightMarshalCachedObject1(wireFormat, (DataStructure)info.getTransactionId(), bs);
+
+        return rc + 1;
+    }
+
+    /**
+     * Write a object instance to data output stream
+     *
+     * @param o the instance to be marshaled
+     * @param dataOut the output stream
+     * @throws IOException thrown if an error occurs
+     */
+    public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
+        super.tightMarshal2(wireFormat, o, dataOut, bs);
+
+        TransactionInfo info = (TransactionInfo)o;
+        tightMarshalCachedObject2(wireFormat, (DataStructure)info.getConnectionId(), dataOut, bs);
+        tightMarshalCachedObject2(wireFormat, (DataStructure)info.getTransactionId(), dataOut, bs);
+        dataOut.writeByte(info.getType());
+
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
+        super.looseUnmarshal(wireFormat, o, dataIn);
+
+        TransactionInfo info = (TransactionInfo)o;
+        info.setConnectionId((org.apache.activemq.command.ConnectionId) looseUnmarsalCachedObject(wireFormat, dataIn));
+        info.setTransactionId((org.apache.activemq.command.TransactionId) looseUnmarsalCachedObject(wireFormat, dataIn));
+        info.setType(dataIn.readByte());
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
+
+        TransactionInfo info = (TransactionInfo)o;
+
+        super.looseMarshal(wireFormat, o, dataOut);
+        looseMarshalCachedObject(wireFormat, (DataStructure)info.getConnectionId(), dataOut);
+        looseMarshalCachedObject(wireFormat, (DataStructure)info.getTransactionId(), dataOut);
+        dataOut.writeByte(info.getType());
+
+    }
+}

Added: activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/WireFormatInfoMarshaller.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/WireFormatInfoMarshaller.java?rev=1483902&view=auto
==============================================================================
--- activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/WireFormatInfoMarshaller.java (added)
+++ activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/WireFormatInfoMarshaller.java Fri May 17 16:27:35 2013
@@ -0,0 +1,154 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.openwire.v10;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+
+import org.apache.activemq.openwire.*;
+import org.apache.activemq.command.*;
+
+
+
+/**
+ * Marshalling code for Open Wire Format for WireFormatInfoMarshaller
+ *
+ *
+ * NOTE!: This file is auto generated - do not modify!
+ *        if you need to make a change, please see the modify the groovy scripts in the
+ *        under src/gram/script and then use maven openwire:generate to regenerate 
+ *        this file.
+ *
+ * 
+ */
+public class WireFormatInfoMarshaller extends BaseDataStreamMarshaller {
+
+    /**
+     * Return the type of Data Structure we marshal
+     * @return short representation of the type data structure
+     */
+    public byte getDataStructureType() {
+        return WireFormatInfo.DATA_STRUCTURE_TYPE;
+    }
+    
+    /**
+     * @return a new object instance
+     */
+    public DataStructure createObject() {
+        return new WireFormatInfo();
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
+        super.tightUnmarshal(wireFormat, o, dataIn, bs);
+
+        WireFormatInfo info = (WireFormatInfo)o;
+
+        info.beforeUnmarshall(wireFormat);
+        
+        info.setMagic(tightUnmarshalConstByteArray(dataIn, bs, 8));
+        info.setVersion(dataIn.readInt());
+        info.setMarshalledProperties(tightUnmarshalByteSequence(dataIn, bs));
+
+        info.afterUnmarshall(wireFormat);
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
+
+        WireFormatInfo info = (WireFormatInfo)o;
+
+        info.beforeMarshall(wireFormat);
+
+        int rc = super.tightMarshal1(wireFormat, o, bs);
+        rc += tightMarshalConstByteArray1(info.getMagic(), bs, 8);
+        rc += tightMarshalByteSequence1(info.getMarshalledProperties(), bs);
+
+        return rc + 4;
+    }
+
+    /**
+     * Write a object instance to data output stream
+     *
+     * @param o the instance to be marshaled
+     * @param dataOut the output stream
+     * @throws IOException thrown if an error occurs
+     */
+    public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
+        super.tightMarshal2(wireFormat, o, dataOut, bs);
+
+        WireFormatInfo info = (WireFormatInfo)o;
+        tightMarshalConstByteArray2(info.getMagic(), dataOut, bs, 8);
+        dataOut.writeInt(info.getVersion());
+        tightMarshalByteSequence2(info.getMarshalledProperties(), dataOut, bs);
+
+        info.afterMarshall(wireFormat);
+
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
+        super.looseUnmarshal(wireFormat, o, dataIn);
+
+        WireFormatInfo info = (WireFormatInfo)o;
+
+        info.beforeUnmarshall(wireFormat);
+        
+        info.setMagic(looseUnmarshalConstByteArray(dataIn, 8));
+        info.setVersion(dataIn.readInt());
+        info.setMarshalledProperties(looseUnmarshalByteSequence(dataIn));
+
+        info.afterUnmarshall(wireFormat);
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
+
+        WireFormatInfo info = (WireFormatInfo)o;
+
+        info.beforeMarshall(wireFormat);
+
+        super.looseMarshal(wireFormat, o, dataOut);
+        looseMarshalConstByteArray(wireFormat, info.getMagic(), dataOut, 8);
+        dataOut.writeInt(info.getVersion());
+        looseMarshalByteSequence(wireFormat, info.getMarshalledProperties(), dataOut);
+
+    }
+}

Added: activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/XATransactionIdMarshaller.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/XATransactionIdMarshaller.java?rev=1483902&view=auto
==============================================================================
--- activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/XATransactionIdMarshaller.java (added)
+++ activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v10/XATransactionIdMarshaller.java Fri May 17 16:27:35 2013
@@ -0,0 +1,138 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.openwire.v10;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+
+import org.apache.activemq.openwire.*;
+import org.apache.activemq.command.*;
+
+
+
+/**
+ * Marshalling code for Open Wire Format for XATransactionIdMarshaller
+ *
+ *
+ * NOTE!: This file is auto generated - do not modify!
+ *        if you need to make a change, please see the modify the groovy scripts in the
+ *        under src/gram/script and then use maven openwire:generate to regenerate 
+ *        this file.
+ *
+ * 
+ */
+public class XATransactionIdMarshaller extends TransactionIdMarshaller {
+
+    /**
+     * Return the type of Data Structure we marshal
+     * @return short representation of the type data structure
+     */
+    public byte getDataStructureType() {
+        return XATransactionId.DATA_STRUCTURE_TYPE;
+    }
+    
+    /**
+     * @return a new object instance
+     */
+    public DataStructure createObject() {
+        return new XATransactionId();
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
+        super.tightUnmarshal(wireFormat, o, dataIn, bs);
+
+        XATransactionId info = (XATransactionId)o;
+        info.setFormatId(dataIn.readInt());
+        info.setGlobalTransactionId(tightUnmarshalByteArray(dataIn, bs));
+        info.setBranchQualifier(tightUnmarshalByteArray(dataIn, bs));
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
+
+        XATransactionId info = (XATransactionId)o;
+
+        int rc = super.tightMarshal1(wireFormat, o, bs);
+        rc += tightMarshalByteArray1(info.getGlobalTransactionId(), bs);
+        rc += tightMarshalByteArray1(info.getBranchQualifier(), bs);
+
+        return rc + 4;
+    }
+
+    /**
+     * Write a object instance to data output stream
+     *
+     * @param o the instance to be marshaled
+     * @param dataOut the output stream
+     * @throws IOException thrown if an error occurs
+     */
+    public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
+        super.tightMarshal2(wireFormat, o, dataOut, bs);
+
+        XATransactionId info = (XATransactionId)o;
+        dataOut.writeInt(info.getFormatId());
+        tightMarshalByteArray2(info.getGlobalTransactionId(), dataOut, bs);
+        tightMarshalByteArray2(info.getBranchQualifier(), dataOut, bs);
+
+    }
+
+    /**
+     * Un-marshal an object instance from the data input stream
+     *
+     * @param o the object to un-marshal
+     * @param dataIn the data input stream to build the object from
+     * @throws IOException
+     */
+    public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
+        super.looseUnmarshal(wireFormat, o, dataIn);
+
+        XATransactionId info = (XATransactionId)o;
+        info.setFormatId(dataIn.readInt());
+        info.setGlobalTransactionId(looseUnmarshalByteArray(dataIn));
+        info.setBranchQualifier(looseUnmarshalByteArray(dataIn));
+
+    }
+
+
+    /**
+     * Write the booleans that this object uses to a BooleanStream
+     */
+    public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
+
+        XATransactionId info = (XATransactionId)o;
+
+        super.looseMarshal(wireFormat, o, dataOut);
+        dataOut.writeInt(info.getFormatId());
+        looseMarshalByteArray(wireFormat, info.getGlobalTransactionId(), dataOut);
+        looseMarshalByteArray(wireFormat, info.getBranchQualifier(), dataOut);
+
+    }
+}

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBlobMessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBlobMessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBlobMessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBlobMessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBlobMessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBytesMessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBytesMessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBytesMessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBytesMessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQBytesMessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQDestinationMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQDestinationMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQDestinationMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQDestinationMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQDestinationMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMapMessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMapMessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMapMessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMapMessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMapMessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQMessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQObjectMessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQObjectMessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQObjectMessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQObjectMessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQObjectMessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQQueueMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQQueueMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQQueueMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQQueueMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQQueueMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQStreamMessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQStreamMessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQStreamMessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQStreamMessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQStreamMessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempDestinationMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempDestinationMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempDestinationMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempDestinationMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempDestinationMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempQueueMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempQueueMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempQueueMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempQueueMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempQueueMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempTopicMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempTopicMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempTopicMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempTopicMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTempTopicMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTextMessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTextMessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTextMessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTextMessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTextMessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTopicMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTopicMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTopicMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTopicMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ActiveMQTopicMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BaseCommandMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BaseCommandMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BaseCommandMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BaseCommandMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BaseCommandMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BaseDataStreamMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BaseDataStreamMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BaseDataStreamMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BaseDataStreamMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BaseDataStreamMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BrokerIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BrokerIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BrokerIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BrokerIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BrokerIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BrokerInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BrokerInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BrokerInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/BrokerInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/BrokerInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionControlMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionControlMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionControlMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionControlMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionControlMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionErrorMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionErrorMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionErrorMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionErrorMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionErrorMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConnectionInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConnectionInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerControlMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConsumerControlMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerControlMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerControlMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConsumerControlMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConsumerIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConsumerIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConsumerInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ConsumerInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ConsumerInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ControlCommandMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ControlCommandMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ControlCommandMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ControlCommandMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ControlCommandMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DataArrayResponseMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DataArrayResponseMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DataArrayResponseMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DataArrayResponseMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DataArrayResponseMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DataResponseMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DataResponseMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DataResponseMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DataResponseMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DataResponseMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DestinationInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DestinationInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DestinationInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DestinationInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DestinationInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DiscoveryEventMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DiscoveryEventMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DiscoveryEventMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/DiscoveryEventMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/DiscoveryEventMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ExceptionResponseMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ExceptionResponseMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ExceptionResponseMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ExceptionResponseMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ExceptionResponseMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/FlushCommandMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/FlushCommandMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/FlushCommandMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/FlushCommandMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/FlushCommandMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/IntegerResponseMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/IntegerResponseMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/IntegerResponseMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/IntegerResponseMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/IntegerResponseMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalQueueAckMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalQueueAckMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalQueueAckMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalQueueAckMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalQueueAckMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTopicAckMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalTopicAckMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTopicAckMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTopicAckMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalTopicAckMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTraceMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalTraceMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTraceMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTraceMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalTraceMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTransactionMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalTransactionMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTransactionMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/JournalTransactionMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/JournalTransactionMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/KeepAliveInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/KeepAliveInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/KeepAliveInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/KeepAliveInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/KeepAliveInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/LastPartialCommandMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/LastPartialCommandMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/LastPartialCommandMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/LastPartialCommandMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/LastPartialCommandMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/LocalTransactionIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/LocalTransactionIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/LocalTransactionIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/LocalTransactionIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/LocalTransactionIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MarshallerFactory.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MarshallerFactory.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MarshallerFactory.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MarshallerFactory.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MarshallerFactory.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageAckMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageAckMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageAckMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageAckMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageAckMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchNotificationMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchNotificationMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchNotificationMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchNotificationMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageDispatchNotificationMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessageMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessageMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessagePullMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessagePullMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessagePullMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/MessagePullMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/MessagePullMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/NetworkBridgeFilterMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/NetworkBridgeFilterMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/NetworkBridgeFilterMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/NetworkBridgeFilterMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/NetworkBridgeFilterMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/PartialCommandMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/PartialCommandMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/PartialCommandMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/PartialCommandMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/PartialCommandMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerAckMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ProducerAckMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerAckMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerAckMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ProducerAckMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ProducerIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ProducerIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ProducerInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ProducerInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ProducerInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/RemoveInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/RemoveInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/RemoveInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/RemoveInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/RemoveInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/RemoveSubscriptionInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/RemoveSubscriptionInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/RemoveSubscriptionInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/RemoveSubscriptionInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/RemoveSubscriptionInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ReplayCommandMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ReplayCommandMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ReplayCommandMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ReplayCommandMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ReplayCommandMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ResponseMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ResponseMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ResponseMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ResponseMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ResponseMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SessionIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/SessionIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SessionIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SessionIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/SessionIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SessionInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/SessionInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SessionInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SessionInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/SessionInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ShutdownInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ShutdownInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ShutdownInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/ShutdownInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/ShutdownInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SubscriptionInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/SubscriptionInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SubscriptionInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/SubscriptionInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/SubscriptionInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/TransactionIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/TransactionIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/TransactionIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/TransactionIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/TransactionIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/TransactionInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/TransactionInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/TransactionInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/TransactionInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/TransactionInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/WireFormatInfoMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/WireFormatInfoMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/WireFormatInfoMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/WireFormatInfoMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/WireFormatInfoMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)

Copied: activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/XATransactionIdMarshaller.java (from r1483878, activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/XATransactionIdMarshaller.java)
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/XATransactionIdMarshaller.java?p2=activemq/trunk/activemq-openwire-legacy/src/main/java/org/apache/activemq/openwire/v8/XATransactionIdMarshaller.java&p1=activemq/trunk/activemq-client/src/main/java/org/apache/activemq/openwire/v8/XATransactionIdMarshaller.java&r1=1483878&r2=1483902&rev=1483902&view=diff
==============================================================================
    (empty)