KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > activemq > state > CommandVisitorAdapter


1 /**
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one or more
4  * contributor license agreements. See the NOTICE file distributed with
5  * this work for additional information regarding copyright ownership.
6  * The ASF licenses this file to You under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with
8  * the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * 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 and
16  * 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 JavaDoc {
51         return null;
52     }
53
54     public Response processAddConsumer(ConsumerInfo info) throws Exception JavaDoc {
55         return null;
56     }
57
58     public Response processAddDestination(DestinationInfo info) throws Exception JavaDoc {
59         return null;
60     }
61
62     public Response processAddProducer(ProducerInfo info) throws Exception JavaDoc {
63         return null;
64     }
65
66     public Response processAddSession(SessionInfo info) throws Exception JavaDoc {
67         return null;
68     }
69
70     public Response processBeginTransaction(TransactionInfo info) throws Exception JavaDoc {
71         return null;
72     }
73
74     public Response processBrokerInfo(BrokerInfo info) throws Exception JavaDoc {
75         return null;
76     }
77
78     public Response processCommitTransactionOnePhase(TransactionInfo info) throws Exception JavaDoc {
79         return null;
80     }
81
82     public Response processCommitTransactionTwoPhase(TransactionInfo info) throws Exception JavaDoc {
83         return null;
84     }
85
86     public Response processEndTransaction(TransactionInfo info) throws Exception JavaDoc {
87         return null;
88     }
89
90     public Response processFlush(FlushCommand command) throws Exception JavaDoc {
91         return null;
92     }
93
94     public Response processForgetTransaction(TransactionInfo info) throws Exception JavaDoc {
95         return null;
96     }
97
98     public Response processKeepAlive(KeepAliveInfo info) throws Exception JavaDoc {
99         return null;
100     }
101
102     public Response processMessage(Message send) throws Exception JavaDoc {
103         return null;
104     }
105
106     public Response processMessageAck(MessageAck ack) throws Exception JavaDoc {
107         return null;
108     }
109
110     public Response processMessageDispatchNotification(MessageDispatchNotification notification) throws Exception JavaDoc {
111         return null;
112     }
113
114     public Response processMessagePull(MessagePull pull) throws Exception JavaDoc {
115         return null;
116     }
117
118     public Response processPrepareTransaction(TransactionInfo info) throws Exception JavaDoc {
119         return null;
120     }
121
122     public Response processProducerAck(ProducerAck ack) throws Exception JavaDoc {
123         return null;
124     }
125
126     public Response processRecoverTransactions(TransactionInfo info) throws Exception JavaDoc {
127         return null;
128     }
129
130     public Response processRemoveConnection(ConnectionId id) throws Exception JavaDoc {
131         return null;
132     }
133
134     public Response processRemoveConsumer(ConsumerId id) throws Exception JavaDoc {
135         return null;
136     }
137
138     public Response processRemoveDestination(DestinationInfo info) throws Exception JavaDoc {
139         return null;
140     }
141
142     public Response processRemoveProducer(ProducerId id) throws Exception JavaDoc {
143         return null;
144     }
145
146     public Response processRemoveSession(SessionId id) throws Exception JavaDoc {
147         return null;
148     }
149
150     public Response processRemoveSubscription(RemoveSubscriptionInfo info) throws Exception JavaDoc {
151         return null;
152     }
153
154     public Response processRollbackTransaction(TransactionInfo info) throws Exception JavaDoc {
155         return null;
156     }
157
158     public Response processShutdown(ShutdownInfo info) throws Exception JavaDoc {
159         return null;
160     }
161
162     public Response processWireFormat(WireFormatInfo info) throws Exception JavaDoc {
163         return null;
164     }
165
166     public Response processMessageDispatch(MessageDispatch dispatch) throws Exception JavaDoc {
167         return null;
168     }
169
170     public Response processControlCommand(ControlCommand command) throws Exception JavaDoc {
171         return null;
172     }
173
174     public Response processConnectionControl(ConnectionControl control) throws Exception JavaDoc {
175         return null;
176     }
177
178     public Response processConnectionError(ConnectionError error) throws Exception JavaDoc {
179         return null;
180     }
181
182     public Response processConsumerControl(ConsumerControl control) throws Exception JavaDoc {
183         return null;
184     }
185
186 }
187
Popular Tags