You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2006/07/31 11:36:51 UTC

svn commit: r427057 [9/22] - in /incubator/activemq/trunk/amazon: ./ amq_brokersession/ amq_corelib/ amq_examples/ amq_examples/bs_async_recv/ amq_examples/bs_send/ amq_examples/bs_sync_recv/ amq_examples/cl_send/ amq_transport/ command/ marshal/

Propchange: incubator/activemq/trunk/amazon/command/DiscoveryEvent.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/DiscoveryEvent.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/ExceptionResponse.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/ExceptionResponse.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/ExceptionResponse.cpp (added)
+++ incubator/activemq/trunk/amazon/command/ExceptionResponse.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,62 @@
+/*
+  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.
+*/
+
+#include "command/ExceptionResponse.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for ExceptionResponse
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+ExceptionResponse::isMarshalAware() const
+{
+    return false;
+}
+
+ExceptionResponse::ExceptionResponse()
+{
+}
+
+int
+ExceptionResponse::getCommandType() const
+{
+    return TYPE;
+}
+
+ExceptionResponse::~ExceptionResponse()
+{
+}
+
+const boost::shared_ptr<const BrokerError>& ExceptionResponse::getException() const
+{
+    return exception_;
+}
+
+void ExceptionResponse::setException(const boost::shared_ptr<BrokerError>& exception)
+{
+    exception_ = exception;
+}

Propchange: incubator/activemq/trunk/amazon/command/ExceptionResponse.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/ExceptionResponse.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/ExceptionResponse.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/ExceptionResponse.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/ExceptionResponse.h (added)
+++ incubator/activemq/trunk/amazon/command/ExceptionResponse.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,66 @@
+/*
+  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.
+*/
+
+#ifndef ExceptionResponse_h_
+#define ExceptionResponse_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/Response.h"    
+#include "BrokerError.h"
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for ExceptionResponse
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class ExceptionResponse : public Response
+    {
+      private:
+        boost::shared_ptr<const BrokerError> exception_;
+
+      public:
+        const static int TYPE = 31;
+    
+      public:
+        ExceptionResponse();
+        virtual ~ExceptionResponse();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+
+        virtual const boost::shared_ptr<const BrokerError>& getException() const;
+        virtual void setException(const boost::shared_ptr<BrokerError>& exception);
+    };
+  }
+}
+
+#endif /*ExceptionResponse_h_*/

Propchange: incubator/activemq/trunk/amazon/command/ExceptionResponse.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/ExceptionResponse.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/FlushCommand.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/FlushCommand.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/FlushCommand.cpp (added)
+++ incubator/activemq/trunk/amazon/command/FlushCommand.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,52 @@
+/*
+  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.
+*/
+
+#include "command/FlushCommand.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for FlushCommand
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+FlushCommand::isMarshalAware() const
+{
+    return false;
+}
+
+FlushCommand::FlushCommand()
+{
+}
+
+int
+FlushCommand::getCommandType() const
+{
+    return TYPE;
+}
+
+FlushCommand::~FlushCommand()
+{
+}

Propchange: incubator/activemq/trunk/amazon/command/FlushCommand.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/FlushCommand.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/FlushCommand.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/FlushCommand.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/FlushCommand.h (added)
+++ incubator/activemq/trunk/amazon/command/FlushCommand.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,61 @@
+/*
+  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.
+*/
+
+#ifndef FlushCommand_h_
+#define FlushCommand_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/BaseCommand.h"    
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for FlushCommand
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class FlushCommand : public BaseCommand
+    {
+      private:
+
+      public:
+        const static int TYPE = 15;
+    
+      public:
+        FlushCommand();
+        virtual ~FlushCommand();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+    };
+  }
+}
+
+#endif /*FlushCommand_h_*/

Propchange: incubator/activemq/trunk/amazon/command/FlushCommand.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/FlushCommand.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/ICommand.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/ICommand.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/ICommand.h (added)
+++ incubator/activemq/trunk/amazon/command/ICommand.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,39 @@
+/*
+  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.
+*/
+
+#ifndef ICommand_hpp_
+#define ICommand_hpp_
+
+#include "command/IDataStructure.h"
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     * Interface for commands.
+     */
+    class ICommand : public IDataStructure
+    {
+      public:
+	virtual ~ICommand(){}
+    };
+  }
+}
+
+#endif /*ICommand_hpp_*/

Propchange: incubator/activemq/trunk/amazon/command/ICommand.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/ICommand.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/IDataStructure.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/IDataStructure.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/IDataStructure.h (added)
+++ incubator/activemq/trunk/amazon/command/IDataStructure.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,38 @@
+/*
+  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.
+*/
+
+#ifndef IDataStructure_hpp_
+#define IDataStructure_hpp_
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     * Mockup interface for writing to streams.
+     */
+    class IDataStructure
+    {
+      public:
+	virtual ~IDataStructure(){}
+        virtual int getCommandType() const = 0;
+    };
+  }
+}
+
+#endif /*IDataStructure_hpp_*/

Propchange: incubator/activemq/trunk/amazon/command/IDataStructure.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/IDataStructure.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/IntegerResponse.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/IntegerResponse.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/IntegerResponse.cpp (added)
+++ incubator/activemq/trunk/amazon/command/IntegerResponse.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,63 @@
+/*
+  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.
+*/
+
+#include "command/IntegerResponse.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for IntegerResponse
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+IntegerResponse::isMarshalAware() const
+{
+    return false;
+}
+
+IntegerResponse::IntegerResponse()
+{
+    result_ = 0;
+}
+
+int
+IntegerResponse::getCommandType() const
+{
+    return TYPE;
+}
+
+IntegerResponse::~IntegerResponse()
+{
+}
+
+int IntegerResponse::getResult() const
+{
+    return result_;
+}
+
+void IntegerResponse::setResult(int result)
+{
+    result_ = result;
+}

