Class JDBCSynapseMessage
- java.lang.Object
-
- org.apache.synapse.message.store.impl.jdbc.message.JDBCSynapseMessage
-
- All Implemented Interfaces:
Serializable
public class JDBCSynapseMessage extends Object implements Serializable
This class serves as a container for the Synapse Message Context parameters/properties , and it will be saved as a JDBC message in the JDBC Database.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JDBCSynapseMessage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addProperty(String key, String value)
void
addPropertyObject(String key, byte[] value)
HashMap<String,String>
getProperties()
HashMap<String,byte[]>
getPropertyObjects()
int
getTracingState()
boolean
isFaultResponse()
boolean
isResponse()
void
setFaultResponse(boolean faultResponse)
void
setResponse(boolean response)
void
setTracingState(int tracingState)
-
-
-
Method Detail
-
isResponse
public boolean isResponse()
-
setResponse
public void setResponse(boolean response)
-
isFaultResponse
public boolean isFaultResponse()
-
setFaultResponse
public void setFaultResponse(boolean faultResponse)
-
getTracingState
public int getTracingState()
-
setTracingState
public void setTracingState(int tracingState)
-
addPropertyObject
public void addPropertyObject(String key, byte[] value)
-
-