Package org.apache.synapse.config.xml
Class MessageProcessorFactory
- java.lang.Object
-
- org.apache.synapse.config.xml.MessageProcessorFactory
-
public class MessageProcessorFactory extends Object
Create an instance of the given Message processor, and sets properties on it. <messageProcessor name="string" class="classname" messageStore = "string" > <parameter name="string">"string" <parameter> <parameter name="string">"string" <parameter> <parameter name="string">"string" <parameter> . . </messageProcessor>
-
-
Field Summary
Fields Modifier and Type Field Description static QName
CLASS_Q
static String
FORWARDING_PROCESSOR
static QName
MESSAGE_STORE_Q
static QName
NAME_Q
static QName
PARAMETER_Q
static QName
SEQUENCE_Q
static QName
TARGET_ENDPOINT_Q
-
Constructor Summary
Constructors Constructor Description MessageProcessorFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageProcessor
createMessageProcessor(org.apache.axiom.om.OMElement elem)
Creates a Message processor instance from given xml configuration element
-
-
-
Field Detail
-
FORWARDING_PROCESSOR
public static final String FORWARDING_PROCESSOR
- See Also:
- Constant Field Values
-
CLASS_Q
public static final QName CLASS_Q
-
TARGET_ENDPOINT_Q
public static final QName TARGET_ENDPOINT_Q
-
SEQUENCE_Q
public static final QName SEQUENCE_Q
-
NAME_Q
public static final QName NAME_Q
-
PARAMETER_Q
public static final QName PARAMETER_Q
-
MESSAGE_STORE_Q
public static final QName MESSAGE_STORE_Q
-
-
Method Detail
-
createMessageProcessor
public static MessageProcessor createMessageProcessor(org.apache.axiom.om.OMElement elem)
Creates a Message processor instance from given xml configuration element- Parameters:
elem
- OMElement of that contain the Message processor configuration- Returns:
- created message processor instance
-
-