Propchange: incubator/activemq/trunk/amazon/command/IntegerResponse.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/IntegerResponse.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/IntegerResponse.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/IntegerResponse.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/IntegerResponse.h (added)
+++ incubator/activemq/trunk/amazon/command/IntegerResponse.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,65 @@
+/*
+  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.
+*/
+
+#ifndef IntegerResponse_h_
+#define IntegerResponse_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/Response.h"    
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for IntegerResponse
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class IntegerResponse : public Response
+    {
+      private:
+        int result_;
+
+      public:
+        const static int TYPE = 34;
+    
+      public:
+        IntegerResponse();
+        virtual ~IntegerResponse();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+
+        virtual int getResult() const;
+        virtual void setResult(int result);
+    };
+  }
+}
+
+#endif /*IntegerResponse_h_*/

Propchange: incubator/activemq/trunk/amazon/command/IntegerResponse.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/IntegerResponse.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalQueueAck.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalQueueAck.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalQueueAck.cpp (added)
+++ incubator/activemq/trunk/amazon/command/JournalQueueAck.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,72 @@
+/*
+  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.
+*/
+
+#include "command/JournalQueueAck.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for JournalQueueAck
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+JournalQueueAck::isMarshalAware() const
+{
+    return false;
+}
+
+JournalQueueAck::JournalQueueAck()
+{
+}
+
+int
+JournalQueueAck::getCommandType() const
+{
+    return TYPE;
+}
+
+JournalQueueAck::~JournalQueueAck()
+{
+}
+
+boost::shared_ptr<const ActiveMQDestination> JournalQueueAck::getDestination() const
+{
+    return destination_;
+}
+
+void JournalQueueAck::setDestination(const boost::shared_ptr<ActiveMQDestination>& destination)
+{
+    destination_ = destination;
+}
+
+boost::shared_ptr<const MessageAck> JournalQueueAck::getMessageAck() const
+{
+    return messageAck_;
+}
+
+void JournalQueueAck::setMessageAck(const boost::shared_ptr<MessageAck>& messageAck)
+{
+    messageAck_ = messageAck;
+}

Propchange: incubator/activemq/trunk/amazon/command/JournalQueueAck.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalQueueAck.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalQueueAck.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalQueueAck.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalQueueAck.h (added)
+++ incubator/activemq/trunk/amazon/command/JournalQueueAck.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,71 @@
+/*
+  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.
+*/
+
+#ifndef JournalQueueAck_h_
+#define JournalQueueAck_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/AbstractCommand.h"    
+#include "ActiveMQDestination.h"
+#include "MessageAck.h"
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for JournalQueueAck
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class JournalQueueAck : public AbstractCommand
+    {
+      private:
+        boost::shared_ptr<const ActiveMQDestination> destination_;
+        boost::shared_ptr<const MessageAck> messageAck_;
+
+      public:
+        const static int TYPE = 52;
+    
+      public:
+        JournalQueueAck();
+        virtual ~JournalQueueAck();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+
+        virtual boost::shared_ptr<const ActiveMQDestination> getDestination() const;
+        virtual void setDestination(const boost::shared_ptr<ActiveMQDestination>& destination);
+
+        virtual boost::shared_ptr<const MessageAck> getMessageAck() const;
+        virtual void setMessageAck(const boost::shared_ptr<MessageAck>& messageAck);
+    };
+  }
+}
+
+#endif /*JournalQueueAck_h_*/

Propchange: incubator/activemq/trunk/amazon/command/JournalQueueAck.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalQueueAck.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalTopicAck.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalTopicAck.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalTopicAck.cpp (added)
+++ incubator/activemq/trunk/amazon/command/JournalTopicAck.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,115 @@
+/*
+  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.
+*/
+
+#include "command/JournalTopicAck.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for JournalTopicAck
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+JournalTopicAck::isMarshalAware() const
+{
+    return false;
+}
+
+JournalTopicAck::JournalTopicAck()
+{
+    messageSequenceId_ = 0;
+    subscritionName_ = "";
+    clientId_ = "";
+}
+
+int
+JournalTopicAck::getCommandType() const
+{
+    return TYPE;
+}
+
+JournalTopicAck::~JournalTopicAck()
+{
+}
+
+boost::shared_ptr<const ActiveMQDestination> JournalTopicAck::getDestination() const
+{
+    return destination_;
+}
+
+void JournalTopicAck::setDestination(const boost::shared_ptr<ActiveMQDestination>& destination)
+{
+    destination_ = destination;
+}
+
+boost::shared_ptr<const MessageId> JournalTopicAck::getMessageId() const
+{
+    return messageId_;
+}
+
+void JournalTopicAck::setMessageId(const boost::shared_ptr<MessageId>& messageId)
+{
+    messageId_ = messageId;
+}
+
+int64_t JournalTopicAck::getMessageSequenceId() const
+{
+    return messageSequenceId_;
+}
+
+void JournalTopicAck::setMessageSequenceId(int64_t messageSequenceId)
+{
+    messageSequenceId_ = messageSequenceId;
+}
+
+const std::string& JournalTopicAck::getSubscritionName() const
+{
+    return subscritionName_;
+}
+
+void JournalTopicAck::setSubscritionName(const std::string& subscritionName)
+{
+    subscritionName_ = subscritionName;
+}
+
+const std::string& JournalTopicAck::getClientId() const
+{
+    return clientId_;
+}
+
+void JournalTopicAck::setClientId(const std::string& clientId)
+{
+    clientId_ = clientId;
+}
+
+boost::shared_ptr<const TransactionId> JournalTopicAck::getTransactionId() const
+{
+    return transactionId_;
+}
+
+void JournalTopicAck::setTransactionId(const boost::shared_ptr<TransactionId>& transactionId)
+{
+    transactionId_ = transactionId;
+}

