blob: e3ed1a4c0c14123eb26d94fb9f79c93d5256114e [file] [log] [blame]
/**
* 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.commands;
public class CommandVisitorAdapter implements CommandVisitor {
@Override
public Response processAddConnection(ConnectionInfo info) throws Exception {
return null;
}
@Override
public Response processAddConsumer(ConsumerInfo info) throws Exception {
return null;
}
@Override
public Response processAddDestination(DestinationInfo info) throws Exception {
return null;
}
@Override
public Response processAddProducer(ProducerInfo info) throws Exception {
return null;
}
@Override
public Response processAddSession(SessionInfo info) throws Exception {
return null;
}
@Override
public Response processBeginTransaction(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processBrokerInfo(BrokerInfo info) throws Exception {
return null;
}
@Override
public Response processBrokerSubscriptionInfo(BrokerSubscriptionInfo info) throws Exception {
return null;
}
@Override
public Response processCommitTransactionOnePhase(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processCommitTransactionTwoPhase(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processEndTransaction(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processFlush(FlushCommand command) throws Exception {
return null;
}
@Override
public Response processForgetTransaction(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processKeepAlive(KeepAliveInfo info) throws Exception {
return null;
}
@Override
public Response processMessage(Message send) throws Exception {
return null;
}
@Override
public Response processMessageAck(MessageAck ack) throws Exception {
return null;
}
@Override
public Response processMessageDispatchNotification(MessageDispatchNotification notification) throws Exception {
return null;
}
@Override
public Response processMessagePull(MessagePull pull) throws Exception {
return null;
}
@Override
public Response processPrepareTransaction(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processProducerAck(ProducerAck ack) throws Exception {
return null;
}
@Override
public Response processRecoverTransactions(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processRemoveConnection(ConnectionId id, long lastDeliveredSequenceId) throws Exception {
return null;
}
@Override
public Response processRemoveConsumer(ConsumerId id, long lastDeliveredSequenceId) throws Exception {
return null;
}
@Override
public Response processRemoveDestination(DestinationInfo info) throws Exception {
return null;
}
@Override
public Response processRemoveProducer(ProducerId id) throws Exception {
return null;
}
@Override
public Response processRemoveSession(SessionId id, long lastDeliveredSequenceId) throws Exception {
return null;
}
@Override
public Response processRemoveSubscription(RemoveSubscriptionInfo info) throws Exception {
return null;
}
@Override
public Response processRollbackTransaction(TransactionInfo info) throws Exception {
return null;
}
@Override
public Response processShutdown(ShutdownInfo info) throws Exception {
return null;
}
@Override
public Response processWireFormat(WireFormatInfo info) throws Exception {
return null;
}
@Override
public Response processMessageDispatch(MessageDispatch dispatch) throws Exception {
return null;
}
@Override
public Response processControlCommand(ControlCommand command) throws Exception {
return null;
}
@Override
public Response processConnectionControl(ConnectionControl control) throws Exception {
return null;
}
@Override
public Response processConnectionError(ConnectionError error) throws Exception {
return null;
}
@Override
public Response processConsumerControl(ConsumerControl control) throws Exception {
return null;
}
}