blob: 33f56c91c7f1edae7358f3eb3ca7656c5c4f8894 [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed 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.sandesha2.msgprocessors;
import org.apache.sandesha2.Sandesha2Constants;
/**
* Used to get a suitable message processor. Given the message type.
*
* @author Chamikara Jayalath <chamikaramj@gmail.com>
*/
public class MsgProcessorFactory {
public static MsgProcessor getMessageProcessor(int msgType) {
switch (msgType) {
case (Sandesha2Constants.MessageTypes.CREATE_SEQ):
return new CreateSeqMsgProcessor();
case (Sandesha2Constants.MessageTypes.TERMINATE_SEQ):
return new TerminateSeqMsgProcessor();
case (Sandesha2Constants.MessageTypes.APPLICATION):
return new ApplicationMsgProcessor();
case (Sandesha2Constants.MessageTypes.CREATE_SEQ_RESPONSE):
return new CreateSeqResponseMsgProcessor();
case (Sandesha2Constants.MessageTypes.ACK):
return new AcknowledgementProcessor();
default:
return null;
}
}
}