Propchange: incubator/activemq/trunk/amazon/command/JournalTopicAck.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalTopicAck.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalTopicAck.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalTopicAck.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalTopicAck.h (added)
+++ incubator/activemq/trunk/amazon/command/JournalTopicAck.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,88 @@
+/*
+  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.
+*/
+
+#ifndef JournalTopicAck_h_
+#define JournalTopicAck_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/AbstractCommand.h"    
+#include "ActiveMQDestination.h"
+#include "MessageId.h"
+#include "TransactionId.h"
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for JournalTopicAck
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class JournalTopicAck : public AbstractCommand
+    {
+      private:
+        boost::shared_ptr<const ActiveMQDestination> destination_;
+        boost::shared_ptr<const MessageId> messageId_;
+        int64_t messageSequenceId_;
+        std::string subscritionName_;
+        std::string clientId_;
+        boost::shared_ptr<const TransactionId> transactionId_;
+
+      public:
+        const static int TYPE = 50;
+    
+      public:
+        JournalTopicAck();
+        virtual ~JournalTopicAck();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+
+        virtual boost::shared_ptr<const ActiveMQDestination> getDestination() const;
+        virtual void setDestination(const boost::shared_ptr<ActiveMQDestination>& destination);
+
+        virtual boost::shared_ptr<const MessageId> getMessageId() const;
+        virtual void setMessageId(const boost::shared_ptr<MessageId>& messageId);
+
+        virtual int64_t getMessageSequenceId() const;
+        virtual void setMessageSequenceId(int64_t messageSequenceId);
+
+        virtual const std::string& getSubscritionName() const;
+        virtual void setSubscritionName(const std::string& subscritionName);
+
+        virtual const std::string& getClientId() const;
+        virtual void setClientId(const std::string& clientId);
+
+        virtual boost::shared_ptr<const TransactionId> getTransactionId() const;
+        virtual void setTransactionId(const boost::shared_ptr<TransactionId>& transactionId);
+    };
+  }
+}
+
+#endif /*JournalTopicAck_h_*/

Propchange: incubator/activemq/trunk/amazon/command/JournalTopicAck.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalTopicAck.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalTrace.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalTrace.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalTrace.cpp (added)
+++ incubator/activemq/trunk/amazon/command/JournalTrace.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,63 @@
+/*
+  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.
+*/
+
+#include "command/JournalTrace.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for JournalTrace
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+JournalTrace::isMarshalAware() const
+{
+    return false;
+}
+
+JournalTrace::JournalTrace()
+{
+    message_ = "";
+}
+
+int
+JournalTrace::getCommandType() const
+{
+    return TYPE;
+}
+
+JournalTrace::~JournalTrace()
+{
+}
+
+const std::string& JournalTrace::getMessage() const
+{
+    return message_;
+}
+
+void JournalTrace::setMessage(const std::string& message)
+{
+    message_ = message;
+}

Propchange: incubator/activemq/trunk/amazon/command/JournalTrace.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalTrace.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalTrace.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalTrace.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalTrace.h (added)
+++ incubator/activemq/trunk/amazon/command/JournalTrace.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,65 @@
+/*
+  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.
+*/
+
+#ifndef JournalTrace_h_
+#define JournalTrace_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/AbstractCommand.h"    
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for JournalTrace
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class JournalTrace : public AbstractCommand
+    {
+      private:
+        std::string message_;
+
+      public:
+        const static int TYPE = 53;
+    
+      public:
+        JournalTrace();
+        virtual ~JournalTrace();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+
+        virtual const std::string& getMessage() const;
+        virtual void setMessage(const std::string& message);
+    };
+  }
+}
+
+#endif /*JournalTrace_h_*/

Propchange: incubator/activemq/trunk/amazon/command/JournalTrace.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalTrace.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalTransaction.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalTransaction.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalTransaction.cpp (added)
+++ incubator/activemq/trunk/amazon/command/JournalTransaction.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,84 @@
+/*
+  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.
+*/
+
+#include "command/JournalTransaction.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for JournalTransaction
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+JournalTransaction::isMarshalAware() const
+{
+    return false;
+}
+
+JournalTransaction::JournalTransaction()
+{
+    type_ = 0;
+    wasPrepared_ = 0;
+}
+
+int
+JournalTransaction::getCommandType() const
+{
+    return TYPE;
+}
+
+JournalTransaction::~JournalTransaction()
+{
+}
+
+boost::shared_ptr<const TransactionId> JournalTransaction::getTransactionId() const
+{
+    return transactionId_;
+}
+
+void JournalTransaction::setTransactionId(const boost::shared_ptr<TransactionId>& transactionId)
+{
+    transactionId_ = transactionId;
+}
+
+uint8_t JournalTransaction::getType() const
+{
+    return type_;
+}
+
+void JournalTransaction::setType(uint8_t type)
+{
+    type_ = type;
+}
+
+bool JournalTransaction::getWasPrepared() const
+{
+    return wasPrepared_;
+}
+
+void JournalTransaction::setWasPrepared(bool wasPrepared)
+{
+    wasPrepared_ = wasPrepared;
+}

