00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef M_SEN_MESSAGE_H
00024 #define M_SEN_MESSAGE_H
00025
00026 #include <e32std.h>
00027
00028
00029 class CSenElement;
00030 class CSenXmlReader;
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 class MSenMessageContext;
00042 class MSenProperties;
00043
00044
00052 class MSenMessage
00053 {
00054 public:
00055
00059 enum TClass
00060 {
00061 EMessageBase = 0,
00062 EHttpGetMsg = 1,
00063 EHttpPostMsg = 2,
00064 EHttpPutMsg = 3,
00065 EHttpDeleteMsg = 4,
00066 ESoapEnvelope = 5,
00067 ESoapMessage = 6,
00068 ESoapEnvelope2 = 7,
00069 ESoapMessage2 = 8,
00070 ESoapMessageDom2 = 9,
00071 EAtomMessage = 10
00072 };
00076 enum TDirection
00077 {
00078 EOutbound = 0,
00079 EInbound = 1
00080 };
00081
00085 virtual TClass Type() = 0;
00089 virtual TDirection Direction() = 0;
00090
00091
00103 virtual TInt SetContext(MSenMessageContext* apNotOwnedContext) = 0;
00104
00110 virtual MSenMessageContext* Context() = 0;
00111
00129 virtual TInt SetProperties(MSenProperties* apOwnedProperties) = 0;
00130
00137 virtual MSenProperties* Properties() = 0;
00138
00139 virtual TBool IsSafeToCast(TClass aType) = 0;
00151 virtual TInt TxnId() = 0;
00152
00173 virtual MSenMessage* CloneL() = 0;
00174 };
00175
00176 #endif // M_SEN_MESSAGE_H
00177
00178
00179
00180