1 /**2 *3 * Licensed to the Apache Software Foundation (ASF) under one or more4 * contributor license agreements. See the NOTICE file distributed with5 * this work for additional information regarding copyright ownership.6 * The ASF licenses this file to You under the Apache License, Version 2.07 * (the "License"); you may not use this file except in compliance with8 * the License. You may obtain a copy of the License at9 *10 * http://www.apache.org/licenses/LICENSE-2.011 *12 * Unless required by applicable law or agreed to in writing, software13 * distributed under the License is distributed on an "AS IS" BASIS,14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.15 * See the License for the specific language governing permissions and16 * limitations under the License.17 */18 package org.apache.activemq.state;19 20 import org.apache.activemq.command.BrokerInfo;21 import org.apache.activemq.command.ConnectionControl;22 import org.apache.activemq.command.ConnectionError;23 import org.apache.activemq.command.ConnectionId;24 import org.apache.activemq.command.ConnectionInfo;25 import org.apache.activemq.command.ConsumerControl;26 import org.apache.activemq.command.ConsumerId;27 import org.apache.activemq.command.ConsumerInfo;28 import org.apache.activemq.command.ControlCommand;29 import org.apache.activemq.command.DestinationInfo;30 import org.apache.activemq.command.FlushCommand;31 import org.apache.activemq.command.KeepAliveInfo;32 import org.apache.activemq.command.Message;33 import org.apache.activemq.command.MessageAck;34 import org.apache.activemq.command.MessageDispatch;35 import org.apache.activemq.command.MessageDispatchNotification;36 import org.apache.activemq.command.MessagePull;37 import org.apache.activemq.command.ProducerAck;38 import org.apache.activemq.command.ProducerId;39 import org.apache.activemq.command.ProducerInfo;40 import org.apache.activemq.command.RemoveSubscriptionInfo;41 import org.apache.activemq.command.Response;42 import org.apache.activemq.command.SessionId;43 import org.apache.activemq.command.SessionInfo;44 import org.apache.activemq.command.ShutdownInfo;45 import org.apache.activemq.command.TransactionInfo;46 import org.apache.activemq.command.WireFormatInfo;47 48 public class CommandVisitorAdapter implements CommandVisitor {49 50 public Response processAddConnection(ConnectionInfo info) throws Exception {51 return null;52 }53 54 public Response processAddConsumer(ConsumerInfo info) throws Exception {55 return null;56 }57 58 public Response processAddDestination(DestinationInfo info) throws Exception {59 return null;60 }61 62 public Response processAddProducer(ProducerInfo info) throws Exception {63 return null;64 }65 66 public Response processAddSession(SessionInfo info) throws Exception {67 return null;68 }69 70 public Response processBeginTransaction(TransactionInfo info) throws Exception {71 return null;72 }73 74 public Response processBrokerInfo(BrokerInfo info) throws Exception {75 return null;76 }77 78 public Response processCommitTransactionOnePhase(TransactionInfo info) throws Exception {79 return null;80 }81 82 public Response processCommitTransactionTwoPhase(TransactionInfo info) throws Exception {83 return null;84 }85 86 public Response processEndTransaction(TransactionInfo info) throws Exception {87 return null;88 }89 90 public Response processFlush(FlushCommand command) throws Exception {91 return null;92 }93 94 public Response processForgetTransaction(TransactionInfo info) throws Exception {95 return null;96 }97 98 public Response processKeepAlive(KeepAliveInfo info) throws Exception {99 return null;100 }101 102 public Response processMessage(Message send) throws Exception {103 return null;104 }105 106 public Response processMessageAck(MessageAck ack) throws Exception {107 return null;108 }109 110 public Response processMessageDispatchNotification(MessageDispatchNotification notification) throws Exception {111 return null;112 }113 114 public Response processMessagePull(MessagePull pull) throws Exception {115 return null;116 }117 118 public Response processPrepareTransaction(TransactionInfo info) throws Exception {119 return null;120 }121 122 public Response processProducerAck(ProducerAck ack) throws Exception {123 return null;124 }125 126 public Response processRecoverTransactions(TransactionInfo info) throws Exception {127 return null;128 }129 130 public Response processRemoveConnection(ConnectionId id) throws Exception {131 return null;132 }133 134 public Response processRemoveConsumer(ConsumerId id) throws Exception {135 return null;136 }137 138 public Response processRemoveDestination(DestinationInfo info) throws Exception {139 return null;140 }141 142 public Response processRemoveProducer(ProducerId id) throws Exception {143 return null;144 }145 146 public Response processRemoveSession(SessionId id) throws Exception {147 return null;148 }149 150 public Response processRemoveSubscription(RemoveSubscriptionInfo info) throws Exception {151 return null;152 }153 154 public Response processRollbackTransaction(TransactionInfo info) throws Exception {155 return null;156 }157 158 public Response processShutdown(ShutdownInfo info) throws Exception {159 return null;160 }161 162 public Response processWireFormat(WireFormatInfo info) throws Exception {163 return null;164 }165 166 public Response processMessageDispatch(MessageDispatch dispatch) throws Exception {167 return null;168 }169 170 public Response processControlCommand(ControlCommand command) throws Exception {171 return null;172 }173 174 public Response processConnectionControl(ConnectionControl control) throws Exception {175 return null;176 }177 178 public Response processConnectionError(ConnectionError error) throws Exception {179 return null;180 }181 182 public Response processConsumerControl(ConsumerControl control) throws Exception {183 return null;184 }185 186 }187