Propchange: incubator/activemq/trunk/amazon/command/JournalTransaction.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalTransaction.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/JournalTransaction.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/JournalTransaction.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/JournalTransaction.h (added)
+++ incubator/activemq/trunk/amazon/command/JournalTransaction.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,74 @@
+/*
+  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.
+*/
+
+#ifndef JournalTransaction_h_
+#define JournalTransaction_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/AbstractCommand.h"    
+#include "TransactionId.h"
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for JournalTransaction
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class JournalTransaction : public AbstractCommand
+    {
+      private:
+        boost::shared_ptr<const TransactionId> transactionId_;
+        uint8_t type_;
+        bool wasPrepared_;
+
+      public:
+        const static int TYPE = 54;
+    
+      public:
+        JournalTransaction();
+        virtual ~JournalTransaction();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+
+        virtual boost::shared_ptr<const TransactionId> getTransactionId() const;
+        virtual void setTransactionId(const boost::shared_ptr<TransactionId>& transactionId);
+
+        virtual uint8_t getType() const;
+        virtual void setType(uint8_t type);
+
+        virtual bool getWasPrepared() const;
+        virtual void setWasPrepared(bool wasPrepared);
+    };
+  }
+}
+
+#endif /*JournalTransaction_h_*/

Propchange: incubator/activemq/trunk/amazon/command/JournalTransaction.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/JournalTransaction.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/KeepAliveInfo.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/KeepAliveInfo.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/KeepAliveInfo.cpp (added)
+++ incubator/activemq/trunk/amazon/command/KeepAliveInfo.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,52 @@
+/*
+  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.
+*/
+
+#include "command/KeepAliveInfo.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for KeepAliveInfo
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+KeepAliveInfo::isMarshalAware() const
+{
+    return false;
+}
+
+KeepAliveInfo::KeepAliveInfo()
+{
+}
+
+int
+KeepAliveInfo::getCommandType() const
+{
+    return TYPE;
+}
+
+KeepAliveInfo::~KeepAliveInfo()
+{
+}

Propchange: incubator/activemq/trunk/amazon/command/KeepAliveInfo.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/KeepAliveInfo.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/KeepAliveInfo.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/KeepAliveInfo.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/KeepAliveInfo.h (added)
+++ incubator/activemq/trunk/amazon/command/KeepAliveInfo.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,61 @@
+/*
+  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.
+*/
+
+#ifndef KeepAliveInfo_h_
+#define KeepAliveInfo_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/BaseCommand.h"    
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for KeepAliveInfo
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class KeepAliveInfo : public BaseCommand
+    {
+      private:
+
+      public:
+        const static int TYPE = 10;
+    
+      public:
+        KeepAliveInfo();
+        virtual ~KeepAliveInfo();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+    };
+  }
+}
+
+#endif /*KeepAliveInfo_h_*/

Propchange: incubator/activemq/trunk/amazon/command/KeepAliveInfo.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/KeepAliveInfo.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/LastPartialCommand.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/LastPartialCommand.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/LastPartialCommand.cpp (added)
+++ incubator/activemq/trunk/amazon/command/LastPartialCommand.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,52 @@
+/*
+  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.
+*/
+
+#include "command/LastPartialCommand.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for LastPartialCommand
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+LastPartialCommand::isMarshalAware() const
+{
+    return false;
+}
+
+LastPartialCommand::LastPartialCommand()
+{
+}
+
+int
+LastPartialCommand::getCommandType() const
+{
+    return TYPE;
+}
+
+LastPartialCommand::~LastPartialCommand()
+{
+}

Propchange: incubator/activemq/trunk/amazon/command/LastPartialCommand.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/LastPartialCommand.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/LastPartialCommand.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/LastPartialCommand.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/LastPartialCommand.h (added)
+++ incubator/activemq/trunk/amazon/command/LastPartialCommand.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,61 @@
+/*
+  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.
+*/
+
+#ifndef LastPartialCommand_h_
+#define LastPartialCommand_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/PartialCommand.h"    
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for LastPartialCommand
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class LastPartialCommand : public PartialCommand
+    {
+      private:
+
+      public:
+        const static int TYPE = 61;
+    
+      public:
+        LastPartialCommand();
+        virtual ~LastPartialCommand();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+    };
+  }
+}
+
+#endif /*LastPartialCommand_h_*/

