1 /** 2 * Licensed to the Apache Software Foundation (ASF) under one or more 3 * contributor license agreements. See the NOTICE file distributed with 4 * this work for additional information regarding copyright ownership. 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 7 * the License. You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 package org.apache.activemq.state; 18 19 import org.apache.activemq.command.BrokerInfo; 20 import org.apache.activemq.command.ConnectionControl; 21 import org.apache.activemq.command.ConnectionError; 22 import org.apache.activemq.command.ConnectionId; 23 import org.apache.activemq.command.ConnectionInfo; 24 import org.apache.activemq.command.ConsumerControl; 25 import org.apache.activemq.command.ConsumerId; 26 import org.apache.activemq.command.ConsumerInfo; 27 import org.apache.activemq.command.ControlCommand; 28 import org.apache.activemq.command.DestinationInfo; 29 import org.apache.activemq.command.FlushCommand; 30 import org.apache.activemq.command.KeepAliveInfo; 31 import org.apache.activemq.command.Message; 32 import org.apache.activemq.command.MessageAck; 33 import org.apache.activemq.command.MessageDispatch; 34 import org.apache.activemq.command.MessageDispatchNotification; 35 import org.apache.activemq.command.MessagePull; 36 import org.apache.activemq.command.ProducerAck; 37 import org.apache.activemq.command.ProducerId; 38 import org.apache.activemq.command.ProducerInfo; 39 import org.apache.activemq.command.RemoveSubscriptionInfo; 40 import org.apache.activemq.command.Response; 41 import org.apache.activemq.command.SessionId; 42 import org.apache.activemq.command.SessionInfo; 43 import org.apache.activemq.command.ShutdownInfo; 44 import org.apache.activemq.command.TransactionInfo; 45 import org.apache.activemq.command.WireFormatInfo; 46 47 public class CommandVisitorAdapter implements CommandVisitor { 48 49 public Response processAddConnection(ConnectionInfo info) throws Exception { 50 return null; 51 } 52 53 public Response processAddConsumer(ConsumerInfo info) throws Exception { 54 return null; 55 } 56 57 public Response processAddDestination(DestinationInfo info) throws Exception { 58 return null; 59 } 60 61 public Response processAddProducer(ProducerInfo info) throws Exception { 62 return null; 63 } 64 65 public Response processAddSession(SessionInfo info) throws Exception { 66 return null; 67 } 68 69 public Response processBeginTransaction(TransactionInfo info) throws Exception { 70 return null; 71 } 72 73 public Response processBrokerInfo(BrokerInfo info) throws Exception { 74 return null; 75 } 76 77 public Response processCommitTransactionOnePhase(TransactionInfo info) throws Exception { 78 return null; 79 } 80 81 public Response processCommitTransactionTwoPhase(TransactionInfo info) throws Exception { 82 return null; 83 } 84 85 public Response processEndTransaction(TransactionInfo info) throws Exception { 86 return null; 87 } 88 89 public Response processFlush(FlushCommand command) throws Exception { 90 return null; 91 } 92 93 public Response processForgetTransaction(TransactionInfo info) throws Exception { 94 return null; 95 } 96 97 public Response processKeepAlive(KeepAliveInfo info) throws Exception { 98 return null; 99 } 100 101 public Response processMessage(Message send) throws Exception { 102 return null; 103 } 104 105 public Response processMessageAck(MessageAck ack) throws Exception { 106 return null; 107 } 108 109 public Response processMessageDispatchNotification(MessageDispatchNotification notification) 110 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, long lastDeliveredSequenceId) throws Exception { 131 return null; 132 } 133 134 public Response processRemoveConsumer(ConsumerId id, long lastDeliveredSequenceId) 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, long lastDeliveredSequenceId) 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 }