Propchange: incubator/activemq/trunk/amazon/command/LastPartialCommand.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/LastPartialCommand.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/LocalTransactionId.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/LocalTransactionId.cpp?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/LocalTransactionId.cpp (added)
+++ incubator/activemq/trunk/amazon/command/LocalTransactionId.cpp Mon Jul 31 02:36:40 2006
@@ -0,0 +1,73 @@
+/*
+  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.
+*/
+
+#include "command/LocalTransactionId.h"
+
+using namespace ActiveMQ::Command;
+
+/*
+ *
+ *  Marshalling code for Open Wire Format for LocalTransactionId
+ *
+ *
+ *  NOTE!: This file is autogenerated - do not modify!
+ *         if you need to make a change, please see the Groovy scripts in the
+ *         activemq-core module
+ *
+ */
+bool
+LocalTransactionId::isMarshalAware() const
+{
+    return false;
+}
+
+LocalTransactionId::LocalTransactionId()
+{
+    value_ = 0;
+}
+
+int
+LocalTransactionId::getCommandType() const
+{
+    return TYPE;
+}
+
+LocalTransactionId::~LocalTransactionId()
+{
+}
+
+int64_t LocalTransactionId::getValue() const
+{
+    return value_;
+}
+
+void LocalTransactionId::setValue(int64_t value)
+{
+    value_ = value;
+}
+
+boost::shared_ptr<const ConnectionId> LocalTransactionId::getConnectionId() const
+{
+    return connectionId_;
+}
+
+void LocalTransactionId::setConnectionId(const boost::shared_ptr<ConnectionId>& connectionId)
+{
+    connectionId_ = connectionId;
+}

Propchange: incubator/activemq/trunk/amazon/command/LocalTransactionId.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/LocalTransactionId.cpp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/LocalTransactionId.h
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/LocalTransactionId.h?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/LocalTransactionId.h (added)
+++ incubator/activemq/trunk/amazon/command/LocalTransactionId.h Mon Jul 31 02:36:40 2006
@@ -0,0 +1,70 @@
+/*
+  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.
+*/
+
+#ifndef LocalTransactionId_h_
+#define LocalTransactionId_h_
+
+#include <string>
+#include <vector>
+#include <exception>
+#include <inttypes.h>
+#include <boost/shared_ptr.hpp>
+
+#include "command/TransactionId.h"    
+#include "ConnectionId.h"
+
+namespace ActiveMQ {
+  namespace Command {
+
+    /*
+     *
+     *  Marshalling code for Open Wire Format for LocalTransactionId
+     *
+     *
+     *  NOTE!: This file is autogenerated - do not modify!
+     *         if you need to make a change, please see the Groovy scripts in the
+     *         activemq-core module
+     *
+     */
+    class LocalTransactionId : public TransactionId
+    {
+      private:
+        int64_t value_;
+        boost::shared_ptr<const ConnectionId> connectionId_;
+
+      public:
+        const static int TYPE = 111;
+    
+      public:
+        LocalTransactionId();
+        virtual ~LocalTransactionId();
+    
+        virtual bool isMarshalAware() const;
+        virtual int getCommandType() const;
+
+        virtual int64_t getValue() const;
+        virtual void setValue(int64_t value);
+
+        virtual boost::shared_ptr<const ConnectionId> getConnectionId() const;
+        virtual void setConnectionId(const boost::shared_ptr<ConnectionId>& connectionId);
+    };
+  }
+}
+
+#endif /*LocalTransactionId_h_*/

Propchange: incubator/activemq/trunk/amazon/command/LocalTransactionId.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/activemq/trunk/amazon/command/LocalTransactionId.h
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: incubator/activemq/trunk/amazon/command/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/Makefile.am?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/Makefile.am (added)
+++ incubator/activemq/trunk/amazon/command/Makefile.am Mon Jul 31 02:36:40 2006
@@ -0,0 +1,4 @@
+INCLUDES = -I../
+lib_LTLIBRARIES = libamq_command.la
+libamq_command_la_SOURCES = ActiveMQBytesMessage.cpp ActiveMQDestination.cpp ActiveMQMapMessage.cpp ActiveMQMessage.cpp ActiveMQObjectMessage.cpp ActiveMQQueue.cpp ActiveMQStreamMessage.cpp ActiveMQTempDestination.cpp ActiveMQTempQueue.cpp ActiveMQTempTopic.cpp ActiveMQTextMessage.cpp ActiveMQTopic.cpp BaseCommand.cpp BrokerError.cpp BrokerId.cpp BrokerInfo.cpp ConnectionError.cpp ConnectionId.cpp ConnectionInfo.cpp ConsumerId.cpp ConsumerInfo.cpp ControlCommand.cpp DataArrayResponse.cpp DataResponse.cpp DestinationInfo.cpp DiscoveryEvent.cpp ExceptionResponse.cpp FlushCommand.cpp IntegerResponse.cpp JournalQueueAck.cpp JournalTopicAck.cpp JournalTrace.cpp JournalTransaction.cpp KeepAliveInfo.cpp LastPartialCommand.cpp LocalTransactionId.cpp MessageAck.cpp Message.cpp MessageDispatch.cpp MessageDispatchNotification.cpp MessageId.cpp NetworkBridgeFilter.cpp PartialCommand.cpp ProducerId.cpp ProducerInfo.cpp RemoveInfo.cpp RemoveSubscriptionInfo.cpp ReplayCommand.cpp Response.
 cpp SessionId.cpp SessionInfo.cpp ShutdownInfo.cpp SubscriptionInfo.cpp TransactionId.cpp TransactionInfo.cpp WireFormatInfo.cpp XATransactionId.cpp ConsumerControl.cpp ConnectionControl.cpp
+include_HEADERS = AbstractCommand.h ActiveMQBytesMessage.h ActiveMQDestination.h ActiveMQMapMessage.h ActiveMQMessage.h ActiveMQObjectMessage.h ActiveMQQueue.h ActiveMQStreamMessage.h ActiveMQTempDestination.h ActiveMQTempQueue.h ActiveMQTempTopic.h ActiveMQTextMessage.h ActiveMQTopic.h BaseCommand.h BrokerError.h BrokerId.h BrokerInfo.h CommandTypes.h ConnectionControl.h ConnectionError.h ConnectionId.h ConnectionInfo.h ConsumerControl.h ConsumerId.h ConsumerInfo.h ControlCommand.h DataArrayResponse.h DataResponse.h DestinationInfo.h DiscoveryEvent.h ExceptionResponse.h FlushCommand.h ICommand.h IDataStructure.h IntegerResponse.h JournalQueueAck.h JournalTopicAck.h JournalTrace.h JournalTransaction.h KeepAliveInfo.h LastPartialCommand.h LocalTransactionId.h MessageAck.h MessageDispatch.h MessageDispatchNotification.h Message.h MessageId.h NetworkBridgeFilter.h PartialCommand.h ProducerId.h ProducerInfo.h RemoveInfo.h RemoveSubscriptionInfo.h ReplayCommand.h Response.h Sessi
 onId.h SessionInfo.h ShutdownInfo.h SubscriptionInfo.h TransactionId.h TransactionInfo.h WireFormatInfo.h XATransactionId.h 

Added: incubator/activemq/trunk/amazon/command/Makefile.in
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/amazon/command/Makefile.in?rev=427057&view=auto
==============================================================================
--- incubator/activemq/trunk/amazon/command/Makefile.in (added)
+++ incubator/activemq/trunk/amazon/command/Makefile.in Mon Jul 31 02:36:40 2006
@@ -0,0 +1,592 @@
+# Makefile.in generated by automake 1.9.6 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005  Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ..
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+INSTALL = @INSTALL@
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+subdir = command
+DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \
+	$(srcdir)/Makefile.in
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/configure.in
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+	$(ACLOCAL_M4)
+mkinstalldirs = $(install_sh) -d
+CONFIG_CLEAN_FILES =
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+    *) f=$$p;; \
+  esac;
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"
+libLTLIBRARIES_INSTALL = $(INSTALL)
+LTLIBRARIES = $(lib_LTLIBRARIES)
+libamq_command_la_LIBADD =
+am_libamq_command_la_OBJECTS = ActiveMQBytesMessage.lo \
+	ActiveMQDestination.lo ActiveMQMapMessage.lo \
+	ActiveMQMessage.lo ActiveMQObjectMessage.lo ActiveMQQueue.lo \
+	ActiveMQStreamMessage.lo ActiveMQTempDestination.lo \
+	ActiveMQTempQueue.lo ActiveMQTempTopic.lo \
+	ActiveMQTextMessage.lo ActiveMQTopic.lo BaseCommand.lo \
+	BrokerError.lo BrokerId.lo BrokerInfo.lo ConnectionError.lo \
+	ConnectionId.lo ConnectionInfo.lo ConsumerId.lo \
+	ConsumerInfo.lo ControlCommand.lo DataArrayResponse.lo \
+	DataResponse.lo DestinationInfo.lo DiscoveryEvent.lo \
+	ExceptionResponse.lo FlushCommand.lo IntegerResponse.lo \
+	JournalQueueAck.lo JournalTopicAck.lo JournalTrace.lo \
+	JournalTransaction.lo KeepAliveInfo.lo LastPartialCommand.lo \
+	LocalTransactionId.lo MessageAck.lo Message.lo \
+	MessageDispatch.lo MessageDispatchNotification.lo MessageId.lo \
+	NetworkBridgeFilter.lo PartialCommand.lo ProducerId.lo \
+	ProducerInfo.lo RemoveInfo.lo RemoveSubscriptionInfo.lo \
+	ReplayCommand.lo Response.lo SessionId.lo SessionInfo.lo \
+	ShutdownInfo.lo SubscriptionInfo.lo TransactionId.lo \
+	TransactionInfo.lo WireFormatInfo.lo XATransactionId.lo \
+	ConsumerControl.lo ConnectionControl.lo
+libamq_command_la_OBJECTS = $(am_libamq_command_la_OBJECTS)
+DEFAULT_INCLUDES = -I. -I$(srcdir)
+depcomp = $(SHELL) $(top_srcdir)/depcomp
+am__depfiles_maybe = depfiles
+CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
+LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
+	$(AM_CXXFLAGS) $(CXXFLAGS)
+CXXLD = $(CXX)
+CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
+	$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+SOURCES = $(libamq_command_la_SOURCES)
+DIST_SOURCES = $(libamq_command_la_SOURCES)
+includeHEADERS_INSTALL = $(INSTALL_HEADER)
+HEADERS = $(include_HEADERS)
+ETAGS = etags
+CTAGS = ctags
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ACLOCAL = @ACLOCAL@
+AMDEP_FALSE = @AMDEP_FALSE@
+AMDEP_TRUE = @AMDEP_TRUE@
+AMTAR = @AMTAR@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+ECHO = @ECHO@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+F77 = @F77@
+FFLAGS = @FFLAGS@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LDFLAGS = @LDFLAGS@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+MAKEINFO = @MAKEINFO@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+RANLIB = @RANLIB@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+VERSION = @VERSION@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_F77 = @ac_ct_F77@
+ac_ct_RANLIB = @ac_ct_RANLIB@
+ac_ct_STRIP = @ac_ct_STRIP@
+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
+am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+datadir = @datadir@
+exec_prefix = @exec_prefix@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+INCLUDES = -I../
+lib_LTLIBRARIES = libamq_command.la
+libamq_command_la_SOURCES = ActiveMQBytesMessage.cpp \
+	ActiveMQDestination.cpp ActiveMQMapMessage.cpp \
+	ActiveMQMessage.cpp ActiveMQObjectMessage.cpp \
+	ActiveMQQueue.cpp ActiveMQStreamMessage.cpp \
+	ActiveMQTempDestination.cpp ActiveMQTempQueue.cpp \
+	ActiveMQTempTopic.cpp ActiveMQTextMessage.cpp \
+	ActiveMQTopic.cpp BaseCommand.cpp BrokerError.cpp BrokerId.cpp \
+	BrokerInfo.cpp ConnectionError.cpp ConnectionId.cpp \
+	ConnectionInfo.cpp ConsumerId.cpp ConsumerInfo.cpp \
+	ControlCommand.cpp DataArrayResponse.cpp DataResponse.cpp \
+	DestinationInfo.cpp DiscoveryEvent.cpp ExceptionResponse.cpp \
+	FlushCommand.cpp IntegerResponse.cpp JournalQueueAck.cpp \
+	JournalTopicAck.cpp JournalTrace.cpp JournalTransaction.cpp \
+	KeepAliveInfo.cpp LastPartialCommand.cpp \
+	LocalTransactionId.cpp MessageAck.cpp Message.cpp \
+	MessageDispatch.cpp MessageDispatchNotification.cpp \
+	MessageId.cpp NetworkBridgeFilter.cpp PartialCommand.cpp \
+	ProducerId.cpp ProducerInfo.cpp RemoveInfo.cpp \
+	RemoveSubscriptionInfo.cpp ReplayCommand.cpp Response.cpp \
+	SessionId.cpp SessionInfo.cpp ShutdownInfo.cpp \
+	SubscriptionInfo.cpp TransactionId.cpp TransactionInfo.cpp \
+	WireFormatInfo.cpp XATransactionId.cpp ConsumerControl.cpp \
+	ConnectionControl.cpp
+include_HEADERS = AbstractCommand.h ActiveMQBytesMessage.h \
+	ActiveMQDestination.h ActiveMQMapMessage.h ActiveMQMessage.h \
+	ActiveMQObjectMessage.h ActiveMQQueue.h \
+	ActiveMQStreamMessage.h ActiveMQTempDestination.h \
+	ActiveMQTempQueue.h ActiveMQTempTopic.h ActiveMQTextMessage.h \
+	ActiveMQTopic.h BaseCommand.h BrokerError.h BrokerId.h \
+	BrokerInfo.h CommandTypes.h ConnectionControl.h \
+	ConnectionError.h ConnectionId.h ConnectionInfo.h \
+	ConsumerControl.h ConsumerId.h ConsumerInfo.h ControlCommand.h \
+	DataArrayResponse.h DataResponse.h DestinationInfo.h \
+	DiscoveryEvent.h ExceptionResponse.h FlushCommand.h ICommand.h \
+	IDataStructure.h IntegerResponse.h JournalQueueAck.h \
+	JournalTopicAck.h JournalTrace.h JournalTransaction.h \
+	KeepAliveInfo.h LastPartialCommand.h LocalTransactionId.h \
+	MessageAck.h MessageDispatch.h MessageDispatchNotification.h \
+	Message.h MessageId.h NetworkBridgeFilter.h PartialCommand.h \
+	ProducerId.h ProducerInfo.h RemoveInfo.h \
+	RemoveSubscriptionInfo.h ReplayCommand.h Response.h \
+	SessionId.h SessionInfo.h ShutdownInfo.h SubscriptionInfo.h \
+	TransactionId.h TransactionInfo.h WireFormatInfo.h \
+	XATransactionId.h
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .cpp .lo .o .obj
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
+	@for dep in $?; do \
+	  case '$(am__configure_deps)' in \
+	    *$$dep*) \
+	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+		&& exit 0; \
+	      exit 1;; \
+	  esac; \
+	done; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  command/Makefile'; \
+	cd $(top_srcdir) && \
+	  $(AUTOMAKE) --foreign  command/Makefile
+.PRECIOUS: Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+	@case '$?' in \
+	  *config.status*) \
+	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+	  *) \
+	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
+	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+	esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure:  $(am__configure_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+install-libLTLIBRARIES: $(lib_LTLIBRARIES)
+	@$(NORMAL_INSTALL)
+	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+	  if test -f $$p; then \
+	    f=$(am__strip_dir) \
+	    echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
+	    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
+	  else :; fi; \
+	done
+
+uninstall-libLTLIBRARIES:
+	@$(NORMAL_UNINSTALL)
+	@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+	  p=$(am__strip_dir) \
+	  echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
+	  $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
+	done
+
+clean-libLTLIBRARIES:
+	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
+	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
+	  test "$$dir" != "$$p" || dir=.; \
+	  echo "rm -f \"$${dir}/so_locations\""; \
+	  rm -f "$${dir}/so_locations"; \
+	done
+libamq_command.la: $(libamq_command_la_OBJECTS) $(libamq_command_la_DEPENDENCIES) 
+	$(CXXLINK) -rpath $(libdir) $(libamq_command_la_LDFLAGS) $(libamq_command_la_OBJECTS) $(libamq_command_la_LIBADD) $(LIBS)
+
+mostlyclean-compile:
+	-rm -f *.$(OBJEXT)
+
+distclean-compile:
+	-rm -f *.tab.c
+
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQBytesMessage.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQDestination.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQMapMessage.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQMessage.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQObjectMessage.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQQueue.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQStreamMessage.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQTempDestination.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQTempQueue.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQTempTopic.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQTextMessage.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ActiveMQTopic.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BaseCommand.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BrokerError.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BrokerId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BrokerInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConnectionControl.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConnectionError.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConnectionId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConnectionInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConsumerControl.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConsumerId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConsumerInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ControlCommand.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DataArrayResponse.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DataResponse.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DestinationInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DiscoveryEvent.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ExceptionResponse.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FlushCommand.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IntegerResponse.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JournalQueueAck.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JournalTopicAck.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JournalTrace.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JournalTransaction.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/KeepAliveInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LastPartialCommand.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LocalTransactionId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Message.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MessageAck.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MessageDispatch.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MessageDispatchNotification.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MessageId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NetworkBridgeFilter.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PartialCommand.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ProducerId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ProducerInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RemoveInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RemoveSubscriptionInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ReplayCommand.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Response.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SessionId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SessionInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ShutdownInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SubscriptionInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TransactionId.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TransactionInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WireFormatInfo.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XATransactionId.Plo@am__quote@
+
+.cpp.o:
+@am__fastdepCXX_TRUE@	if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
+@am__fastdepCXX_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ $<
+
+.cpp.obj:
+@am__fastdepCXX_TRUE@	if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
+@am__fastdepCXX_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
+
+.cpp.lo:
+@am__fastdepCXX_TRUE@	if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
+@am__fastdepCXX_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@	$(LTCXXCOMPILE) -c -o $@ $<
+
+mostlyclean-libtool:
+	-rm -f *.lo
+
+clean-libtool:
+	-rm -rf .libs _libs
+
+distclean-libtool:
+	-rm -f libtool
+uninstall-info-am:
+install-includeHEADERS: $(include_HEADERS)
+	@$(NORMAL_INSTALL)
+	test -z "$(includedir)" || $(mkdir_p) "$(DESTDIR)$(includedir)"
+	@list='$(include_HEADERS)'; for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  f=$(am__strip_dir) \
+	  echo " $(includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \
+	  $(includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \
+	done
+
+uninstall-includeHEADERS:
+	@$(NORMAL_UNINSTALL)
+	@list='$(include_HEADERS)'; for p in $$list; do \
+	  f=$(am__strip_dir) \
+	  echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \
+	  rm -f "$(DESTDIR)$(includedir)/$$f"; \
+	done
+
+ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	mkid -fID $$unique
+tags: TAGS
+
+TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	tags=; \
+	here=`pwd`; \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+	  test -n "$$unique" || unique=$$empty_fix; \
+	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+	    $$tags $$unique; \
+	fi
+ctags: CTAGS
+CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+		$(TAGS_FILES) $(LISP)
+	tags=; \
+	here=`pwd`; \
+	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+	unique=`for i in $$list; do \
+	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+	  done | \
+	  $(AWK) '    { files[$$0] = 1; } \
+	       END { for (i in files) print i; }'`; \
+	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+	     $$tags $$unique
+
+GTAGS:
+	here=`$(am__cd) $(top_builddir) && pwd` \
+	  && cd $(top_srcdir) \
+	  && gtags -i $(GTAGS_ARGS) $$here
+
+distclean-tags:
+	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+
+distdir: $(DISTFILES)
+	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+	list='$(DISTFILES)'; for file in $$list; do \
+	  case $$file in \
+	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
+	  esac; \
+	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+	    dir="/$$dir"; \
+	    $(mkdir_p) "$(distdir)$$dir"; \
+	  else \
+	    dir=''; \
+	  fi; \
+	  if test -d $$d/$$file; then \
+	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
+	    fi; \
+	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
+	  else \
+	    test -f $(distdir)/$$file \
+	    || cp -p $$d/$$file $(distdir)/$$file \
+	    || exit 1; \
+	  fi; \
+	done
+check-am: all-am
+check: check-am
+all-am: Makefile $(LTLIBRARIES) $(HEADERS)
+installdirs:
+	for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \
+	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
+	done
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	  `test -z '$(STRIP)' || \
+	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+
+maintainer-clean-generic:
+	@echo "This command is intended for maintainers to use"
+	@echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
+	mostlyclean-am
+
+distclean: distclean-am
+	-rm -rf ./$(DEPDIR)
+	-rm -f Makefile
+distclean-am: clean-am distclean-compile distclean-generic \
+	distclean-libtool distclean-tags
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+info: info-am
+
+info-am:
+
+install-data-am: install-includeHEADERS
+
+install-exec-am: install-libLTLIBRARIES
+
+install-info: install-info-am
+
+install-man:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+	-rm -rf ./$(DEPDIR)
+	-rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-compile mostlyclean-generic \
+	mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-includeHEADERS uninstall-info-am \
+	uninstall-libLTLIBRARIES
+
+.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+	clean-libLTLIBRARIES clean-libtool ctags distclean \
+	distclean-compile distclean-generic distclean-libtool \
+	distclean-tags distdir dvi dvi-am html html-am info info-am \
+	install install-am install-data install-data-am install-exec \
+	install-exec-am install-includeHEADERS install-info \
+	install-info-am install-libLTLIBRARIES install-man \
+	install-strip installcheck installcheck-am installdirs \
+	maintainer-clean maintainer-clean-generic mostlyclean \
+	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
+	pdf pdf-am ps ps-am tags uninstall uninstall-am \
+	uninstall-includeHEADERS uninstall-info-am \
+	uninstall-libLTLIBRARIES
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT: